wip commit

This commit is contained in:
Torrie Fischer
2023-12-26 11:29:49 +01:00
parent 6582bae0f2
commit ebbf433cdf
40 changed files with 904 additions and 170 deletions

View File

@ -1,6 +1,6 @@
{
"version": 1,
"rotation": 3,
"rotation": 2,
"strides": [
{"x": 0, "y": 0, "pixels": 17},
{"x": 0, "y": 1, "pixels": 17},

View File

@ -2,7 +2,6 @@
"version": 1,
"tasks": [
"Renderer",
"U8Display",
"WiFi",
"MQTT",
"ArduinoOTA",
@ -10,7 +9,7 @@
"Serial"
],
"scenes": {
"Idle": ["Solid", "MPU5060", "IdleColors", "CircadianRhythm"],
"Idle": ["Solid", "IdleColors", "CircadianRhythm"],
"Flashlight": ["Flashlight"]
},
"surfaceMap": "default",

View File

@ -5,20 +5,20 @@
"Renderer",
"Serial"
],
"scenes": {
"Rain": ["Rain", "Rainbow"],
"Test": ["Test"],
"Idle": ["Solid", "Pulse", "Rainbow", "CircadianRhythm"],
"Acid": ["Chimes", "Pulse", "IdleColors", "Rainbow"],
"Flashlight": ["Flashlight"]
},
"surfaceMap": "djstrip",
"defaults": {
"mqtt.ip": "10.0.0.2",
"power.volts": 0,
"power.milliamps": 0,
"power.useBPM": false,
"bpm.idle": 45
"bpm.idle": 45,
"scenes": {
"Rain": ["Rain", "Rainbow"],
"Test": ["Test"],
"Idle": ["Solid", "Pulse", "Rainbow", "CircadianRhythm"],
"Acid": ["Chimes", "Pulse", "IdleColors", "Rainbow"],
"Flashlight": ["Flashlight"]
}
}
}

View File

@ -7,11 +7,12 @@
"MQTT",
"ArduinoOTA",
"UpdateStatusAnimation",
"Serial"
"Serial",
"U8Display"
],
"scenes": {
"Idle": ["Solid", "MPU5060", "Pulse", "IdleColors", "CircadianRhythm"],
"Acid": ["Chimes", "Pulse", "MPU5060", "IdleColors", "Rainbow"],
"Idle": ["Solid", "Rainbow", "CircadianRhythm"],
"Acid": ["Chimes", "Rainbow"],
"Flashlight": ["Flashlight"]
},
"surfaceMap": "default",

View File

@ -8,24 +8,40 @@
"UpdateStatusAnimation",
"Serial",
"Weather",
"CircadianRhythm"
"Test",
"CircadianRhythm",
"IdleTimer"
],
"scenes": {
"Clear": ["Solid", "Rainbow"],
"Rain": ["Rain"],
"Drizzle": ["Rain"],
"Mist": ["Rain"],
"Snow": ["Solid"],
"UnknownWeather": ["Solid", "IdleColors"],
"Test": ["Test"],
"Idle": ["Solid", "Rainbow"],
"Acid": ["Chimes", "IdleColors", "Rainbow"],
"Flashlight": ["Flashlight"]
},
"surfaceMap": "ponder",
"defaults": {
"mqtt.ip": "10.0.0.2",
"power.volts": 0,
"power.milliamps": 0
"colors.sequences": {
"Rainbow": [[255, 0, 0], [255, 127, 0], [0, 255, 0], [0, 0, 255], [128, 0, 128]],
"Idle": [[0, 123, 167], [80, 200, 120], [207, 113, 175], [128, 0, 128], [255, 255, 255], [0, 255, 255]],
"Wet": [[3, 177, 252], [3, 78, 252], [126, 141, 242]],
"Snowy": [[215, 219, 245], [255, 255, 255], [192, 250, 244]],
"Sunny": [[213, 237, 95], [237, 180, 95], [245, 178, 10]]
},
"colors.scenes": {
"Clear": "Sunny",
"Idle": "Rainbow",
"Rain": "Wet",
"Drizzle": "Wet",
"Mist": "Wet",
"Snow": "Snowy"
},
"colors.secondsPerColor": 9,
"scenes": {
"Clear": ["Solid"],
"Cloudy": ["Cloudy", "Solid"],
"Rain": ["Rain", "Solid"],
"Drizzle": ["Rain", "Cloudy", "Solid"],
"Mist": ["Cloudy", "Solid"],
"Snow": ["Solid"],
"UnknownWeather": ["Thinking"],
"Start": ["Thinking"],
"Idle": ["Solid"],
"Test": ["Test"]
}
}
}

View File

@ -0,0 +1,7 @@
{
"version": 1,
"tasks": [
"Renderer",
"Serial"
]
}