-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplatformio_override.ini
6143 lines (5299 loc) · 240 KB
/
platformio_override.ini
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
; *** Example PlatformIO Project Configuration Override File ***
; *** Changes done here override settings in platformio.ini ***
;
; *****************************************************************
; *** to activate rename this file to platformio_override.ini ***
; *****************************************************************
; pio boards espresif32 ## this is the command to get the list of boards
;
; Please visit documentation for the options and examples
; http://docs.platformio.org/en/stable/projectconf.html
[platformio]
; platformio device monitor --port COM10
; *** Build/upload environment
default_envs =
; *** Uncomment the line(s) below to select version(s)
; devflash_esp8266_lowspace
;;; Home Long Term (only active devices) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Hallway / UnderStairs
; wh_radfan
; wh_dhall
; wh_socket_15
; wh_hvac_home
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Landing
; wh_dimland
; wh_immerson_cont
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; TV/Spare Room
; wh_dimmer_tvroom
; wh_tvroom_uplights
; wh_ambilight_spareroom
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Ensuite
; wh_ensuite_sensor
; wh_ceiling_ensuite
; wh_ensuite_fan
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Master Bedroom
; wh_ceiling_mbedroom
; ; whitehall_masterbedroomsensor ;; not yet created
; wh_hvac_masterbedroom
; wh_dresser_lights
; wh_mbedroom_lamp1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Kitchen
; wh_kitsen
; wh_kitchenlight1
; wh_kitchenlight2
; wh_kitchenlight3
; wh_kitchenlight4
; wh_cooker_fan
; wh_rgbcooker
; wh_rgbfridge
; wh_rgbglassbox
; wh_rgbshelf
; nextion_kitchen
; wh_hvac_kitchen
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Utility
; wh_utilsens
; wh_rgbutility
; wh_rgblamp_cylinder
; wh_utility_i4
; tasmota32solo1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Livingroom
; wh_livingroom_lamp1
; wh_livingroom_lamp2
; wh_livingroomsensor
; wh_rgbfireplace
; whitehall_dimmer_living_lamp1
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Garage
; wh_oiltank
; wh_oilfurnace
; wh_garagelight
; wh_garage_transceiver
; wh_dim_garagespot
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Gazebo
; wh_gazebo_4chpro
; wh_gazebosensor
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Outside
; wh_sidelight
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Bathroom
; wh_bathroom_sensor
; wt_portable_sensor
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Downstairs Toilet
; wh_consumerunit
; wh_consumerunit_25
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Attic
; wh_atticsensor
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Bedroom
; wh_bedroomsensor
; wh_ceilingfan
; wh_dimbrc
; tb_dimtest
; wh_clockbed
; wh_broom_louv_hub
; wh_dr0
; wt_bedroom_rgbdisplay
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; Wireless/Roaming
; wh_airpurifier
; wh_floorfan1
; wh_floorfan2
; wh_floorfan3
; wh_floorfan4
; wh_floorfan5
; wh_floorfan6 # unused, but flashing while 5 is done
; wh_sonoff_number_01
; wh_sonoff_number_02
; wh_sonoff_number_05
; wh_sonoff_number_06
; wh_sonoff_number_07
; wh_sonoff_number_08
; wh_sonoff_number_09
; wh_sonoff_number_12
; wh_sonoff_number_16
; wh_sonoff_number_20
; wh_sonoff_number_21
; wh_sonoff_number_22
; wh_sonoff_number_23
; wh_sonoff_number_24
;;;;;;;new 2024 devices ;;; 50+ are now esp32 devices
; wh_sonoff_number32c3_50
; wh_sonoff_number_101
; wh_sonoff_number_26
; wh_sonoff_number_27
; wh_sonoff_number_28
;;; Home Temporary Devices ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; wht_br_but
; wht_black_stand
; wht_bedroom_bedlight
; wht_computer_u25
; wht_computer_p32
; wht_display_outbedroom
; wht_bedr_wardrobe
; wt_desksensor
; tb_camera_sensor
; tb_testbed_sr04
; wt_webserver_esp82
; wht_bedroom_desk
; wht_rgb_glassheart
; wh_clock_tv
; wh_hvac_oil_heater
; wh_hvac_broom_hairdryer
; wh_rgbdis_weight
; tb_esp32_sim800l
; tb_esp32_buzzer
; wh_mbedroom_wardrobe
; tb_h801v2_2023
;;;;2023 active dev list
; tb_esp32_sim7000g
; tb_esp32_sim7000g_v2
; tb_cellular_locator_02
; tb_mavlink_decoder
; tb_mavlink_telemetry_wifi
; tb_mavlink_flightready_cellular_01
;;;;;;; Making the neopixel code working with multipin
; tb_neopixel_multipin
; tb_multi_h801
;;; Standard esp32 for multiple mqtt brokers
; tb_mqtt_multiple_01
;;; Built locator sealed sim1
; tb_multi_cellular_locator_01
;;; Quad MAVLink flying sim2
; tb_mavlink_decoder_cellular_01
; tb_multi_cellular_locator_02
;;;;; LIPO split, currently on planes
; tb_multi_cellular_locator_03
; tb_cellular2024__gps_locator_9000G_01 ; with battery, ground tracker
; tb_cellular2024__gps_locator_9000G_02 ; no battery, aircraft tracker
; tb_cellular2024__gps_locator_800L_03 ; 800L to try smaller modem with GPS seperated
; ht_tinygsm_polling
;;;;; Testing improvements in LTE mqtt on standard mqtt to keep integration working
; tb_multi_cellular_locator_04
;;;;;
; tb_nextion_7inch
; tb_nextion_treadmill_01
; tb_nextion_treadmill_02
; nextion_kitchen_tb
; wh_prusa_heater
; dev_treadmill_power
; dev_matrix
; tmp_lgt__hyperion_samsung_65inch
;;; Active Development ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; hvac_desk
; tb_nextion_10inch
; dev_desksensor
; dev_night_flight
; rel_night_flight
; tb_ultrasonic
; tmp_lgt__matSegs
; ad_door_light_office
; ad_hallway_flowers
; dev_gps_serial
; ad_swt_and_but
; tb_desk_sensor
;;; Example/Template Devices ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tb_validation_nextion
;;; Example/Template Devices ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; ex_radio_rx
;;; Development Devices ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tb_webcam_v4
; tb_webcam_arduino
; tb_neopixel_notifications
; tb_rgbclock_testclock
; tb_settings_storage
; tb_filesystem
;;; Development TestGroups ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;; testgroup_lighting_multipin ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_multipin_h801_5white
; tg_multipin_h801_splitrgbcct
; tg_multipin_e32_2neopins
;;;; testgroup_somthinglese ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_multipin_h801_5white
; tg_multipin_h801_splitrgbcct
; tg_multipin_e32_2neopins
;;; DevelopingByTypes: Lighting ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; - add these, and only these into the header DevelopingByTypes, any lights based on them should be in the normal files ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;; ESP32 ;;;;;;;;;;;;;;;;
; tg_lgt__01_esp32_1pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__01__ESP32_1CH ; original, no parallel
; tg_lgt__02_esp32_4pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__02__ESP32_PARALLEL_4CH ; garage (100 x4) - this could become the garden lights for a practical test
; tg_lgt__03_esp32_8pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__03__ESP32_PARALLEL_8CH ; garage (100 x8)
; tg_lgt__04_esp32_16pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__04__ESP32_PARALLEL_16CH ; garage (100 x16)
; tg_lgt__05_esp32_4pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__05__ESP32_PARALLEL_4CH_VARIED_BUSTYPE ; varied strings (ws2812, sk6812)
; tg_lgt__06_esp32_ws2805 ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__06__ESP32_1CH_WS2805_3X ; new RGBCCT 3X 12V pixels
; tg_lgt__07_esp32_7segclock ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__07__ESP32_1CH_7SEGMENTCLOCK ; ESP32 testing 3D printed 7 segment clock -- make one for the garage as the tester, not the bedroom
; tg_lgt__08_esp32_giveaway_noweb ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__08__ESP32_1CH_NOWEBUI ; ESP32 - Single Bus - Single Segment - 100 rgb leds
; tg_lgt__09_esp32_1pin_playlists ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__09__ESP32_1CH_PLAYLISTS ; Built for developing and testing playlists for use on outside tree etc
; tg_lgt__10_esp32_effects_ring ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__10__ESP32_EFFECTS_SERIAL_RING ; Built for developing and testing playlists for use on outside tree etc
; tg_lgt__11_esp32_effects_16grid ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__11__ESP32_EFFECTS_16SEGMENTS_ON_GRID
; tg_lgt__12_esp32_32bit_wrgb ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__12__ESP32_32BIT_WRGB_TIME_OPTIMISE
; tg_lgt__13_esp32_32bit_rgbcct ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__13__ESP32_32BIT_RGBCCT_TIME_OPTIMISE
; tg_lgt__14_esp32_giveaway_apmode ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__14__ESP32_FULL_AP_MODE ; ESP32 - Single Bus - Single Segment - 100 rgb leds
; tg_lgt__20_esp32_matrix_16x16 ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__20__ESP32_1CH_MATRIX_16X16 ; ESP32 testing 16x16 matrix
; tg_lgt__21_esp32_matrix_32x8 ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__21__ESP32_1CH_MATRIX_32X8 ; ESP32 testing 32x8 matrix
; tg_lgt__22_esp32_matrix_python ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__22__ESP32_4CH_MATRIX_PYTHON_MANUAL_ROWS ; ESP32 testing 32x8 matrix
; tg_lgt__30_h321_rgbcct ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__30__ESP32_PWM_RGBCCT_5CH_RGBCCT ; under desk, with ws2805
; tg_lgt__31_h321_2cct ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__31__ESP32_PWM_RGBCCT_2x2CH_WHITE_CHANNELS ; For testing the dual white channels
; tg_lgt__32_h321_5w ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__32__ESP32_PWM_RGBCCT_5x1CH_WHITE_CHANNELS ; For testing single white channels
; tg_lgt__41_esp32_4pin_dev ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__41__ESP32_PARALLEL_4CH_DEV ; desk/wall testbed (10 leds per channel)
; tg_lgt__42_h321_rgbcct_dev ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__42__ESP32_PWM_RGBCCT_5CH_RGBWW_DEV ; Desk/under Testbed - do sun elevation white control
;;;;;;;;;;;; ESP8266 ;;;;;;;;;;;;;;;;
; tg_lgt__50_esp82_1pin ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__50__ESP82_1CH ; ESP8266 - Single Bus - Single Segment - 100 rgb leds
; tg_lgt__51_esp82_1pin_noweb ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__51__ESP82_1CH_NOWEB ; ESP8266 - Single Bus - Single Segment - 100 rgb leds
; tg_lgt__52_h801_rgbcct ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__52__ESP82_H801_5CH_PWM_RGBCCT ; normal H801
; tg_lgt__53_esp82_low_memory ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__53__ESP82_LOW_MEMORY ; for developing the lighting module with low memory, this will enable it to be used in complex systems with many other modules
; tg_lgt__54_minimal_ota_midstage ; DEVICE_TESTGROUP__LIGHTING_EFFECTS__54__ESP82_MINIMAL_OTA_MIDSTAGE ; for developing the lighting module with low memory, this will enable it to be used in complex systems with many other modules
;;;;;;;;;;;;; SubGroup ;;;;;;;;;;;;; device 60, rebuilding from related codebase for variation testing
tg_lgt__60_sgrp__wrgb
; tg_lgt__60_sgrp__rgbww
; tg_lgt__60_sgrp__rgb_pebble
; tg_lgt__60_sgrp__matrix16x16
; tg_lgt__60_sgrp__wrgb_2x
; tg_lgt__60_sgrp__wrgb_4x
; wh_consumerunit_25 ; temp down here to switch easier
;;; DevelopingByTypes: HVAC ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; - HVAC controllers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_hvac_oil_rad01
;;; DevelopingByTypes: PZEM ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; - PZEM controllers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_pzem_socket_energy01
;;; DevelopingByTypes: Cellular ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; - Devices with a modem connection ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_cellular_800L_office_testbed
;;; built using TemplateGroup: Built using templates ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; tg_lgt__02_esp32_4pin__1000led_tester
; tg_lgt__70_esp32_4pin__4output_triple ;; Garage 3 multiconnector tester, 1X 1000 output.
; tg_lgt__07_esp32__treadmill_tester
; tb_xiao_camera
;;; Christmas 2023: Garage Lighting ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmas23_kitchen_shelf
; xmas23_outsidetree
; xmas23_outsidetree_debug
; xmas23_snowtree
; xmas23_outside_wreath ; shimmer would look great
; xmas23_bauble4pin
; xmas23_redgive_nonetwork
; xmas23_utilityshelf
; xmas23_frontsnowtree
; xm_water
;;; Christmas 2024: Testing ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;; ATTIC with lights attached
; xmas24__final__4x_green
; xmas24__final__8x_red
; xmas24__final__16x_snow_tree
; xmas24__final__8x_outside_tree
; xmas24__final__16x_outside_tree
; tb_xmas24__final__16x_outside_tree
; xmas24__final__4x_sidedoor_wreath
; xmas24__final__snow_silver
; xmas24__final__16x_sidedoor_tree
; xmas24_water
;;add rgbcct ws2805 on the bed, top of it, facing upwards as uplights.
;; better would be against the wall but maybe not going to wake me.
;;;;;;;; All desk tests, ie no lights attached
; xmas24_tb__outtree_x8
; xmas24_tb__outtree_x16_01
; xmas24_tb__outtree_x16_02
; xmas24_tb__snow8ft_x16
; xmas23_tb__outtree_x8_sweep ; test hung lights using 2023 hardware
;;; Christmas 2024: Final ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmas24_rl__outtree_x8
; xmas24_rl__outtree_x16
;;; Colorado 2024 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; xmas24__colorado__redboard_01
; xmas24__colorado__redboard_02
; xmas24__colorado__ring_01
; co24_swt_and_but
; xmas24__colorado__string_01
; xmas24__colorado__string_02
; xmas24__colorado__string_03
; xmas24__colorado__string_04
; xmas24__colorado__string_05
; xmas24__colorado__string_06
; xmas24__colorado__redboard_01_matrix
;;; Unsorted Devices To Be Phased Out ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
[common]
platform_packages = ${core.platform_packages}
build_unflags = ${core.build_unflags}
build_flags = ${core.build_flags}
; Build variant 1MB = 1MB firmware no filesystem (default)
;board_build.ldscript = eagle.flash.1m.ld
; Build variant 2MB = 1MB firmware, +744k OTA, 256k filesystem (Zigbee Bridge, most Shelly devices)
;board_build.ldscript = eagle.flash.2m256.ld
; Build variant 4MB = 1MB firmware, +1MB OTA, 2MB filesystem (WEMOS D1 Mini, NodeMCU, Sonoff POW)
;board_build.ldscript = eagle.flash.4m2m.ld
; Build variant 16MB = 1MB firmware, +1MB OTA, 14MB filesystem (WEMOS D1 Mini pro, Ledunia (=32MB))
;board_build.ldscript = eagle.flash.16m14m.ld
; set CPU frequency to 80MHz (default) or 160MHz
;board_build.f_cpu = 160000000L
; set Flash chip frequency to 40MHz (default), 20MHz, 26Mhz, 80Mhz
;board_build.f_flash = 20000000L
;board_build.f_flash = 26000000L
;board_build.f_flash = 80000000L
; *** Upload Serial reset method for Wemos and NodeMCU
upload_port = COM5
extra_scripts = ${scripts_defaults.extra_scripts}
; pio-tools/obj-dump.py
pio/strip-floats.py
pio/name-firmware.py
; pio/gzip-firmware.py
gzip_fw.py
pio/override_copy.py
lib_extra_dirs = ${library.lib_extra_dirs}
[core]
; Activate only (one set) if you want to override the standard core defined in platformio.ini !!!
;platform_packages = ${core_stage.platform_packages}
;build_unflags = ${core_stage.build_unflags}
;build_flags = ${core_stage.build_flags}
[core_stage]
; *** Esp8266 core for Arduino version stage
platform_packages = framework-arduinoespressif8266 @ https://github.com/esp8266/Arduino.git
; *** Use Xtensa build chain 10.2. GNU13 from https://github.com/earlephilhower/esp-quick-toolchain
mcspr/toolchain-xtensa @ 5.100200.201223
build_unflags = ${esp_defaults.build_unflags}
-Wswitch-unreachable
build_flags = ${esp82xx_defaults.build_flags}
; *** Use ONE of the two PWM variants. Tasmota default is Locked PWM
;-DWAVEFORM_LOCKED_PHASE
-DWAVEFORM_LOCKED_PWM
-Wno-switch-unreachable
[common32]
framework = ${common.framework}
platform = ${core32.platform}
platform_packages = ${core32.platform_packages}
build_unflags = ${core32.build_unflags}
build_flags = ${core32.build_flags}
board_build.filesystem = littlefs
custom_unpack_dir = unpacked_littlefs
upload_port = COM4
lib_extra_dirs = ${library.lib_extra_dirs}
lib/lib_custom
lib/libesp32
lib/lib_basic
lib/lib_basic
lib/lib_network
lib/lib_display
lib/lib_onewire2023
lib/lib_sensor
lib/lib_custom
lib/lib_wled32
lib/lib_custom
lib/lib_neopixel_june24_ws2805
lib/lib_i2c
lib/lib_energy
lib/lib_nextion_esp32_web
lib/lib_default
; [core32]
; ; Activate Stage Core32 by removing ";" in next 3 lines, if you want to override the standard core32
; ; platform_packages = ${core32_stage.platform_packages}
; ; build_unflags = ${core32_stage.build_unflags}
; ; build_flags = ${core32_stage.build_flags}
; [core32_stage]
; platform_packages = framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git
; platformio/tool-mklittlefs @ ~1.203.200522
; build_unflags = ${esp32_defaults.build_unflags}
; build_flags = ${esp32_defaults.build_flags}
; -DESP32_STAGE=true
; this is the working "core32"
[core32]
platform = [email protected]
;@ 3.2.0
platform_packages =
;platformio/tool-mklittlefs @ ~1.203.200522
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
[library]
shared_libdeps_dir = lib
; *** Library disable / enable for variant Tasmota(32). Disable reduces compile time
; *** !!! Disabling needed libs will generate compile errors !!!
; *** The resulting firmware will NOT be different if you leave all libs enabled
; *** Disabling by putting a ";" in front of the lib name
; *** If you dont know what it is all about, do not change
lib_extra_dirs =
; ; *** Only disabled for Tasmota minimal and Tasmota light. For all other variants needed!
; lib/lib_basic
; ; **** I2C devices. Most sensors. Disable only if you dont have ANY I2C device enabled
; lib/lib_i2c
; ; *** Displays. Disable if you dont have any Display activated
; lib/lib_display
; ; *** Bear SSL and base64. Disable if you dont have SSL or TLS activated
; lib/lib_ssl
; ; *** Audio needs a lot of time to compile. Mostly not used functions. Recommended to disable
; lib/lib_audio
; ; *** RF 433 stuff (not RF Bridge). Recommended to disable
; lib/lib_rf
; ; *** Mostly not used functions. Recommended to disable
; lib/lib_div
lib/libesp8266/network
lib/lib_network
lib/lib_basic
lib/lib_custom
lib/lib_basic
lib/lib_network
lib/lib_display
lib/lib_onewire2023
lib/lib_sensor
lib/lib_custom
lib/lib_wled32
lib/lib_custom
lib/lib_neopixel_june24_ws2805
lib/lib_i2c
lib/lib_energy
lib/lib_nextion_esp32_web
lib/lib_default
; *** EXPERIMENTAL Tasmota version for ESP32solo1 (used in some Xiaomi devices)
[env:tasmota32solo1]
extends = env:tasmota32_base
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/raw/framework-arduinoespressif32/framework-arduinoespressif32-release_v3.3-solo1-bd65eb8d1.tar.gz
platformio/tool-mklittlefs @ ~1.203.200522
platformio/tool-esptoolpy @ ~1.30000.0
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${common32.build_flags}
; *** EXPERIMENTAL Tasmota version for ESP32-S2
[env:tasmota32s2]
extends = env:tasmota32_base
board = esp32s2
board_build.flash_mode = qio
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/v.2.0.0.pre/framework-arduinoespressif32-master-cf457d412.tar.gz
platformio/tool-mklittlefs @ ~1.203.200522
platformio/tool-esptoolpy @ ~1.30000.0
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${common32.build_flags} -DFIRMWARE_LITE
lib_extra_dirs = lib/libesp32
lib_ignore =
NimBLE-Arduino
Micro-RTSP
ESP32-HomeKit
; *** EXPERIMENTAL Tasmota version for ESP32-C3
[env:tasmota32c3]
extends = env:tasmota32_base
board = esp32c3
platform = https://github.com/Jason2866/platform-espressif32.git#feature/arduino-c3
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/esp32-arduino-lib-builder/releases/download/v.2.0.0.pre/framework-arduinoespressif32-master-cf457d412.tar.gz
; needed toolchain for Windows
toolchain-riscv32 @ https://github.com/Jason2866/platform-espressif32/releases/download/8.4.0/riscv32-esp-elf-gcc8_4_0-crosstool-ng-1.24.0-123-g64eb9ff-win32.zip
; needed toolchain for Linux
;toolchain-riscv32 @ https://github.com/Jason2866/platform-espressif32/releases/download/8.4.0/riscv32-esp-elf-gcc8_4_0-crosstool-ng-1.24.0-123-g64eb9ff-linux-amd64.tar.gz
; needed toolchain for MacOS
;toolchain-riscv32 @ https://github.com/Jason2866/platform-espressif32/releases/download/8.4.0/riscv32-esp-elf-gcc8_4_0-crosstool-ng-1.24.0-123-g64eb9ff-macos.tar.gz
platformio/tool-mklittlefs @ ~1.203.200522
build_unflags = ${esp32_defaults.build_unflags} -mtarget-align
build_flags = ${esp32_defaults.build_flags} -DFIRMWARE_LITE
;-DESP32_STAGE=true
lib_extra_dirs = lib/libesp32
lib_ignore =
NimBLE-Arduino
Micro-RTSP
; *** EXPERIMENTAL Tasmota version for Arduino ESP32 IDF4.4. Linking not working.
[env:tasmota32idf4]
extends = env:tasmota32_base
platform = https://github.com/Jason2866/platform-espressif32.git#feature/arduino-idf-v4.4
platform_packages = framework-arduinoespressif32 @ https://github.com/Jason2866/arduino-esp32/releases/download/esp32-2.0.0-pre/esp32-2.0.0-pre.zip
platformio/tool-mklittlefs @ ~1.203.200522
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
;-DESP32_STAGE=true
; *** Debug version used for PlatformIO Home Project Inspection
[env:tasmota-debug]
build_type = debug
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
; -Wstack-usage=300
-D DEVI CE_RGBDESK
-w
[env:tasmota32-debug]
extends = env:tasmota32_base
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
; -Wstack-usage=300
[env:hacs32-debug]
extends = env:tasmota32_base
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
; -Wstack-usage=300
-D DEVICE_SDLOGGER1_TESTER
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
lib/lib_gps
lib/libesp32/network
lib/lib_network
[env:testbed_shelly2p5]
extends = env:whitehall_82
platform = ${core_2_6_1_1m.platform}
build_flags = ${core_2_6_1_1m.build_flags}
-D DEVICE_TESTBED_SHELLY_2P5
-w
; extra_scripts = gzip_fw.py
; upload_protocol = espota
; upload_port = 192.168.0.242
upload_port = COM18
[env:hacs32_webcam1]
extends = env:tasmota32_base
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D DEVICE_ESP32_WEBCAM1
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
lib/lib_gps
lib/libesp32/network
lib/lib_network
upload_port = COM5
[env:hacs32_webcam2]
extends = env:tasmota32_base
; build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D DEVICE_ESP32_WEBCAM2
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
lib/lib_gps
lib/libesp32/network
lib/lib_network
board = esp32cam
upload_port = COM8
monitor_filters = esp32_exception_decoder
build_type = debug
; upload_port = 192.168.1.114
[env:hacs32_webcam3]
extends = env:tasmota32_base
; build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D DEVICE_ESP32_WEBCAM3
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
; lib/lib_gps
; lib/libesp32/network
; lib/lib_network
; lib/libesp32/esp32-camera
board = esp32cam
upload_port = COM28
monitor_filters = esp32_exception_decoder
build_type = debug
; upload_port = 192.168.1.114
[env:hacs32_webcam4]
extends = env:tasmota32_base
; build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D DEVICE_ESP32_WEBCAM4
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
; lib/lib_gps
; lib/libesp32/network
; lib/lib_network
lib/libesp32/esp32-camera
; ~/Documents/Arduino/libraries
board = esp32cam
upload_port = COM22
; monitor_filters = esp32_exception_decoder
; build_type = debug
; platform = espressif32
; upload_protocol = espota
; upload_port = 192.168.1.114
; lib_extra_dirs = ~/Documents/Arduino/libraries
[env:hacs82-h801]
build_unflags = ${esp_defaults.build_unflags}
build_flags = ${esp82xx_defaults.build_flags}
; Defining name here allows mdns upload_port to use it
; -D DEVICE_EXAMPLE_H801
; Define the device on the next line (remove ; to enable)
; -D DEVICE_EXAMPLE_H801
; For Serial Uploads (remove ; to enable)
upload_port = COM1
; For OTA Uploads with IP (remove ; to enable)
; upload_protocol = espota
; extra_scripts = ${scripts_defaults.extra_scripts}
; gzip_fw.py
; upload_port = 192.168.1.124
; For OTA Uploads with MDNS Name eg DEVICE_EXAMPLE_H801 (remove ; to enable)
; upload_protocol = espota
; extra_scripts = ${scripts_defaults.extra_scripts}
; gzip_fw.py
; upload_port = h801_tester
[env:hacs32-bedroom_pzem_tester]
extends = env:tasmota32_base
build_type = debug
build_unflags = ${esp32_defaults.build_unflags}
build_flags = ${esp32_defaults.build_flags}
-D DEVICE_BEDROOM_PZEM_TESTER
-w
lib_extra_dirs = ${common32.lib_extra_dirs}
lib/libesp32/network
lib/lib_network
; extra_scripts = gzip_fw.py
; upload_protocol = espota
; upload_port = 192.168.1.137
; upload_port = consumerunit.local
upload_port = COM5
monitor_filters = esp32_exception_decoder
[env:esp_32_gpsparser_tester_polling]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_GPSPARSER_TESTER_POLLING -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
; monitor_filters = esp32_exception_decoder
; build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_gpsparser_tester_interrupt]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_GPSPARSER_TESTER_INTERRUPT -Wcpp -w
lib_extra_dirs = lib/libesp32, , lib/lib_basic, lib/libesp32/network, lib/lib_network, lib/lib_gps
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
; monitor_filters = esp32_exception_decoder
; build_type = debug
upload_port = COM3
; upload_port = 192.168.1.210
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_sdlogger1_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_SDLOGGER1_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, , lib/lib_basic, lib/libesp32/network, lib/lib_network, lib/lib_gps, lib/lib_display
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
; monitor_filters = esp32_exception_decoder
; build_type = debug
; upload_port = COM5
upload_port = sdlogger1_tester
; upload_port = 192.168.1.210
upload_protocol = espota
extra_scripts = gzip_fw.py
[env:esp_32_uart_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_UART_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
; monitor_filters = esp32_exception_decoder
; build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_uart_gpsnmea_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_UART_GPS_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_uart_gpsubx_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_UART_GPSUBX_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_sdcard_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_SDCARD_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_sdcard_lipo_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_SDCARD_LIPO_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_gps_to_sdcard_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -D DEVICE_GPS_TO_SDCARD_TESTER -Wcpp -w
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
; upload_port = 192.168.1.171
; upload_protocol = espota
; extra_scripts = gzip_fw.py
[env:esp_32_measurement_system_1_tester]
extends = env:tasmota32_base
build_flags = ${esp32_defaults.build_flags} -Wcpp -w -Wconversion -Wpacked-bitfield-compat
; -D DEVICE_MEASUREMENT_SYSTEM_1
lib_extra_dirs = lib/libesp32, lib/lib_basic, lib/libesp32/network, lib/lib_network, lib/lib_display
lib_deps =
# RECOMMENDED
# Accept new functionality in a backwards compatible manner and patches
; slashdevin/NeoGPS @ ^4.2.9
; https://github.com/SlashDevin/NeoHWSerial
; PaulStoffregen/AltSoftSerial
; , lib/lib_arduinojson
; lib_extra_dirs = lib/libesp32
monitor_filters = esp32_exception_decoder
build_type = debug
upload_port = COM5
monitor_speed = 115200
; upload_port = 192.168.1.125
; upload_protocol = espota
; extra_scripts = gzip_fw.py