-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathlite-brite.json
81 lines (81 loc) · 1.98 KB
/
lite-brite.json
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"lbDemo": {
"class": "Machine",
"type": "LED",
"name": "Lite-Brite Demo",
"version": 2.00,
"autoStart": true,
"bindings": {
"reset": "resetLB",
"clear": "clearLB",
"print": "printLB"
},
"overrides": ["autoStart"]
},
"lbClock": {
"class": "Time",
"cyclesPerSecond": 1,
"cyclesMinimum": 1,
"cyclesMaximum": 120,
"bindings": {
"run": "runLB",
"speed": "speedLB",
"step": "stepLB",
"throttle": "throttleLB"
},
"overrides": ["cyclesPerSecond","cyclesMinimum","cyclesMaximum"]
},
"lbDisplay": {
"class": "LED",
"type": 1,
"cols": 45,
"rows": 39,
"backgroundColor": "black",
"hexagonal": true,
"highlight": false,
"bindings": {
"container": "displayLB"
},
"overrides": ["color","backgroundColor"]
},
"lbInput": {
"class": "Input",
"drag": true
},
"lbCtrl": {
"class": "LEDCtrl",
"rule": "A4",
"toggleColor": true,
"bindings": {
"colorPalette": "colorPaletteLB",
"colorSelection": "colorSelectionLB",
"colorSwatch1": "colorSwatchLB1",
"colorSwatch2": "colorSwatchLB2",
"colorSwatch3": "colorSwatchLB3",
"colorSwatch4": "colorSwatchLB4",
"colorSwatch5": "colorSwatchLB5",
"colorSwatch6": "colorSwatchLB6",
"colorSwatch7": "colorSwatchLB7",
"colorSwatch8": "colorSwatchLB8",
"countInit": "countInit",
"countOn": "countOn",
"countOff": "countOff",
"countCycle": "countCycle",
"backgroundImage": "backgroundImage",
"saveToURL": "saveLB"
},
"colors": {
"Original": {
"Blue": "#3067c1",
"Green": "#2f9a27",
"Violet": "#9f3c92",
"Red": "#ff0000",
"Orange": "#fa7d14",
"Pink": "#ff1493",
"Yellow": "#fadc4e",
"White": "#fffff9"
}
},
"overrides": ["blue","green","violet","red","orange","pink","yellow","white","wrap","backgroundImage","pattern"]
}
}