add(i2c): i2c python

This commit is contained in:
GengY
2024-03-05 16:10:20 +08:00
parent 24275e1580
commit 8b8b7cd492
6 changed files with 144 additions and 3 deletions

23
i2c.py/readme.md Normal file
View File

@@ -0,0 +1,23 @@
## i2c python3
1. 必须安装
```shell
apt install -y fonts-wqy-microhei fonts-wqy-zenhei
apt install -y i2c-tools libgpiod-dev
apt install -y python3-pip python3-pil python3-libgpiod
pip3 install adafruit-circuitpython-ssd13060 --break-system-packages
```
2. 调试
```shell
python3 ./status.py
```
3. rc-local
```shell
vim /etc/rc.local
# 在 exit 0 之前添加
python3 /home/yong/i2c.py/status.py &
```