forked from tsquared96/ESPHome-Navien
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnavien.yaml
725 lines (703 loc) · 23.1 KB
/
navien.yaml
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
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
################################################################################
#### REVISION HISTORY ####
################################################################################
#
# 5/28/2024 revision to gas m3, ccf, and therms per discussion on community forum
#
substitutions:
comment: "(Navien Hot Water Heater) -- Device host: redacted"
friendly_name: Navien Water Heater
logger_level: WARN
binary_sensor:
- platform: status
name: Status
internal: True
esphome:
name: navien
friendly_name: Navien Water Heater
esp32:
board: esp32-s3-devkitc-1
framework:
type: arduino
# Enable logging
logger:
# Enable Home Assistant API
api:
# Allow Over-The-Air updates
ota:
- platform: esphome
# Allow provisioning Wi-Fi via serial
improv_serial:
wifi:
ssid: !secret wifi_ssid
password: !secret wifi_password
globals:
- id: init_set_temp
type: int
restore_value: yes
initial_value: '120'
#################################
#### UART SETUP/DECODE BYTES ####
#################################
uart:
id: uart_bus
tx_pin: 6
rx_pin: 5
baud_rate: 19200
data_bits: 8
stop_bits: 1
parity: NONE
debug:
direction: BOTH
dummy_receiver: True
after:
delimiter: "\n"
sequence:
- lambda: |-
//
// SPECIAL THANKS TO @suva on the HomeAssistant forum for Decoding these.
// https://community.home-assistant.io/t/navien-hot-water-heater-navilink/330044/92
//
UARTDebug::log_hex(direction, bytes, ',');
UARTDebug::log_int(direction, bytes, ',');
if (bytes[0] == 247 && bytes[1] == 5 && bytes[2] == 80 && bytes[3] == 80 && bytes[4] == 144 && bytes[5] == 34) {
// Water information
id(uart_water_byte0).publish_state(bytes[0]); //Common To all Packets
id(uart_water_byte1).publish_state(bytes[1]); //Common To all Packets
id(uart_water_byte2).publish_state(bytes[2]); //Packet id Byte 0
id(uart_water_byte3).publish_state(bytes[3]); //Packet id Byte 1
id(uart_water_byte4).publish_state(bytes[4]); //Packet id Byte 2
id(uart_water_byte5).publish_state(bytes[5]); //Data Length
id(uart_water_byte6).publish_state(bytes[6]); // Always 66?
id(uart_water_byte7).publish_state(bytes[7]); // Always 0
id(uart_water_byte8).publish_state(bytes[8]); // 0, 8, 32 related to recirc running
id(uart_water_byte9).publish_state(bytes[9]); // System Power: high nibble: Unknown (values 0 and 0x20 observed); low nibble = 0=off 0x5=on
id(uart_water_byte10).publish_state(bytes[10]);
id(uart_water_byte11).publish_state((bytes[11]/2.0)); //Set temp - measured in 0.5 degrees C.
id(uart_water_byte12).publish_state((bytes[12]/2.0)); //Outlet temp - measured in 0.5 degrees C.
id(uart_water_byte13).publish_state((bytes[13]/2.0)); //Inlet temp - measured in 0.5 degrees C.
id(uart_water_byte14).publish_state(bytes[14]); // Always 0
id(uart_water_byte15).publish_state(bytes[15]); // Always 0
id(uart_water_byte16).publish_state(bytes[16]); // Always 0
id(uart_water_byte17).publish_state(bytes[17] / 10.0 / 2.0); // Sort of looks like GPM
id(uart_water_byte18).publish_state(bytes[18] / 10.0); //Flow rate - measured in 0.1 liters per minute (divide by 10 to get LPM)
id(water_flow_gpm).publish_state(bytes[18] / 10.0 * 0.2642);
id(uart_water_byte19).publish_state(bytes[19]);
id(uart_water_byte20).publish_state(bytes[20]);
id(uart_water_byte21).publish_state(bytes[21]); // 190, 173, 186
id(uart_water_byte22).publish_state(bytes[22]); // 0, 186, 201, 202
id(uart_water_byte23).publish_state(bytes[23]); // 32, 63, 186
id(uart_water_byte24).publish_state(bytes[24]); //System status. Probably a bitwise field. Partially decoded: display units: 0x08 position: 1=metric 0=imperial. 0x02 position: 1=weekly 0=hotbutton
id(uart_water_byte25).publish_state(bytes[25]); // 0, 117
id(uart_water_byte26).publish_state(bytes[26]);
id(uart_water_byte27).publish_state(bytes[27]);
id(uart_water_byte28).publish_state(bytes[28]); // 106, 52, 76 // could be runtime? 106
id(uart_water_byte29).publish_state(bytes[29]); // 0, 18, 232
id(uart_water_byte30).publish_state(bytes[30]); // slowly increases, some outlier values 175-186
id(uart_water_byte31).publish_state(bytes[31]);
id(uart_water_byte32).publish_state(bytes[32]);
id(uart_water_byte33).publish_state(bytes[33]); // If recirculation is on/off 2 or 0
id(uart_water_byte34).publish_state(bytes[34]);
id(uart_water_byte35).publish_state(bytes[35]);
id(uart_water_byte36).publish_state(bytes[36]);
id(uart_water_byte37).publish_state(bytes[37]);
id(uart_water_byte38).publish_state(bytes[38]);
id(uart_water_byte39).publish_state(bytes[39]);
id(uart_water_byte40).publish_state(bytes[40]); // checksum?
}
else if (bytes[0] == 247 && bytes[1] == 5 && bytes[2] == 80 && bytes[3] == 15 && bytes[4] == 144 && bytes[5] == 42) {
// Gas information
id(uart_gas_byte0).publish_state(bytes[0]); //Common to All Packets
id(uart_gas_byte1).publish_state(bytes[1]); //Common to All Packets
id(uart_gas_byte2).publish_state(bytes[2]); //Packet id Byte 0
id(uart_gas_byte3).publish_state(bytes[3]); //Packet id Byte 1
id(uart_gas_byte4).publish_state(bytes[4]); //Packet id Byte 2
id(uart_gas_byte5).publish_state(bytes[5]); //Data Length
id(uart_gas_byte6).publish_state(bytes[6]); // Always 69?
id(uart_gas_byte7).publish_state(bytes[7]); // Always 0
id(uart_gas_byte8).publish_state(bytes[8]); // Always 11
id(uart_gas_byte9).publish_state(bytes[9]); // Always 1
id(uart_gas_byte10).publish_state(bytes[10]); // Always 12
id(uart_gas_byte11).publish_state(bytes[11]); // Always 0
id(uart_gas_byte12).publish_state(bytes[12]); // Always 19
id(uart_gas_byte13).publish_state(bytes[13]); // Always 0
id(uart_gas_byte14).publish_state(bytes[14] / 2.0); // Set Temp - measured in 0.5 degrees C.
id(uart_gas_byte15).publish_state(bytes[15] / 2.0); //Outlet temp - measured in 0.5 degrees C.
id(uart_gas_byte16).publish_state(bytes[16] / 2.0); //Inlet temp - measured in 0.5 degrees C.
id(uart_gas_byte17).publish_state(bytes[17]); // Always 0
id(uart_gas_byte18).publish_state(bytes[18]); // Always 0
id(uart_gas_byte19).publish_state(bytes[19]); // Always 0
id(uart_gas_byte20).publish_state(bytes[20]); // almost identical to high_byte_kcal
id(uart_gas_byte21).publish_state(bytes[21]); // Always 1
id(uart_gas_byte22).publish_state(bytes[22]); //Low byte current gas usage in kcal
id(uart_gas_byte23).publish_state(bytes[23]); //High byte current gas usage in kcal
id(total_kcal).publish_state((bytes[23] * 256.0) + (bytes[22]));
id(instant_btus).publish_state(((bytes[23] * 256.0) + bytes[22]) * 3.965667);
id(uart_gas_byte24).publish_state(bytes[24] / 10.0); //Total gas usage in 0.1m^3 (divide by 10 to get m^3)
id(total_gas_use_ccf).publish_state(bytes[24] / 10.0 / 2.832);
id(total_gas_use_therms).publish_state(bytes[24] / 10.0 / 2.832 * 1.02845);
id(uart_gas_byte25).publish_state(bytes[25]); // mostly 53, then 173
id(uart_gas_byte26).publish_state(bytes[26]); // Always 0
id(uart_gas_byte27).publish_state(bytes[27]); // Always 0
id(uart_gas_byte28).publish_state(bytes[28]); // Always 0
id(uart_gas_byte29).publish_state(bytes[29]); // Always 2
id(uart_gas_byte30).publish_state(bytes[30]); // slowly increasing? 10 - 15
id(uart_gas_byte31).publish_state(bytes[31]); // Always 6
id(uart_gas_byte32).publish_state(bytes[32]); // Always 86
id(uart_gas_byte33).publish_state(bytes[33]); // Always 173
id(uart_gas_byte34).publish_state(bytes[34]); // Always 186
id(uart_gas_byte35).publish_state(bytes[35]);
id(uart_gas_byte36).publish_state(bytes[36]); // could be runtime? 106
id(uart_gas_byte37).publish_state(bytes[37]);
id(uart_gas_byte38).publish_state(bytes[38]);
id(uart_gas_byte39).publish_state(bytes[39]);
id(uart_gas_byte40).publish_state(bytes[40]);
id(uart_gas_byte41).publish_state(bytes[41]);
id(uart_gas_byte42).publish_state(bytes[42]);
id(uart_gas_byte43).publish_state(bytes[43]);
id(uart_gas_byte44).publish_state(bytes[44]);
id(uart_gas_byte45).publish_state(bytes[45]);
id(uart_gas_byte46).publish_state(bytes[46]);
id(uart_gas_byte47).publish_state(bytes[47]);
id(uart_gas_byte48).publish_state(bytes[48]); // checksum?
} else {
// Handle other cases
}
###############################
#### ENABLE/DISABLE HEATER ####
###############################
switch:
- platform: template
name: "HW Heater On/Off"
id: navien_switch
restore_mode: ALWAYS_ON
icon: mdi:water-boiler
lambda: |-
if ((id(uart_water_byte9).state) == 5 || (id(uart_water_byte9).state) == 37) {
return true;
id(navien_switch).publish_state(true);
} else {
return false;
id(navien_switch).publish_state(false);
}
turn_on_action:
- uart.write: !lambda
return {0xf7, 0x05, 0x0f, 0x50, 0x10, 0x0c, 0x4f, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xce};
id(navien_switch).publish_state(true);
turn_off_action:
- uart.write: !lambda
return {0xf7, 0x05, 0x0f, 0x50, 0x10, 0x0c, 0x4f, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xa};
id(navien_switch).publish_state(false);
# - platform: template
# name: "Fake Thermostat Switch"
# id: fake_switch
# restore_mode: ALWAYS_ON
# optimistic: True
# internal: True
####################################################################
#### SETPOINT ENTRY TEMPLATE - STILL WORKING ON THIS 4/29/2024 ####
####################################################################
# climate:
# - platform: thermostat
# name: "Climate Controller"
# visual:
# min_temperature: 120 °F
# max_temperature: 140 °F
# temperature_step: 1.0 °F
# sensor: outlet_temp
# min_heating_off_time: 300s
# min_heating_run_time: 300s
# min_idle_time: 30s
# heat_action:
# - switch.turn_on: fake_switch
# idle_action:
# - switch.turn_off: fake_switch
################################
#### WATER TEMPLATE SENSORS ####
################################
sensor:
- platform: template
name: "WByte_0"
id: uart_water_byte0
internal: True
- platform: template
name: "WByte_01"
id: uart_water_byte1
internal: True
- platform: template
name: "WByte_02"
id: uart_water_byte2
internal: True
- platform: template
name: "WByte_03"
id: uart_water_byte3
internal: True
- platform: template
name: "WByte_04"
id: uart_water_byte4
internal: True
- platform: template
name: "WByte_05"
id: uart_water_byte5
internal: True
- platform: template
name: "WByte_06"
id: uart_water_byte6
# internal: True
- platform: template
name: "WByte_07"
id: uart_water_byte7
internal: True
- platform: template
name: "WByte_08"
id: uart_water_byte8
# internal: True
unit_of_measurement: points
- platform: template
name: "WByte_09 - Power State"
id: uart_water_byte9
internal: true
- platform: template
name: "WByte_10"
id: uart_water_byte10
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_10 - Set Temp"
id: uart_water_byte11
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "Heat Exchange Outlet Temp"
id: uart_water_byte12
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "Heat Exchange Inlet Temp"
id: uart_water_byte13
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "WByte_14"
id: uart_water_byte14
internal: True
- platform: template
name: "WByte_15"
id: uart_water_byte15
internal: True
- platform: template
name: "WByte_16"
id: uart_water_byte16
internal: True
- platform: template
name: "WByte_17 - GPM"
id: uart_water_byte17
icon: mdi:water-percent
unit_of_measurement: GPM
# internal: True
- platform: template
name: "Water Flow LPM"
id: uart_water_byte18 # multiply by 0.2642 to get GPM
icon: mdi:water-percent
unit_of_measurement: l/min
- platform: template
name: "Water Flow GPM"
id: water_flow_gpm # this is derived from the Water Flow LPM entity
icon: mdi:water-percent
unit_of_measurement: GPM
- platform: template
name: "WByte_19 Unknown Flow"
id: uart_water_byte19
# internal: True
- platform: template
name: "WByte_20"
id: uart_water_byte20
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_21"
id: uart_water_byte21
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_22"
id: uart_water_byte22
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_23"
id: uart_water_byte23
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_24 Sys Status"
id: uart_water_byte24
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_25"
id: uart_water_byte25
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_26"
id: uart_water_byte26
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_27"
id: uart_water_byte27
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_28"
id: uart_water_byte28
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_29"
id: uart_water_byte29
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_30"
id: uart_water_byte30
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_31"
id: uart_water_byte31
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_32"
id: uart_water_byte32
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_33"
id: uart_water_byte33
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_34"
id: uart_water_byte34
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_35"
id: uart_water_byte35
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_36"
id: uart_water_byte36
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_37"
id: uart_water_byte37
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_38"
id: uart_water_byte38
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_39"
id: uart_water_byte39
unit_of_measurement: points
# internal: True
- platform: template
name: "WByte_40"
id: uart_water_byte40
internal: True
##############################
#### GAS TEMPLATE SENSORS ####
##############################
- platform: template
name: "GByte_0"
id: uart_gas_byte0
internal: True
- platform: template
name: "GByte_01"
id: uart_gas_byte1
internal: True
- platform: template
name: "GByte_02"
id: uart_gas_byte2
internal: True
- platform: template
name: "GByte_03"
id: uart_gas_byte3
internal: True
- platform: template
name: "GByte_04"
id: uart_gas_byte4
internal: True
- platform: template
name: "GByte_05"
id: uart_gas_byte5
internal: True
- platform: template
name: "GByte_06"
id: uart_gas_byte6
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_07"
id: uart_gas_byte7
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_08"
id: uart_gas_byte8
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_09"
id: uart_gas_byte9
unit_of_measurement: points
# internal: true
- platform: template
name: "GByte_10"
id: uart_gas_byte10
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_11"
id: uart_gas_byte11
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_12"
id: uart_gas_byte12
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_13"
id: uart_gas_byte13
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_14 - Set Temp"
id: uart_gas_byte14
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "GByte_15 - Outlet Temp"
id: uart_gas_byte15
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "GByte_16 - Inlet Temp"
id: uart_gas_byte16
icon: mdi:thermometer-water
unit_of_measurement: °C
accuracy_decimals: 1
device_class: "temperature"
state_class: "measurement"
- platform: template
name: "GByte_17"
id: uart_gas_byte17
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_18"
id: uart_gas_byte18
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_19"
id: uart_gas_byte19
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_20"
id: uart_gas_byte20
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_21"
id: uart_gas_byte21
unit_of_measurement: points
# internal: True
- platform: template
name: "kCal Low Byte"
id: uart_gas_byte22
icon: mdi:gas-burner
unit_of_measurement: kCal
- platform: template
name: "kCal High Byte"
id: uart_gas_byte23
icon: mdi:gas-burner
unit_of_measurement: kCal
- platform: template
name: "Total Gas Use Cubic Meters"
id: uart_gas_byte24 # divide by 2.832 to get CCF
icon: mdi:gas-cylinder
unit_of_measurement: m³
accuracy_decimals: 1
- platform: template
name: "GByte_25"
id: uart_gas_byte25
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_26"
id: uart_gas_byte26
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_27"
id: uart_gas_byte27
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_28"
id: uart_gas_byte28
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_29"
id: uart_gas_byte29
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_30"
id: uart_gas_byte30
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_31"
id: uart_gas_byte31
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_32"
id: uart_gas_byte32
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_33"
id: uart_gas_byte33
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_34"
id: uart_gas_byte34
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_35"
id: uart_gas_byte35
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_36"
id: uart_gas_byte36
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_37"
id: uart_gas_byte37
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_38"
id: uart_gas_byte38
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_39"
id: uart_gas_byte39
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_40"
id: uart_gas_byte40
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_41"
id: uart_gas_byte41
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_42"
id: uart_gas_byte42
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_43"
id: uart_gas_byte43
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_44"
id: uart_gas_byte44
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_45"
id: uart_gas_byte45
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_46"
id: uart_gas_byte46
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_47"
id: uart_gas_byte47
unit_of_measurement: points
# internal: True
- platform: template
name: "GByte_48"
id: uart_gas_byte48
internal: True
# calculated as shown here https://www.plctalk.net/threads/low-byte-high-byte.78315/
- platform: template
name: "Total kCal"
id: total_kcal
icon: mdi:gas-burner
unit_of_measurement: kCal
accuracy_decimals: 2
state_class: "measurement"
- platform: template
name: "Instant BTUs"
id: instant_btus
icon: mdi:gas-burner
unit_of_measurement: "btu/hr"
accuracy_decimals: 1
state_class: "measurement"
- platform: template
name: "Total Gas Use CCF"
id: total_gas_use_ccf # this is derived from the entity Total Gas Use Cubic Meters and converts to CCF for comparison to US energy bills.
icon: mdi:gas-cylinder
unit_of_measurement: CCF
accuracy_decimals: 1
state_class: "measurement"
- platform: template
name: "Total Gas Use Therms"
id: total_gas_use_therms # this is derived from the entity Total Gas Use CCF and one of the typical measurements for the utility company to bill against in the US.
icon: mdi:gas-cylinder # this multiplier 1.02845 was obtained from my energy bill - it is known as "Therm Factor" on my bill
unit_of_measurement: therms
accuracy_decimals: 1