Software and hardware for the DigiCron smartwatch.
Want to try out the DigiCron's firmware in your browser? Just visit the DigiCron Simulator!
You must clone this repo like this:
git clone --recurse-submodules https://github.com/devicefuture/digicronThis is because this repo contains Git submodules which are used as libraries for the firmware and simulator.
Before building the firmware for the first time, you will need to install the dev dependencies:
./build.sh --install-devTo build the firmware and upload it to the target device over USB, run:
./build.sh --uploadYou can also check for compilation errors without uploading by removing the --upload flag.
To build the firmware and the simulator, run:
./build.sh --simThen to run the simulator locally, start a web server in this directory. Run the following to start the web server at localhost:8000:
python3 -m http.server