raspi-oled/README.md

21 lines
539 B
Markdown
Raw Normal View History

2022-05-06 08:48:38 +00:00
# raspi demo for OLED ssd1351 display
2021-07-24 19:46:52 +00:00
## Quick start
2022-05-06 08:48:38 +00:00
```bash
2021-07-24 19:46:52 +00:00
> nix-shell
> rustup target add arm-unknown-linux-musleabihf
> cargo build --release --target arm-unknown-linux-musleabihf
2022-05-06 08:48:38 +00:00
> scp target/arm-unknown-linux-musleabihf/release/{display_all,display_off,refresh_json,take_measurement} 'pi@raspberrypi:~'
> # on the Pi:
> patchelf --set-interpreter /lib/ld-linux-armhf.so.3 display_all
> ./display_off on
> ./display_all sensors.db events.json temps
```
2021-07-24 19:46:52 +00:00
## Example
2022-05-06 08:48:38 +00:00
![picture](./images/temps.png)
2021-07-24 19:46:52 +00:00
2022-05-06 08:48:38 +00:00
![primitive](./images/events.png)