Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bipes/bipes
BIPES: Block based Integrated Platform for Embedded Systems allows text and block based programming for several types of embedded systems and Internet of Things modules using MicroPython, CircuitPython, Python or Snek. You can connect, program, debug and monitor several types of boards using network, USB or Bluetooth. No software install needed!
https://github.com/bipes/bipes
arduino block blockly embedded embedded-systems esp32 esp8266 iot micropython programming web
Last synced: 26 days ago
JSON representation
BIPES: Block based Integrated Platform for Embedded Systems allows text and block based programming for several types of embedded systems and Internet of Things modules using MicroPython, CircuitPython, Python or Snek. You can connect, program, debug and monitor several types of boards using network, USB or Bluetooth. No software install needed!
- Host: GitHub
- URL: https://github.com/bipes/bipes
- Owner: BIPES
- License: gpl-3.0
- Created: 2020-04-01T20:29:48.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-14T21:26:44.000Z (7 months ago)
- Last Synced: 2024-05-31T18:46:01.080Z (5 months ago)
- Topics: arduino, block, blockly, embedded, embedded-systems, esp32, esp8266, iot, micropython, programming, web
- Language: JavaScript
- Homepage: https://bipes.net.br/ide
- Size: 17.2 MB
- Stars: 136
- Watchers: 13
- Forks: 64
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BIPES: Block based Integrated Platform for Embedded Systems.
![BIPES](bipes.png)
BIPES allows anyone to quickly and reliably design, program, build, deploy and test embedded systems and IOT devices and applications. It is fully based on a web environment, so absolutely no software install is needed on the client / developer machine.
More information at the project website: [bipes.net.br](https://bipes.net.br/).
## Live version
Try it now at: [bipes.net.br/ide](https://bipes.net.br/ide).## Usage
To init submodules, like [BIPES/freeboard](https://github.com/BIPES/freeboard) and [BIPES/Databoard](https://github.com/BIPES/Databoard), run:
```
make submodules
```To build/update the offline version with latest, run:
```
make offline
```
This version does not require a server since it has all core files concatanated at `ui/index_offline.html`, just open this file in a browser. It will also create a `bipes_offline.zip`. Howver, keep in mind that any tool that requires a server, like MQTT, won't work due to [CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS).That's it, enjoy BIPES 😄.
## Documentation
The documentation is online at [bipes.net.br/docs](https://bipes.net.br/docs).
To build the documentation out of a fresh clone, do:
```
make doc
```
after having installed the theme, [sphinx](https://www.sphinx-doc.org/en/master/) and [sphinx-js](https://pypi.org/project/sphinx-js/).
```
pip install sphinx sphinx-js furo
```
## More information
Some functions of `ui/index.html` were based on Blopy project (https://github.com/mnoriaki/Blopy), by Noriaki Mitsunaga
(https://github.com/mnoriaki).
OpenCV blocks were automatically generated using berak's OpenCV to Blockly generator (https://github.com/berak/blockly-cv2/tree/master/gen).
We also use `xterm.js` (https://github.com/xtermjs/xterm.js/) and `codemirror.js` (https://github.com/codemirror/codemirror).