Update Usage authored by Felix Kopp's avatar Felix Kopp
...@@ -4,7 +4,7 @@ Using the seven segment display driver is rather simple: You can display hex num ...@@ -4,7 +4,7 @@ Using the seven segment display driver is rather simple: You can display hex num
root@raspberrypi:~# echo '3' > /dev/sevenseg root@raspberrypi:~# echo '3' > /dev/sevenseg
``` ```
This command makes the display show the number `3`, as you most probably figured out on your own. You can also leave the quatation marks `'` out, but we consider this to be bad style. If you want to ensure everything is working fine, you can execute the test script included in the project's root directory: This command makes the display show the number `3`, as you most probably figured out on your own. You can also leave the quatation marks `'` out, but we consider this bad style. If you want to ensure everything is working fine, you can execute the test script included in the project's root directory:
```bash ```bash
root@raspberrypi:~/SevenSegController# chmod +x test.sh # Has to be made executeable first root@raspberrypi:~/SevenSegController# chmod +x test.sh # Has to be made executeable first
... ...
......