https://github.com/bcopy/microsquad
A Microbit orchestration library based on Bitio
https://github.com/bcopy/microsquad
Last synced: about 1 year 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 (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-02-08T19:12:53.000Z (over 3 years ago)
- Last Synced: 2025-02-12T20:43:24.671Z (over 1 year 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)

**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