File tree Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Expand file tree Collapse file tree 3 files changed +48
-2
lines changed Original file line number Diff line number Diff line change 1
1
name : Publish wiki
2
2
on :
3
3
push :
4
- branches :
5
- - 2025.2.1
6
4
paths :
7
5
- wiki/**
8
6
- .github/workflows/wiki.yaml
Original file line number Diff line number Diff line change
1
+ # Using esp-idf instead of arduino framework
2
+
3
+ ** Skill-level:** high
4
+
5
+ ** minimum version** 2025.5.1
6
+
7
+ For some reasons it might be neccassery to ise the esp idf instead of the arduino framework.
8
+
9
+ There are some dependencies
10
+
11
+ change the esp32: section like this
12
+
13
+ ``` yaml
14
+ esp32 :
15
+ board : esp32dev
16
+ framework :
17
+ type : esp-idf
18
+ version : recommended
19
+ ` ` `
20
+
21
+ remove the ` neopixelbus` light
22
+
23
+ ` ` ` yaml
24
+ light:
25
+ #removve
26
+ - platform: neopixelbus
27
+ ` ` `
28
+
29
+ and replace it with an `esp32_rmt_led_strip`
30
+ ` ` ` yaml
31
+ light:
32
+ - platform: esp32_rmt_led_strip
33
+ id: ehmtx_light
34
+ rgb_order: GRB
35
+ pin: $matrix_pin
36
+ num_leds: 256
37
+ chipset: ws2812
38
+ name: "$devicename Light"
39
+ restore_mode: ALWAYS_OFF
40
+ ` ` `
41
+
42
+ # # Limitations
43
+ the fire plugin and the rainbow shimmer text does not work with tthis settings
44
+
45
+ **Use this hint at your own risk**
46
+
47
+ Good luck!
Original file line number Diff line number Diff line change 16
16
- [ Problem with own services in the yaml] ( problem-with-text-as-variable-name )
17
17
- [ Display RTL text] ( rtl-text )
18
18
- [ overview of default icons] ( default_icons.html )
19
+ - [ using esp-idf] ( esp_idf.html )
19
20
20
21
## Intermediate & Advanced Configuration
21
22
You can’t perform that action at this time.
0 commit comments