-
Notifications
You must be signed in to change notification settings - Fork 0
/
Abfall.yml
281 lines (259 loc) · 10.8 KB
/
Abfall.yml
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
esphome:
name: abfall
on_boot:
then:
- light.turn_on:
id: abfallneo
effect: color wipe
brightness: 100%
esp8266:
board: d1_mini
# Enable logging
logger:
# Enable Home Assistant API
#
# Achtung: Für Offlinekalender muss der API-Reboot auf 0s gesetzt werden, da die Tonne sonst alle 15 Minuten neu startet.
#
api:
password: ""
# reboot_timeout: 0s # only enable this when creating an offline Wastebin
ota:
password: ""
wifi:
ssid: !secret GKssid
# for captive-portal remove password
password: !secret GKpassword
ap:
ssid: "Luna Fallback Hotspot"
password: "xyz12345"
# Enable fallback hotspot (captive portal) in case wifi connection fails
captive_portal:
# keep_user_credentials: true # option nicht aktiv.
globals:
- id: lampe
type: bool
initial_value: 'false'
- id: button
type: bool
initial_value: 'false'
time:
- platform: sntp
id: zeit
on_time:
- seconds: 45
minutes: 57
hours: 11
then:
- globals.set:
id: lampe
value: 'false'
- globals.set:
id: button
value: 'false'
- light.turn_on:
id: abfallneo
brightness: 100%
red: 1
blue: 1
green: 1
- delay: 1s
- light.turn_off:
id: abfallneo
- seconds: 0
minutes: /5
hours: 6-22
then:
- if:
condition:
light.is_off: abfallneo
then:
- light.turn_on:
id: abfallneo
effect: none
brightness: 100%
- delay: 2s
- light.turn_off:
id: abfallneo
- seconds: 30
minutes: /5
then:
- lambda: |-
//
// Achtung: Für Offlinekalender muss der API-Reboot auf 0s gesetzt werden, da die Tonne sonst alle 15 Minuten neu startet.
//
// Hier werden die Daten für den Offlinekalender hinterlegt.
// Es gibt nur 4 Abfuhrtypen:
// A = Altpapier = Blau, Sensorname: abfallnxta
// B = Biotonne = Grün, Sensorname: abfallnxtb
// G = Gelbe Tonne = Gelb, Sensorname: abfallnxtg
// R = Restmüll = Rot, Sensorname: abfallnxtr
// MaxAbfDatum sind die Zahl der Abfuhrtermine plus 8 für 4 führende und 4 endende Termine.
// intAbfDatum enthält die Abfuhrtermine mit 4 mal 0 führend und 4 mal 99999999 endend. Achtung: Immer den Tag vor dem Abfuhrtermin, damit das abziehen von "heute" klappt.
// chrAbfType enthält die Abfuhrtypen zu den Terminen, mit allen 4 Typen einmal führend und einmal endend.
// Daten Fuldabrück 2023
//int MaxAbfDatum = 78 + 8; // + 8 für Header und Trailer
//int intAbfDatum[MaxAbfDatum] = {0, 0, 0, 0, 20230301, 20230302, 20230307, 20230309, 20230315, 20230316, 20230323, 20230329, 20230330, 20230403, 20230405, 20230412, 20230414, 20230420, 20230426, 20230427, 20230503, 20230505, 20230510, 20230511, 20230519, 20230524, 20230525, 20230531, 20230602, 20230608, 20230609, 20230615, 20230621, 20230622, 20230627, 20230629, 20230705, 20230706, 20230713, 20230719, 20230720, 20230725, 20230727, 20230802, 20230803, 20230810, 20230816, 20230817, 20230822, 20230824, 20230830, 20230831, 20230907, 20230913, 20230914, 20230919, 20230921, 20230927, 20230928, 20231006, 20231011, 20231012, 20231017, 20231019, 20231025, 20231026, 20231102, 20231108, 20231109, 20231114, 20231116, 20231122, 20231123, 20231130, 20231206, 20231207, 20231212, 20231214, 20231220, 20231221, 20231229, 99999999, 99999999, 99999999, 99999999};
//char chrAbfType[] = "ABGRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRGBARGBRABGR"; //Vorne und hinten ABGR anhängen!!
// Daten Felsberg 2023
int MaxAbfDatum = 59 + 8; // + 8 für Header und Trailer
int intAbfDatum[MaxAbfDatum] = {0, 0, 0, 0, 20230227, 20230302, 20230312, 20230314, 20230316, 20230320, 20230330, 20230410, 20230411, 20230413, 20230414, 20230427, 20230501, 20230507, 20230509, 20230511, 20230522, 20230525, 20230604, 20230606, 20230608, 20230612, 20230622, 20230702, 20230703, 20230704, 20230706, 20230720, 20230724, 20230730, 20230801, 20230803, 20230814, 20230817, 20230827, 20230829, 20230831, 20230904, 20230914, 20230922, 20230924, 20230925, 20230926, 20231012, 20231016, 20231022, 20231024, 20231026, 20231106, 20231109, 20231119, 20231121, 20231123, 20231127, 20231207, 20231217, 20231218, 20231219, 20231221, 99999999, 99999999, 99999999, 99999999};
char chrAbfType[] = "ABGRRBAGBRBRGBABRAGBRBAGBRBARGBBRAGBRBAGBRBBARGBRAGBRBAGBRBARGBABGR"; //Vorne und hinten ABGR anhängen!!
int heute;
int lz;
int lza = 0;
int lzb = 0;
int lzg = 0;
int lzr = 0;
static int colR;
static int colG;
static int colB;
ESP_LOGD("HUL1", "Tick mit Lampe %d und Button %d", id(lampe), id(button));
heute = id(zeit).now().year * 10000 + id(zeit).now().month * 100 + id(zeit).now().day_of_month;
ESP_LOGD("HUL1", "Zeit %d", heute);
ESP_LOGD("HUL1", "Sensor %f", (id(abfallnxta).state * 24) + (24 - id(zeit).now().hour));
// Zum testen der Offlinefunktion reicht es die Sensoren aus Homeassistant umzubenennen, dann greift das System auf die Offlinedaten, da die Sensoren dann nan sind.
if ((id(statussensor).state) and !isnan(id(abfallnxta).state)) {
ESP_LOGD("HUL2", "Online");
lza = (id(abfallnxta).state * 24) + (24 - id(zeit).now().hour);
lzb = (id(abfallnxtb).state * 24) + (24 - id(zeit).now().hour);
lzg = (id(abfallnxtg).state * 24) + (24 - id(zeit).now().hour);
lzr = (id(abfallnxtr).state * 24) + (24 - id(zeit).now().hour);
} else {
ESP_LOGD("HUL2", "Offline oder nan");
for (int i = 0; i<MaxAbfDatum; i++) {
if (intAbfDatum[i] >= heute ){
switch (chrAbfType[i]) {
// +1, da wir den einen Tag den wir in Excel abgezogen haben ja wieder draufrechnen müssen.
case 'A':
if (lza == 0) lza = ((intAbfDatum[i] - heute + 1) * 24) + (24 - id(zeit).now().hour);
break;
case 'B':
if (lzb == 0) lzb = ((intAbfDatum[i] - heute + 1) * 24) + (24 - id(zeit).now().hour);
break;
case 'G':
if (lzg == 0) lzg = ((intAbfDatum[i] - heute + 1) * 24) + (24 - id(zeit).now().hour);
break;
case 'R':
if (lzr == 0) lzr = ((intAbfDatum[i] - heute + 1) * 24) + (24 - id(zeit).now().hour);
break;
}
}
}
}
ESP_LOGD("HUL1", "a: %d; b: %d; g: %d; r: %d", lza, lzb, lzg, lzr);
lz = 0;
if (lza > 12 and lza < 37) {
ESP_LOGD("HUL1", "choice A");
colR = 0;
colG = 0;
colB = 1;
lz = lza;
id(lampe) = true;
}
if (lzb > 12 and lzb < 37) {
ESP_LOGD("HUL1", "choice B");
colR = 0;
colG = 1;
colB = 0;
lz = lzb;
id(lampe) = true;
}
if (lzg > 12 and lzg < 37) {
ESP_LOGD("HUL1", "choice G");
colR = 1;
colG = 1;
colB = 0;
lz = lzg;
id(lampe) = true;
}
if (lzr > 12 and lzr < 37) {
ESP_LOGD("HUL1", "choice R");
colR = 1;
colG = 0;
colB = 0;
lz = lzr;
id(lampe) = true;
}
if ((lza == lzb) or (lza == lzg) or (lza == lzr) or (lzb == lzg) or (lzb == lzr) or (lzg == lzr)) {
ESP_LOGD("HUL1", "choice multi");
colR = 1;
colG = 1;
colB = 1;
}
if (id(lampe) and !id(button)) {
ESP_LOGD("HUL1", "Lampe an %d", lz);
auto call = id(abfallneo).turn_on();
call.set_rgb(colR, colG, colB);
switch (lz) {
case 0 : call.set_effect("scan"); break; // jetzt sind wir im "gemerkten" Tag. wird aber durch WCS bereits erledigt.
case 13 ... 18 : call.set_effect("scan"); break;
case 19 ... 28 : call.set_effect("pulse"); break;
case 29 ... 36 : call.set_effect("none"); break;
default : call.set_effect("strobe"); // darf eigentlich nicht passieren!
}
call.perform();
} else {
ESP_LOGD("HUL1", "Lampe aus %d", lz);
auto call = id(abfallneo).turn_off();
call.perform();
}
sun:
latitude: 51.14°
longitude: 9.414°
binary_sensor:
- platform: gpio
pin:
number: D3
mode:
input: true
pullup: true
name: "button"
internal: true
on_press:
then:
- logger.log: "button pressed"
- globals.set:
id: button
value: 'true'
- light.turn_off:
id: abfallneo
- platform: status
name: "Statussensor"
id: statussensor
sensor:
- platform: homeassistant
id: abfallnxta
internal: true
entity_id: sensor.abfallnxta
- platform: homeassistant
id: abfallnxtb
internal: true
entity_id: sensor.abfallnxtb
- platform: homeassistant
id: abfallnxtg
internal: true
entity_id: sensor.abfallnxtg
- platform: homeassistant
id: abfallnxtr
internal: true
entity_id: sensor.abfallnxtr
light:
- platform: neopixelbus
type: GRB
variant: WS2812
pin: D6
num_leds: 8
name: "Abfall NeoPix"
id: abfallneo
effects:
- random:
- pulse:
- strobe:
- flicker:
- addressable_rainbow:
- addressable_color_wipe:
- addressable_scan:
- addressable_twinkle:
- addressable_random_twinkle:
- addressable_fireworks:
- addressable_flicker: