Skip to content

Commit 8436989

Browse files
committed
control.py: Rename to ledmatrix_control.py
Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent ffb405a commit 8436989

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

c1minimal/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ When booting up this LED is lit in green color.
88
Its color and brightness can be controlled via the commands:
99

1010
```sh
11-
> ./control.py --brightness 255
12-
> ./control.py --get-brightness
11+
> ./ledmatrix_control.py --brightness 255
12+
> ./ledmatrix_control.py --get-brightness
1313
Current brightness: 255
1414

15-
> ./control.py --set-color yellow
16-
> ./control.py --get-color
15+
> ./ledmatrix_control.py --set-color yellow
16+
> ./ledmatrix_control.py --get-color
1717
Current color: RGB:(255, 255, 0)
1818
```

ledmatrix/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,10 +155,10 @@ Instead try out the [Python script](../python.md):
155155

156156
```sh
157157
# Snake
158-
./control.py --snake
158+
./ledmatrix_control.py --snake
159159

160160
# Pong (Seems broken at the moment)
161-
./control.py --pong-embedded
161+
./ledmatrix_control.py --pong-embedded
162162
```
163163

164164
###### Game of Life
File renamed without changes.

python.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Requirements: Python, pyserial, [PySimpleGUI](https://www.pysimplegui.org) and optionally [pillow](https://pillow.readthedocs.io/en/stable/index.html)
44
For convenience install dependencies via: `python3 -m pip install -r requirements.txt`.
5-
Use `control.py`. Either the commandline, see `control.py --help` or the graphical version: `control.py --gui`
5+
Use `ledmatrix_control.py`. Either the commandline, see `ledmatrix_control.py --help` or the graphical version: `ledmatrix_control.py --gui`
66

77
```
88
options:
@@ -44,15 +44,15 @@ Examples
4444

4545
```sh
4646
# Launch graphical application
47-
./control.py --gui
47+
./ledmatrix_control.py --gui
4848

4949
# Show current time and keep updating it
50-
./control.py --clock
50+
./ledmatrix_control.py --clock
5151

5252
# Draw PNG or GIF
53-
./control.py --image stripe.gif
54-
./control.py --image stripe.png
53+
./ledmatrix_control.py --image stripe.gif
54+
./ledmatrix_control.py --image stripe.png
5555

5656
# Change brightness (0-255)
57-
./control.py --brightness 50
57+
./ledmatrix_control.py --brightness 50
5858
```

0 commit comments

Comments
 (0)