forked from ycahome/pp-manager
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathregistry.json
More file actions
1904 lines (1904 loc) · 57.1 KB
/
Copy pathregistry.json
File metadata and controls
1904 lines (1904 loc) · 57.1 KB
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
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Idle": [
"Idle",
"Idle",
"Idle",
"master"
],
"AWTRIX3": [
"galadril",
"Domoticz-AWTRIX3-Plugin",
"Domoticz python plugin to connect / integrate with AWTRIX3",
"master"
],
"BatteryLevel": [
"999LV",
"BatteryLevel",
"Domoticz python plugin to display/log battery level of zwave devices",
"master"
],
"ChromecastPlugin": [
"Tsjippy",
"ChromecastPlugin",
"Chromecast plugin for Domoticz, based on PyChromecast",
"master"
],
"CreasolDomBus": [
"CreasolTech",
"CreasolDomBus",
"Domoticz plugin for the DomBus RS485 modules (inputs, outputs, sensors, EVSE, solar tracker, ...)",
"master"
],
"deCONZ": [
"Smanar",
"Domoticz-deCONZ",
"deCONZ plugin for Domoticz (Zigbee application)",
"master"
],
"Denon4306": [
"dnpwwo",
"Domoticz-Denon-Plugin",
"Telnet based Denon / Marantz plugin",
"master"
],
"domoticz-dds238": [
"CreasolTech",
"domoticz-dds238",
"Plugin for Domoticz that manage 1 or more DDS238 ZN/S energy meter (DDS238-1 ZN/S , DDS238-2 ZN/S)",
"master"
],
"domoticz-dts238": [
"CreasolTech",
"domoticz-dts238",
"DTS238 energy meter plugin for Domoticz",
"master"
],
"domoticz-theme-manager": [
"galadril",
"domoticz-theme-manager",
"Domoticz Theme Manager",
"master"
],
"DysonPureLink": [
"JanJaapKo",
"DysonPureLink",
"Handles Dyson Pure Link in Domoticz as plugin",
"master"
],
"ebusd": [
"guillaumezin",
"DomoticzEbusd",
"ebusd plugin for Domoticz",
"master"
],
"E-Flux": [
"galadril",
"Domoticz-E-Flux-Plugin",
"E-Flux integration for Domoticz to fetch data",
"main"
],
"domoticz-emmeti-eq2021": [
"CreasolTech",
"domoticz-emmeti-eq2021",
"Emmeti EQ 2021 amd EQ 3021 ES hot water heat pumps",
"master"
],
"domoticz-emmeti-mirai": [
"CreasolTech",
"domoticz-emmeti-mirai",
"EMMETI Mirai heat pump plugin for Domoticz home automation system",
"master"
],
"ems-gateway": [
"bbqkees",
"ems-esp-domoticz-plugin",
"Domoticz plugin for the EMS Wi-Fi Gateway with Proddy's EMS-ESP firmware ",
"main"
],
"Domoticz-EVCC-IO-Plugin": [
"galadril",
"Domoticz-EVCC-IO-Plugin",
"Domoticz evcc.io plugin to fetch state ",
"main"
],
"freeboxv6": [
"supermat",
"PluginDomoticzFreebox",
"Freebox V6 (Revolution)",
"master"
],
"GoodWeAPI": [
"JanJaapKo",
"domoticz-GoodWeSEMS",
"Domoticz GoodWe Solar Inverter plugin (SEMS API)",
"master"
],
"GoveeDiscovery": [
"galadril",
"Domoticz-Govee-Plugin",
"Domoticz Govee Plugin",
"main"
],
"Homewizard": [
"rvdvoorde",
"domoticz-homewizard",
"Plugin for Domoticz",
"master"
],
"Homewizard-Battery": [
"etmmvdp",
"HomeWizard-Battery-plugin",
"A domoticz plugin for the HomeWizard Battery",
"main"
],
"HyundaiKiaConnect": [
"CreasolTech",
"domoticz-hyundai-kia",
"Plugin for Domoticz to get information from the Hyundai and Kia connect cloud",
"master"
],
"iDetect": [
"d-EScape",
"Domoticz_iDetect",
"Python plugin for Domoticz: Presence detection from wireless router",
"master"
],
"IthoWifi": [
"galadril",
"Domoticz-Itho-Wifi-Plugin",
"Plugin for sending commands to your Itho Wifi module.",
"main"
],
"IKEA-Tradfri": [
"moroen",
"IKEA-Tradfri-plugin",
"A Python plugin for Domoticz to controll IKEA Gateway",
"master"
],
"Linky": [
"guillaumezin",
"DomoticzLinky",
"Linky plugin for Domoticz",
"master"
],
"MeshCore": [
"galadril",
"Domoticz-MeshCore-Plugin",
"Domoticz integration for MeshCore",
"main"
],
"SolaxCloud": [
"galadril",
"Domoticz-SolaxCloud-Plugin",
"Fetch data from SolaxCloud as Domoticz Python Plugin",
"main"
],
"Link-Tap": [
"DebugBill",
"Link-Tap",
"This plugin is to be used in the Domoticz home automation package to control a Link-Tap watering system",
"main"
],
"MQTTDiscovery": [
"emontnemery",
"domoticz_mqtt_discovery",
"MQTT discovery plugin for Domoticz",
"development"
],
"pzem016": [
"CreasolTech",
"domoticz-pzem-016",
"Plugin for Domoticz managing one or more PZEM-016 and PZEM-014 energy meters (Modbus)",
"master"
],
"Quatt": [
"galadril",
"Domoticz-Quatt-Plugin",
"Plugin for retrieving and updating Quatt data.",
"main"
],
"sonoff-domoticz-plugin": [
"bobzomer",
"sonoff-domoticz-plugin",
"Plugin to control Sonoff Mini device from Domoticz",
"master"
],
"steam": [
"galadril",
"Domoticz-Steam-Plugin",
"Plugin for retrieving and updating Steam status (Online/Offline) and game name.",
"main"
],
"Synology SurveillanceStation": [
"lolautruche",
"SurveillanceStationDomoticz",
"Synology SurveillanceStation plugin for Domoticz",
"master"
],
"tuyaha": [
"guino",
"tuyaha",
"Implements the special Tuya Home Assistant API.",
"master"
],
"WLANThermo": [
"galadril",
"Domoticz-WLANThermo-Plugin",
"WLANThermo plugin for Domoticz",
"master"
],
"WLED": [
"frustreermeneer",
"domoticz-wled-plugin",
"Domoticz Plugin for WLED ",
"master"
],
"WAN-IP-CHECKER": [
"ycahome",
"WAN-IP-CHECKER",
"Domoticz plugin updates a \"General,Text\" Value with your Wan IP Address. This value can be used later on in order to update any scripts or notify you upon IP change.",
"master"
],
"Mi_Flower_mate_plugin": [
"flatsiedatsie",
"Mi_Flower_mate_plugin",
"A plugin for Domoticz, the open source home automation software, which allows it to easily connect to Xiaomi Mi Flower Mate devices",
"master"
],
"xiaomi-mi-robot-vacuum": [
"mrin",
"domoticz-mirobot-plugin",
"Xiaomi Mi Robot Vacuum plugin for Domoticz",
"master"
],
"Zigate": [
"zigbeefordomoticz",
"Domoticz-Zigbee",
"Zigbee plugin for Domoticz. Allow to connect various zigbee controllers like Zigate but also Texas Instrument CC2531, CC13x2, CC26x2 ; Silicon-Labs; deConz based chipset to be connected to Domoticz",
"stable8"
],
"Zigbee2Mqtt": [
"stas-demydiuk",
"domoticz-zigbee2mqtt-plugin",
"zigbee2mqtt plugin for domoticz",
"master"
],
"ds238-modbus-tcp": [
"xbeaudouin",
"domoticz-ds238-modbus-tcp",
"DDS238-2 ZN/S ModbusTCP Plugin for Domoticz",
"main"
],
"Lyrion": [
"MadPatrick",
"domoticz_lyrion",
"Domoticz Lyrion Media Server Plugin",
"main"
],
"DomoticzTile": [
"sydspost",
"Domoticz-Tile-plugin",
"Domoticz - Tile plugin",
"main"
],
"FoxESS-domoticz": [
"bblaszkiewicz",
"FoxESS-domoticz",
"FoxESS inverter & Domoticz integration",
"master"
],
"luxtronik-domoticz-plugin-v2": [
"Rouzax",
"luxtronik-domoticz-plugin-v2",
"Domoticz plugin for Luxtronik heat pump controllers - COP tracking, multi-instance support, write protection, 5 languages",
"main"
],
"domoticz-tailscale-plugin": [
"mirkg",
"domoticz-tailscale-plugin",
"Tailscale Integration",
"main"
],
"domoticz-mqttmapper-plugin": [
"FlyingDomotic",
"domoticz-mqttmapper-plugin",
"Domoticz plugin to map MQTT topics to devices/Associe MQTT topics et Domoticz dispositifs",
"main"
],
"domoticz-solaredge-modbustcp-plugin": [
"addiejanssen",
"domoticz-solaredge-modbustcp-plugin",
"A Domoticz plugin to collect data from SolarEdge power inverters over ModbusTCP.",
"master"
],
"domoticz-tuya-cloud": [
"lacha07",
"domoticz-tuya-cloud",
"Domoticz plugin to control Tuya devices via Cloud API - No local keys needed. Supports fans, lights, switches with automatic status sync.",
"main"
],
"Domoticz-SMA-Inverter": [
"derenback",
"Domoticz-SMA-Inverter",
"A Domoticz plugin for SMA solar inverters",
"main"
],
"Broadlink-Domoticz-plugin": [
"zak-45",
"Broadlink-Domoticz-plugin",
"Python plugin to manage Broadlink device from Domoticz",
"main"
],
"domoticz_lg_thinq_plugin": [
"majki09",
"domoticz_lg_thinq_plugin",
"Domoticz plugin for LG ThinQ devices.",
"main"
],
"Domoticz-Solax-plugin": [
"saidlm",
"Domoticz-Solax-plugin",
"Plugin to monitor and control Solax inverter from Domoticz via ModBUS over TCP/IP",
"main"
],
"domoticz-peblar": [
"Achterhoeker",
"domoticz-peblar",
"Domoticz plugin for the Peblar wallbox. Also support for loadbalancing.",
"main"
],
"Hisense-AirCon-Domoticz": [
"bblaszkiewicz",
"Hisense-AirCon-Domoticz",
"Hisense air conditioners & Domoticz integrations",
"master"
],
"domoticz-wellbeing-plugin": [
"jgaalen",
"domoticz-wellbeing-plugin",
"Domoticz plugin for Electrolux / AEG Wellbeing Air Purifiers",
"main"
],
"home-connect": [
"domoticz",
"home-connect",
"Bosch Home Connect plugin for Domoticz",
"main"
],
"domoticz_lg_thinqconnect_plugin": [
"avriessen",
"domoticz_lg_thinqconnect_plugin",
"LG ThinQ domoticz plugin",
"develop"
],
"Roomba": [
"neutrino85",
"Roomba",
"Domoticz iRobot Roomba Plugin",
"main"
],
"Domoticz---CEPT-plugin": [
"sydspost",
"Domoticz---CEPT-plugin",
"Domoticz plugin to get Cheapest Energy Price Time within next 24 hours given a duration of energyconsumption",
"main"
],
"Somfy": [
"MadPatrick",
"domoticz_somfy",
"Tahoma/Conexoon plugin for Somfy devices",
"master"
],
"Domoticz-TinyTUYA-Plugin": [
"Xenomes",
"Domoticz-TinyTUYA-Plugin",
"A bridge between Tinytuya and Domoticz",
"Master"
],
"Domoticz_WT53R_Rain_Tank_Sensor": [
"voyo",
"Domoticz_WT53R_Rain_Tank_Sensor",
"This plugin connects to a WT53R range sensor over Modbus TCP protocol to measure water levels in rain tanks.",
"main"
],
"weheat-domoticz-plugin": [
"Tableflipper9001",
"weheat-domoticz-plugin",
"Domoticz Python plugin for WeHeat heatpumps",
"main"
],
"Mattericz": [
"fleinze",
"Mattericz",
"Matter plugin for Domoticz",
"main"
],
"Domoticz_VolvoRecharge_Plugin": [
"akamming",
"Domoticz_VolvoRecharge_Plugin",
"domoticz plugin for Volvo Recharge Full EV or PHEV vehicles",
"main"
],
"BboxPlugin": [
"neutrino85",
"BboxPlugin",
"Bouygues Bbox Monitor plugin for Domoticz",
"main"
],
"Domoticz-Shelly-Plugin": [
"lemassykoi",
"Domoticz-Shelly-Plugin",
"Domoticz Plugin to manage Shelly Gen2+ Devices",
"main"
],
"TWC": [
"RSP267",
"TWC",
"Domoticz plugin for the Tesla Wall Connector",
"master"
],
"HomeWizard-Wifi-p1-plugin-Extended": [
"szelessavalapitvany",
"HomeWizard-Wifi-p1-plugin-Extended",
"Extended version of the original HomeWizard Wi-Fi P1 Domoticz plugin with more detailed data and multi-language support.",
"main"
],
"domoticz-AirHumidifier": [
"mgrom",
"domoticz-AirHumidifier",
"Domoticz plugin for Xiaomi Humidifier 1",
"master"
],
"Zigbee2Tasmoticz": [
"fleinze",
"Zigbee2Tasmoticz",
"a Domoticz plugin for Zigbee2Tasmota. Fork of foba-1/Tasmoticz ",
"main-domoticzex"
],
"Domoticz-Husqvarna-Automower-plugin": [
"FilipDem",
"Domoticz-Husqvarna-Automower-plugin",
"Domoticz plugin for Husqvarna automowers.",
"main"
],
"Marstek-Venus-plugin": [
"WillemD61",
"Marstek-Venus-plugin",
"Domoticz plugin for Marstek Venus battery",
"main"
],
"Krakinou-FrisquetConnectDomoticz": [
"Krakinou",
"FrisquetConnectDomoticz",
"Domoticz Plugin For Frisquet Connect",
"main"
],
"SessyBattery": [
"JanJaapKo",
"SessyBattery",
"Domoticz plugin for Sessy batteries",
"main"
],
"Domoticz-Huawei-Inverter": [
"JWGracht",
"Domoticz-Huawei-Inverter",
"Domoticz plugin for Huawei Solar inverters via Modbus",
"main"
],
"domoticz-github": [
"j-b-n",
"domoticz-github",
"GitHub Stats Domoticz Plugin",
"master"
],
"Domoticz-TeslaFi-Plugin": [
"lemassykoi",
"Domoticz-TeslaFi-Plugin",
"Domoticz Plugin to gather datas from TeslaFi API",
"main"
],
"Domoticz-OpenDTU-Plugin": [
"lemassykoi",
"Domoticz-OpenDTU-Plugin",
"Plugin to collect datas from OpenDTU",
"main"
],
"Domoticz-Bluetti-Plugin": [
"lemassykoi",
"Domoticz-Bluetti-Plugin",
"Domoticz Plugin to poll Bluetti device via BLE",
"main"
],
"Domoticz-BMW-plugin": [
"FilipDem",
"Domoticz-BMW-plugin",
"Domoticz plugin working with BMW Connected Drive",
"main"
],
"Domoticz-TinyTUYA-Local-Plugin": [
"Xenomes",
"Domoticz-TinyTUYA-Local-Plugin",
"Domoticz-TinyTUYA-Local-Plugin plugin for Domoticz",
"Master"
],
"domoticz_reolink": [
"j-b-n",
"domoticz_reolink",
"Domoticz plugin for use with Reolink cameras. ",
"main"
],
"SolarForecast": [
"JanJaapKo",
"SolarForecast",
"Domoticz plugin to fetch Solar Forecast data",
"main"
],
"NEDsolarForecast": [
"JanJaapKo",
"NEDsolarForecast",
"Domoticz plugin for NED solar forecast",
"main"
],
"Domoticz-OpenMeteo-Plugin": [
"lemassykoi",
"Domoticz-OpenMeteo-Plugin",
"Domoticz plugin for OpenMeteo weather data - no API key required",
"main"
],
"XTEND-plugin": [
"WillemD61",
"XTEND-plugin",
"Domoticz plugin for Intergas Xtend data collection",
"main"
],
"Domoticz-Synology-Plugin": [
"bramvreugd",
"Domoticz-Synology-Plugin",
"Synology Monitoring Plugin. Collects CPU, Memory, Heat, HDD Information and network load from Synology NAS Units",
"main"
],
"domoticz-powerview-plugin": [
"jgaalen",
"domoticz-powerview-plugin",
"domoticz-powerview-plugin plugin for Domoticz",
"main"
],
"Domoticz-PiHole-Control": [
"janreimen",
"Domoticz-PiHole-Control",
"Domoticz Plugin to integrate PiHole with https Support, forked from ",
"main"
],
"OpenEVSEPlugin": [
"ayasystems",
"OpenEVSEPlugin",
"OpenEVSE mqtt domoticz plugin",
"master"
],
"ThesslaGreen-modbus": [
"voyo",
"ThesslaGreen-modbus",
"Domoticz ThesslaGreen-modbus plugin",
"main"
],
"domoticz-BSR": [
"belzetrigger",
"domoticz-BSR",
"Domoticz plugin that gets data of public waste collection for Berlin from BSR",
"master"
],
"Domoticz-GPSLogger-Plugin": [
"TurnOfAFriendlyCard",
"Domoticz-GPSLogger-Plugin",
"Capture location data obtained via GPS Logger app in Domoticz devices.",
"main"
],
"Domoticz-Rhasspy-Plugin": [
"TurnOfAFriendlyCard",
"Domoticz-Rhasspy-Plugin",
"This plugin integrates Rhasspy intents with Domoticz devices via MQTT and Domoticz API.",
"main"
],
"Domoticz_plugin_for_Smasung_Washer_Dryer": [
"csutihu",
"Domoticz_plugin_for_Smasung_Washer_Dryer",
"Domoticz plugin for washing and drying machines",
"main"
],
"Domoticz-Enigma2": [
"kofec",
"Domoticz-Enigma2",
"Enigma2 Plugin for domoticz ",
"master"
],
"domoticz-cupra-plugin": [
"jgaalen",
"domoticz-cupra-plugin",
"Domoticz Cupra Plugin",
"main"
],
"Domoticz-Volumio-Plugin": [
"frepkovsky",
"Domoticz-Volumio-Plugin",
"Domoticz-Volumio-Plugin plugin for Domoticz",
"main"
],
"Domoticz-Temperatur-nu": [
"derenback",
"Domoticz-Temperatur-nu",
"A simple plugin for Domoticz that gets the temperature for a location in Sweden from temperature.nu",
"main"
],
"Domoticz-Brel-Home-Hub-03-integration": [
"salmr",
"Domoticz-Brel-Home-Hub-03-integration",
"Plugin for Domoticz to read and control binds via a Brel Home Hub",
"main"
],
"Domoticz-WazeTimeTravel-Plugin": [
"cth35",
"Domoticz-WazeTimeTravel-Plugin",
"Waze time travel plugin for Domoticz",
"main"
],
"OM310-Domoticz-plugin": [
"tmrealive",
"OM310-Domoticz-plugin",
"Domoticz plugin for OM-310 Power Limiter (Novatek-Elektro) over Modbus TCP",
"main"
],
"goodwe_rs485_domoticz": [
"nijmeijer",
"goodwe_rs485_domoticz",
"Domoticz python plugin for Goodwe Solar Inverters via RS485",
"master"
],
"DHT22-rpi": [
"Mibeus",
"DHT22-rpi",
"Plugin for domoticz for 1-wire DHT22/AM2301",
"main"
],
"DomoticzNestPlugin": [
"lbartuzi",
"DomoticzNestPlugin",
"Not a perfect plugin but it works. ",
"main"
],
"ShellyCloudPlugin2": [
"mario-peters",
"ShellyCloudPlugin2",
"This plugin makes it possible to use Shelly Devices in Domoticz. You can find the specific configuration and ToDo's on the Wiki page.",
"main"
],
"domoticz-PowerWorld-heat-pump": [
"Mike19700",
"domoticz-PowerWorld-heat-pump",
"Domoticz modbus plugin for Powerworld inverters.",
"main"
],
"domoticz-zigbee2mqtt-plugin": [
"RoyP99",
"domoticz-zigbee2mqtt-plugin",
"zigbee2mqtt plugin for domoticz",
"master"
],
"Domoticz-GPIO-Debian-13": [
"Mibeus",
"Domoticz-GPIO-Debian-13",
"Plugin for control relay on GPIO PINs on RPI with domoticz",
"main"
],
"Domoticz-N8N-Plugin": [
"galadril",
"Domoticz-N8N-Plugin",
"Plugin for Domoticz to load the UI inside Domoticz, and add all workflows as devices that you can toggle on/off inside Domoticz.",
"main"
],
"domoticz_zigbee2tasmota": [
"Mibeus",
"domoticz_zigbee2tasmota",
"plugin for comunication with zigbee sensors through tasmota to Domoticz",
"main"
],
"Domoticz-plugin-for-samsung-washing-machine": [
"csutihu",
"Domoticz-plugin-for-samsung-washing-machine",
"Domoticz python plugin for samsung washing machine via Smartthings API",
"main"
],
"Domoticz-MCP-Plugin": [
"galadril",
"Domoticz-MCP-Plugin",
"Domoticz-MCP-Plugin plugin for Domoticz",
"main"
],
"alphaESS-battery-plugin": [
"AntoineVDH",
"alphaESS-battery-plugin",
"A domoticz plugin for the alphaESS Battery",
"main"
],
"domoticz-ir-climate-controller": [
"szelessavalapitvany",
"domoticz-ir-climate-controller",
"Tasmota IR device control plugin that allows remote control of Wi-Fi-free, IR air conditioners from Domoticz",
"main"
],
"sweden_energyprice": [
"j-b-n",
"sweden_energyprice",
"Domoticz plugin for energy prices in Sweden.",
"main"
],
"HomeWizard-Wifi-3F-plugin": [
"freekdk",
"HomeWizard-Wifi-3F-plugin",
"Domoticz plugin for HomeWizard 3FkWh device",
"main"
],
"PC321_TY_tuya_local": [
"nlovrens",
"PC321_TY_tuya_local",
"Domoticz PC321-TY power clamp plugin",
"main"
],
"Domoticz-MG-Plugin": [
"lemassykoi",
"Domoticz-MG-Plugin",
"Domoticz Plugin to gather datas from MG EV",
"main"
],
"DDS238-7-modbus": [
"voyo",
"DDS238-7-modbus",
"Domoticz DDS238-7-modbus plugin",
"main"
],
"Sofar-modbus": [
"voyo",
"Sofar-modbus",
"Sofar over modbus, Domoticz plugin",
"main"
],
"IMGW-Meteo": [
"mstojek",
"IMGW-Meteo",
"Plugin dla platformy Domoticz umo\u017cliwiaj\u0105cy pobieranie aktualnych danych pogodowych z publicznego API Instytutu Meteorologii i Gospodarki Wodnej (IMGW).",
"main"
],
"Domoticz-Em3255-Plugin": [
"iwanbae",
"Domoticz-Em3255-Plugin",
"Domoticz-Em3255-Plugin plugin for Domoticz",
"main"
],
"Domoticz-NEST-plugin": [
"FilipDem",
"Domoticz-NEST-plugin",
"NEST Plugin for Domoticz using the Google credentials.",
"master"
],
"domoticz-mqtt-sync-plugin": [
"FlyingDomotic",
"domoticz-mqtt-sync-plugin",
"Synchronizes (part of) devices of a master instance to a slave one",
"main"
],
"domoticz-tuya-heatpump": [
"jgaalen",
"domoticz-tuya-heatpump",
"Domoticz plugin for Tuya (W'eau) Heatpumps",
"main"
],
"Domoticz-ZonneDimmer-Plugin": [
"galadril",
"Domoticz-ZonneDimmer-Plugin",
"Domoticz plugin to integrate with zonnedimmer",
"main"
],
"domoticz-kpn-experia-v10": [
"adrighem",
"domoticz-kpn-experia-v10",
"Domoticz Python Plugin for the KPN Experia v10",
"main"
],
"Domoticz-FranceFuelPrice-Plugin": [
"cth35",
"Domoticz-FranceFuelPrice-Plugin",
"Plugin Domoticz permettant de r\u00e9cup\u00e9rer le prix d'un carburant dans une station-service fran\u00e7aise \u00e0 partir de l'API officielle du gouvernement fran\u00e7ais.",
"main"
],
"DomoticzControl": [
"guillaumezin",
"DomoticzControl",
"Squeezebox / Logitech Media Server plugin for controlling Domoticz devices",
"master"
],
"domoticz-logmonitor-plugin": [
"mirkg",
"domoticz-logmonitor-plugin",
"domoticz-logmonitor-plugin plugin for Domoticz",
"main"
],
"TVUHDOrange": [
"Christophe-dms",
"TVUHDOrange",
"Plugin Domoticz TV UHD Orange 4K ( DTI 385 )",
"main"
],
"homebridge-edomoticz": [
"PatchworkBoy",
"homebridge-edomoticz",
"Domoticz Homebridge-Plugin",
"master"
],
"domoticz-wifisensors-plugin": [
"mirkg",
"domoticz-wifisensors-plugin",
"WifiSensors Domoticz integration",
"main"
],
"wiki": [
"zigbeefordomoticz",
"wiki",
"Wiki part of Domoticz-Zigate plugin",
"master"
],
"Domoticz-Zigbee-UI": [
"zigbeefordomoticz",
"Domoticz-Zigbee-UI",
"Web User Interface for Zigbee for Domoticz plugin",
"beta"
],
"Domoticz-Aldes": [
"ludosaxo",
"Domoticz-Aldes",
"Domoticz plugin for Aldes T One Air product",
"main"
],
"Domoticz-spaarnelanden-plugin": [
"Garthim",
"Domoticz-spaarnelanden-plugin",
"Domoticz-spaarnelanden-plugin",
"main"
],
"WifiTIC": [
"DebugBill",
"WifiTIC",
"WifiTIC plugin for DomoticZ",
"main"
],
"IntesisBox-Panasonic-Tcap-modbus": [
"voyo",
"IntesisBox-Panasonic-Tcap-modbus",
"IntesisBox Panasonic-Tcap over modbus, Domoticz plugin",
"main"
],
"esphome-air-quality-monitor": [
"easternredcedarfleece849",
"esphome-air-quality-monitor",
"\ud83c\udf31 Monitor indoor air quality easily with this low-cost ESP32-based device using SM300D2 sensors, perfect for Home Assistant integration.",
"main"
],
"boiler-controller-domoticz": [
"BoilerController",
"boiler-controller-domoticz",
"Domoticz integration for the Boiler Controller (BC) device. It turns your electric boiler into a water battery \u2014 instead of exporting surplus energy, it sends the excess reported by your electric meter straight into the heater so you store free solar or dynamic-tariff energy as hot water.",
"main"
],
"domoticz-mcp": [
"adrighem",
"domoticz-mcp",
"A Model Context Protocol (MCP) server for integrating with the Domoticz home automation system",
"main"
],
"Easun-ISolarSPS-Domoticz": [
"bblaszkiewicz",
"Easun-ISolarSPS-Domoticz",
"EAsun inverter & Domoticz integration",
"master"
],
"domoticz-hue-emulator": [
"hackboxguy",
"domoticz-hue-emulator",
"A set of scripts and configs to enable Amazon echo(alexa) based voice command integration with domoticz home server",
"main"
],
"TeslaDomoticz": [
"JanJaapKo",
"TeslaDomoticz",
"Integrates TeslaPy into Domoticz",
"main"
],
"evcc_domoticz": [
"enboer",
"evcc_domoticz",
"EVCC integration with Domoticz",
"main"
],
"LionTasmoticz": [
"Lion251",
"LionTasmoticz",
"Autodetecting Tasmota/Domoticz integration, with special support for BLE thermo/hygrometers",
"main"
],
"psacc-domoticz": [
"Tatroxitum",
"psacc-domoticz",
"Integration of psa_car_controller into domoticz",
"main"
],
"mqtt-rainbird": [
"KD377",
"mqtt-rainbird",
"This is the python project used for integrating rainbird with domoticz using mqtt auto discovery",
"main"
],
"FF_WeatherStation": [
"FlyingDomotic",
"FF_WeatherStation",
"Integrates Lidl Weather station (SM-041/EM3390A) into MQTT and Domoticz",
"main"
],
"shelly-domoticz-bridge": [
"darton",
"shelly-domoticz-bridge",
"Middleware system for integrating Shelly devices with Domoticz.",
"main"
],
"domoticz-atlantic-cozytouch": [
"dzooli",
"domoticz-atlantic-cozytouch",
"A port of Atlantic Cozytouch integration of HA to Domoticz",
"master"
],
"rp2040pico-w_BME680": [
"len-sla",
"rp2040pico-w_BME680",
"Smart Sensor Hub: Pico W & BME680 Integration How to equip Pico W with lightweigt http, MQTT and TinyML ( tfl micro) example with Bosch BME680 sensor (I2C)",
"main"
],
"FF_Radar": [
"FlyingDomotic",
"FF_Radar",
"Integration of LD2450 radar module into HTTP, MQTT and/or Domoticz",
"main"
],
"TeslaApiDomoticz": [
"JanJaapKo",
"TeslaApiDomoticz",
"Integrates TeslaAPI into Domoticz",
"main"
],
"Domoticz-WThermostatBeca": [
"mvdklip",
"Domoticz-WThermostatBeca",
"Domoticz plugin to integrate a BHT thermostat running WThermostatBeca firmware",
"master"
],
"Domoticz-Hewalex": [
"mvdklip",
"Domoticz-Hewalex",
"Domoticz plugin to integrate Hewalex solar and heat pumps",
"master"
],
"domoticz-openDTU": [
"belzetrigger",
"domoticz-openDTU",
"Scripts to integrate live data from openDTU API into domoticz. So easily show your Hoymiles inverter and pannels/trackers as devices. as ",
"main"
],
"domoticz-homematicip-workbook": [
"rwbl",
"domoticz-homematicip-workbook",
"Guide on how to integrate eQ-3 Homematic CCU3 with selected Homematic IP Devices into Domoticz Home Automation System.",
"main"
],
"Domoticz-with-ChatGPT-integration": [
"LemmeDasker",
"Domoticz-with-ChatGPT-integration",