All Projects â†’ webduinoio â†’ Webduino Blockly

webduinoio / Webduino Blockly

Licence: mit
📦 The Visual Programming Editor for Webduino

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Webduino Blockly

Blocklyduino
BlocklyDuino is a web-based visual programming editor for arduino.
Stars: ✭ 526 (+320.8%)
Mutual labels:  arduino, blockly
Openfpgaduino
All open source file and project for OpenFPGAduino project
Stars: ✭ 137 (+9.6%)
Mutual labels:  arduino, blockly
Blockly At Rduino
[email protected] : Blockly remix for Arduino. Totally new version, enhanced one !
Stars: ✭ 96 (-23.2%)
Mutual labels:  arduino, blockly
Ardublockly
Visual programming for Arduino. Based on blockly, implements Arduino code generation and facilitates program uploading.
Stars: ✭ 363 (+190.4%)
Mutual labels:  arduino, blockly
Plus
Otto DIY+ ("Otto DIY with steroids" + Bluetooth + APP + switch + sensors + strength +...
Stars: ✭ 100 (-20%)
Mutual labels:  arduino, blockly
Goldfish
A small, thin, USB-C, Pro Micro compatible microcontroller
Stars: ✭ 120 (-4%)
Mutual labels:  arduino
Bluecopter
Arduino Quadcopter firmware
Stars: ✭ 122 (-2.4%)
Mutual labels:  arduino
Mpu6050 tockn
Arduino library for easy communication with MPU6050
Stars: ✭ 119 (-4.8%)
Mutual labels:  arduino
Deepway
This project is an aid to the blind. Till date there has been no technological advancement in the way the blind navigate. So I have used deep learning particularly convolutional neural networks so that they can navigate through the streets.
Stars: ✭ 118 (-5.6%)
Mutual labels:  arduino
Esp wifimanager
This is an ESP32 / ESP8266 WiFi Connection Manager with fallback web configuration portal. Use this library for configuring ESP32, ESP8266 modules' WiFi, etc. Credentials at runtime. You can also specify static DNS servers, personalized HostName, fixed or random AP WiFi channel. With examples supporting ArduinoJson 6.0.0+ as well as 5.13.5- .
Stars: ✭ 125 (+0%)
Mutual labels:  arduino
Attiny10ide
A Streamlined IDE for Coding and Programming the ATtiny10 and other ATTiny Devices
Stars: ✭ 124 (-0.8%)
Mutual labels:  arduino
Water Monitoring System
Water Monitoring System is an IOT based Liquid Level Monitoring system that has mechanisms to keep the user alerted in case of liquid overflow or when tank depletes.
Stars: ✭ 122 (-2.4%)
Mutual labels:  arduino
Esp8266
Collection of projects for the WeMos Mini D1
Stars: ✭ 120 (-4%)
Mutual labels:  arduino
Arduino Cmake Ng
CMake-Based framework for Arduino platforms
Stars: ✭ 123 (-1.6%)
Mutual labels:  arduino
Bluetooth Ble On Arduino Ide
Scketches which are used in my YouTube video
Stars: ✭ 118 (-5.6%)
Mutual labels:  arduino
Ecu Tool
Tool to communicate with vehicle ECUs based on Arduino
Stars: ✭ 123 (-1.6%)
Mutual labels:  arduino
Tts
Text-to-Speech for Arduino
Stars: ✭ 118 (-5.6%)
Mutual labels:  arduino
Lgt8fx
Board Package for Logic Green LGT8F328P LGT8F328D and LGT8F88D
Stars: ✭ 122 (-2.4%)
Mutual labels:  arduino
Openct
Open Source Computed Tomography (CT) Scanner
Stars: ✭ 123 (-1.6%)
Mutual labels:  arduino
Netcoreblockly
.NET Core API to Blockly - generate from WebAPI, Swagger, OData, GraphQL =>
Stars: ✭ 121 (-3.2%)
Mutual labels:  blockly

Webduino-Blockly

The Visual Programming Editor for Webduino.

Google's Blockly is a web-based, visual programming editor. Users can drag blocks together to build programs.

Prerequisite

Installation

git clone https://github.com/webduinoio/webduino-blockly.git
cd webduino-blockly
npm install
bower install

Run

npm run start

Navigate to http://127.0.0.1:8080 and start hacking!

Generated-Code Usage

You can use the code which generated by Webduino Blockly in your own application

Our APIs support both browser and Node.js, here's how you use it:

In Browser

<!DOCTYPE html>
<html>
<head>
  <title>Webduino</title>
</head>
<body>
  <script src="//webduino.io/components/webduino-js/dist/webduino-all.min.js"></script>
  <script src="webduino-blockly.js"></script>
  <script>
    // Paste the code generated by Blockly here.
  </script>
</body>
</html>

In Node.js

Require the module first by:

require('webduino-blockly');

// ... The code generated by Webduino Blockly.

License

Webduino-Blockly is released under the MIT License.

Please read LICENSE for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].