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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
use serde;
use serde::{Serialize, Deserialize};
use serde_repr::{Deserialize_repr, Serialize_repr};
use crate::structures::none_function;



#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct If2 {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub sync: Option<Sync>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub nodes: Option<Nodes>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub live: Option<Live>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub va: Option<Va>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub mqtt: Option<Mqtt>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub hue: Option<Hue>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub ntp: Option<Ntp>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Sync {
    /// WLED notifier default port
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub port0: Option<u16>,

    /// WLED notifier supplemental port
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub port1: Option<u16>,

    /// WLED notifier receive info
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub recv: Option<Recv>,

    /// WLED notifier send info
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub send: Option<Send>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Recv {

    /// apply brightness from incoming notifications
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub bri: Option<bool>,

    /// apply color
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub col: Option<bool>,

    /// apply effects setup
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub fx: Option<bool>,

    /// sync receive groups this instance belongs to (bit mapped)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub grp: Option<u8>,

    /// apply segment options
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub seg: Option<bool>,

    /// apply segment bounds (start, stop, offset)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub sb: Option<bool>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Send {
    /// send notification if change via UI or HTTP API
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub dir: Option<bool>,

    /// send if updated by button or infrared remote
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub btn: Option<bool>,

    /// send notification if updated via Alexa
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub va: Option<bool>,

    /// send notification if Hue light changes
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub hue: Option<bool>,

    /// send notification for macro
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    #[serde(rename = "macro")]
    pub macro_field: Option<bool>,

    /// sync groups this instance syncs (bit mapped)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub grp: Option<u8>,

    /// Number of times a UDP sync message is retransmitted. Increase to increase reliability
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub ret: Option<u8>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Nodes {
    /// node List Enabled
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub list: Option<bool>,

    /// node Broadcast Enabled
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub bcast: Option<bool>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Live {
    /// receive UDP realtime
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub en: Option<bool>,

    /// use Main Segment Only
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub mso: Option<bool>,

    /// DMX in port. E1.31 default is 5568, Art-Net is 6454
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub port: Option<u16>,

    /// multicast or unicast; who the fuck knows which one is which
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub mc: Option<bool>,

    /// DMX info
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub dmx: Option<LiveDmx>,

    /// (ms timeout of realtime mode before returning to normal mode) / 100
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub timeout: Option<u16>,

    /// enable to force max brightness if source has very dark colors that would be black
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub maxbri: Option<bool>,

    /// Disable gamma correction; activate if gamma correction is handled by the source
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    #[serde(rename = "no-gc")]
    pub no_gc: Option<bool>,

    /// realtime LED offset
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub offset: Option<u32>,
}


/// Dmx setting found in 'cfg. ...live.dmx', not the root 'cfg.dmx'
#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct LiveDmx {
    /// settings for E1.31 (sACN) protocol (only DMX_MODE_MULTIPLE_* can span over consecutive universes)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub uni: Option<u16>,

    /// freeze instead of flickering
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub seqskip: Option<bool>,

    /// E1.31 port priority (if != 0 priority handling is active)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub e131prio: Option<u8>,

    /// DMX start address of fixture, a.k.a. first Channel [for E1.31 (sACN) protocol]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub addr: Option<u16>,

    /// DMX channel spacing; Number of void/unused channels between each segments DMX channels
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub dss: Option<u16>,

    /// DMX mode
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub mode: Option<DmxMode>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Va {
    /// enable device discovery by Amazon Echo
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub alexa: Option<bool>,

    /// [macroAlexaOn, macroAlexaOff]
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub macros: Option<[u8; 2]>,

    /// number of presets to expose to Alexa, starting from preset 1, up to 9
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub p: Option<u8>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Mqtt {
    /// MQTT enabled?
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub en: Option<bool>,

    /// both domains and IPs should work (no SSL)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub broker: Option<String>,

    /// MQTT port
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub port: Option<u16>,

    /// optional: username for MQTT auth
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub user: Option<String>,

    /// optional: length of password for MQTT auth
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub pskl: Option<u8>,

    /// override the client ID
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub cid: Option<String>,

    /// retain brightness and color
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub rtn: Option<bool>,

    /// mqtt topics
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub topics: Option<Topics>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Topics {
    /// main MQTT topic (individual per device, default is wled/mac)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub device: Option<String>,

    /// second MQTT topic (for example to group devices)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub group: Option<String>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Hue {
    /// poll hue bridge for light state
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub en: Option<bool>,

    /// ID of hue lamp to sync to. Find the ID in the hue app ("about" section)
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub id: Option<u8>,

    /// (low values (< 1sec) may cause lag but offer quicker response) / 100
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub iv: Option<u16>,

    /// hue receiver info
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub recv: Option<Recv2>,

    /// hue IP
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub ip: Option<[u8; 4]>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Recv2 {
    /// hue Apply On Off
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub on: Option<bool>,

    /// hue Apply Bri
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub bri: Option<bool>,

    /// hue Apply Color
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub col: Option<bool>,
}

#[derive(Default, Debug, Clone, PartialEq, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Ntp {
    /// get internet time. Only required if you use clock overlays or time-activated macros
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub en: Option<bool>,

    /// NTP server to use
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub host: Option<String>,

    /// Timezone ID. Refer to timezones array in wled10_ntp.ino
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub tz: Option<TimeZoneId>,

    /// Seconds to offset from UTC before timzone calculation
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub offset: Option<u32>,

    /// Use AM/PM;  12h/24h clock format
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub ampm: Option<bool>,

    /// longitude
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub ln: Option<f64>,

    /// latitude
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "none_function")]
    pub lt: Option<f64>,
}


/// DMX modes
#[allow(non_camel_case_types)]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Debug, Clone)]
#[repr(u8)]
pub enum DmxMode {
    /// Not used
    DMX_MODE_DISABLED = 0,
    /// all LEDs same RGB color (3 channels)
    DMX_MODE_SINGLE_RGB = 1,
    /// all LEDs same RGB color and master dimmer (4 channels)
    DMX_MODE_SINGLE_DRGB = 2,
    /// trigger standalone effects of WLED (15 channels)
    DMX_MODE_EFFECT = 3,
    /// trigger standalone effects of WLED (18 channels)
    DMX_MODE_EFFECT_W = 7,
    /// every LED is addressed with its own RGB (ledCount * 3 channels)
    DMX_MODE_MULTIPLE_RGB = 4,
    /// every LED is addressed with its own RGB and share a master dimmer (ledCount * 3 + 1 channels)
    DMX_MODE_MULTIPLE_DRGB = 5,
    /// every LED is addressed with its own RGBW (ledCount * 4 channels)
    DMX_MODE_MULTIPLE_RGBW = 6,
    /// trigger standalone effects of WLED (15 channels per segment)
    DMX_MODE_EFFECT_SEGMENT = 8,
    /// trigger standalone effects of WLED (18 channels per segment)
    DMX_MODE_EFFECT_SEGMENT_W = 9,
    /// apply presets (1 channel)
    DMX_MODE_PRESET = 10,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD1,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD2,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD3,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD4,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD5,
    /// Reserved to keep some semblance of backwards compatibility when new WLED versions come out with more Night Light modes
    RSVD6,

}

/// Time zone IDs
#[allow(non_camel_case_types)]
#[derive(Serialize_repr, Deserialize_repr, PartialEq, Debug, Clone)]
#[repr(u8)]
pub enum TimeZoneId {
    TZ_UTC,
    TZ_UK,
    TZ_EUROPE_CENTRAL,
    TZ_EUROPE_EASTERN,
    TZ_US_EASTERN,
    TZ_US_CENTRAL,
    TZ_US_MOUNTAIN,
    TZ_US_ARIZONA,
    TZ_US_PACIFIC,
    TZ_CHINA,
    TZ_JAPAN,
    TZ_AUSTRALIA_EASTERN,
    TZ_NEW_ZEALAND,
    TZ_NORTH_KOREA,
    TZ_INDIA,
    TZ_SASKACHEWAN,
    TZ_AUSTRALIA_NORTHERN,
    TZ_AUSTRALIA_SOUTHERN,
    TZ_HAWAII,
    TZ_NOVOSIBIRSK,
    TZ_ANCHORAGE,
    TZ_MX_CENTRAL,
    TZ_PAKISTAN,
    TZ_RSVD1,
    TZ_RSVD2,
    TZ_RSVD3,
    TZ_RSVD4,
    TZ_RSVD5,
    TZ_RSVD6,
    TZ_INIT = 255
}