Skip to content

Commit 5202b7b

Browse files
committed
update readme
1 parent 004bf24 commit 5202b7b

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,30 @@ esptool.py --chip esp32s3 --port /dev/ttyACM0 --baud 921600 \
5353
5454
### カメラ起動
5555

56+
`/dev/video2` は接続されたカメラデバイスに置き換えてください。
57+
58+
```bash
59+
ffplay -f v4l2 -input_format mjpeg -video_size 320x240 -framerate 30 /dev/video2
60+
```
61+
62+
### 表情変更
63+
64+
`/dev/video2` は接続されたカメラデバイスに置き換えてください。
65+
66+
笑顔 😊
67+
5668
```bash
57-
ffplay -f v4l2 -input_format mjpeg -video_size 320x240 -framerate 30
69+
v4l2-ctl -d /dev/video2 --set-ctrl brightness=250
5870
```
5971

72+
真顔
73+
74+
```bash
75+
v4l2-ctl -d /dev/video2 --set-ctrl brightness=128
76+
```
77+
78+
ガッカリ 😑
79+
80+
```bash
81+
v4l2-ctl -d /dev/video2 --set-ctrl brightness=0
82+
```

0 commit comments

Comments
 (0)