vault backup: 2024-10-08 21:30:42

This commit is contained in:
zleyyij 2024-10-08 21:30:42 -06:00
parent 59fefb4ae7
commit df16aedfcd

View File

@ -20,10 +20,13 @@ const int segments[10][7] = {{1, 1, 1, 1, 1, 1, 0}, ...};
```c ```c
const int segments[10][7] = { const int segments[10][7] = {
{1, 1, 1, 1, 1, 1, 0}, // 0 {1, 1, 1, 1, 1, 1, 0}, // 0
{0, 1, 1, 0, 0, 0, 0}, // 1 {0, 1, 1, 0, 0, 0, 0}, // 1
{1, 1, 0, 1, 1, 0, 1}, // 2 {1, 1, 0, 1, 1, 0, 1}, // 2
{1, } {1, 1, 1, 1, 0, 0, 1}, // 3
{0, 1, 1, 0, 0, 1, 0}, // 4
{1, 0, 1, 1, 0, 1, 1}, // 5
}; };
``` ```