Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcopy/microsquad
A Microbit orchestration library based on Bitio
https://github.com/bcopy/microsquad
Last synced: 7 days ago
JSON representation
A Microbit orchestration library based on Bitio
- Host: GitHub
- URL: https://github.com/bcopy/microsquad
- Owner: bcopy
- License: gpl-3.0
- Created: 2021-01-10T15:02:49.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T19:12:53.000Z (over 1 year ago)
- Last Synced: 2024-10-10T22:26:56.833Z (28 days ago)
- Language: Python
- Size: 4.77 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MicroSquad (a.k.a uSquad)
A Microbit orchestration library based on [Bitio](https://github.com/AdventuresInMinecraft/bitio) : Using a single Microbit as a gateway, control remote Microbits via the radio.
Messages are exchanged using the Influx line protocol (with a small custom parser implemented in micropython)![Microbit](https://microbit-micropython.readthedocs.io/en/v1.0.1/_images/happy.png)
**Basic functionalities include :**
* Broadcast, group and unicast messaging
* Assigning session identifiers (will be resent with each message from the client)
* Remotely controlling displays
* Requesting remote sensor readings (buttons, gyroscope, compass, temperature, votes etc...)# Dependencies
For the **uSquad** Gateway :
* Python3
* [https://github.com/AdventuresInMinecraft/Bitio](https://github.com/AdventuresInMinecraft/bitio)
* A Microbit running the bitio firmware
* [Line Protocol parser for Python](https://pypi.org/project/influx-line-protocol/)For the **uSquad** clients :
* The provided **uSquad** firmware to upload on each Microbit.# How to use it
# How to develop