-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.json
More file actions
64 lines (64 loc) · 2.38 KB
/
Copy pathgames.json
File metadata and controls
64 lines (64 loc) · 2.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"games": [
{
"title": "All-on simple",
"slug": "all-on-simple",
"author": "Daniel Simu",
"instructions": "Press the button when all leds are lit. If you win, you can press again to restart the game.",
"path": {
"ino": "all-on_simple/all-on_simple.ino",
"hex": "all-on_simple/all-on_simple.hex"
}
},
{
"title": "Lightspeed",
"slug": "lightspeed",
"author": "Daniel Simu",
"instructions": "Press the button when the middle light is lit. The game will speed up.",
"path": {
"ino": "lightspeed/lightspeed.ino",
"hex": "lightspeed/lightspeed.hex"
}
},
{
"title": "Blink",
"slug": "blink",
"author": "Imani Dap",
"instructions": "Enjoy the blinking led! This is a classical test to see if a piece of hardware is working correctly.",
"path": {
"ino": "blink/blink.ino",
"hex": "blink/blink.hex"
}
},
{
"title": "Binary Sum",
"slug": "binary-sum",
"author": "Daniel Simu",
"instructions": "Game design by Maarten. Two binary numbers are shown, add them to each other. Three possible anwers are shown, press the button when the correct one is displayed.",
"path": {
"ino": "binary_sum/binary_sum.ino",
"hex": "binary_sum/binary_sum.hex"
}
},
{
"title": "Race",
"slug": "race",
"author": "Daniel Simu",
"instructions": "Press about 60 times as fast as you can. Score is displayed in binary, best score is 7 worst is 0.",
"path": {
"ino": "race/race.ino",
"hex": "race/race.hex"
}
},
{
"title": "Roulette",
"slug": "roulette",
"author": "Daniel Simu",
"instructions": "Press to select the next led, hold down to confirm. A ball will start rolling, will it land on the led you selected?",
"path": {
"ino": "roulette_using_lib2/roulette_using_lib2.ino",
"hex": "roulette_using_lib2/roulette_using_lib2.hex"
}
}
]
}