Skip to content

Commit 3c792fa

Browse files
committed
updated wiki
1 parent fe2072c commit 3c792fa

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

.github/workflows/wiki.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
name: Publish wiki
22
on:
33
push:
4-
branches:
5-
- 2025.2.1
64
paths:
75
- wiki/**
86
- .github/workflows/wiki.yaml

wiki/esp-idf.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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!

wiki/home.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
- [Problem with own services in the yaml](problem-with-text-as-variable-name)
1717
- [Display RTL text](rtl-text)
1818
- [overview of default icons](default_icons.html)
19+
- [using esp-idf](esp_idf.html)
1920

2021
## Intermediate & Advanced Configuration
2122

0 commit comments

Comments
 (0)