raspi-oled/README.md

26 lines
795 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
2022-05-06 09:03:11 +00:00
https://www.waveshare.com/wiki/1.5inch_RGB_OLED_Module
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
> scp target/arm-unknown-linux-musleabihf/release/{display_all,display_off,refresh_json,take_measurement,status_check_example} 'pi@raspberrypi:~'
2022-05-06 08:51:30 +00:00
> # on the Pi, create sensors.db and events.json
> ./status_check_example > /run/user/1000/status.json
2022-05-06 08:48:38 +00:00
> 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 09:03:11 +00:00
![temperature graph](./images/temps.png)
![events](./images/events.png)
2021-07-24 19:46:52 +00:00
2022-09-24 18:54:48 +00:00
(the blue text seen in the second image is bright enough on the real OLED display)