26 lines
490 B
Markdown
26 lines
490 B
Markdown
|
# Pet Activity Recorder
|
||
|
|
||
|
This project contains the code for the microcontroller for recording gyro data and sending it to a connected device via Bluetooth.
|
||
|
|
||
|
## Usage
|
||
|
|
||
|
Only connect one microcontroller at the same time!
|
||
|
|
||
|
- Flash the code to the connected microcontroller.
|
||
|
|
||
|
```bash
|
||
|
make flash
|
||
|
```
|
||
|
|
||
|
- Flash the code in production mode (deactivated serial).
|
||
|
|
||
|
```bash
|
||
|
make production
|
||
|
```
|
||
|
|
||
|
- Flash the code in testing mode (enhanced optimisations that need more testing)
|
||
|
|
||
|
```bash
|
||
|
make testing
|
||
|
```
|