https://github.com/mryslab/telemetrix4microbit
Telemetrix Servers for the Micro:bit V1 and V2
https://github.com/mryslab/telemetrix4microbit
Last synced: 28 days ago
JSON representation
Telemetrix Servers for the Micro:bit V1 and V2
- Host: GitHub
- URL: https://github.com/mryslab/telemetrix4microbit
- Owner: MrYsLab
- License: agpl-3.0
- Created: 2022-06-12T22:43:31.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-13T00:06:45.000Z (about 4 years ago)
- Last Synced: 2024-10-18T20:48:54.047Z (over 1 year ago)
- Language: C++
- Size: 1020 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Telemetrix4Microbit
Telemetrix Servers for the Micro:bit V1 and V2
This project takes advantage of [the docker tool chain](https://github.com/carlosperate/docker-microbit-toolchain)
developed by Carlos Pereira Atencio.
Before attempting to recompile the source code, you must:
1. [Install docker](https://docs.docker.com/desktop/linux/install/) on your system.
2. If using Linux, make docker available to your login:
```asm
sudo usermod -aG docker $USER
```
3. Install the docker tool chain:
```asm
docker pull ghcr.io/carlosperate/microbit-toolchain:latest
```
4. If using Linux, change the permissions of the build scripts:
```asm
cd build_scripts
chmod ugo+x *
```
5. Compile for the desired micro:bit version.
To build for microbit v1, go to the build scripts directory and type:
```asm
./dal
```
To build for microbit v2, go to build scripts directory and type:
```asm
./codal
```
THIS IS A WORK IN PROGRESS