blob: c554e31921fcc40102a743898ed71c2d63c9d646 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# iot-contact
iot-contact is an IoT device to check if doors and windows are closed or open.
Furthermore roller shutter motors should be controlled.
## Usage
The content of this repository can be build with CMake and Ninja.
```
cmake -Bbuild -GNinja
ninja -C build
```
The resulting firmware can be flashed via a ST-LINK debugger / programmer.
```
st-flash --connect-under-reset write build/fw/zephyr/zephyr.bin 0x8000000
```
UART shell output can be retrieved with `picocom`.
```
picocom -b 115200 /dev/ttyACM0
```
Finally the firmware can be erased from the device with the ST-LINK.
```
st-flash --connect-under-reset erase
```
[1]: https://docs.kicad.org/
|