File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,8 @@ lib_ignore =
134
134
135
135
[core]
136
136
; *** Esp8266 Tasmota modified Arduino core based on core 2.7.4. Added Backport for PWM selection
137
- platform = https://github.com/tasmota/platform-espressif8266/releases/download/2024.06.00/platform-espressif8266.zip
137
+ ; platform = https://github.com/tasmota/platform-espressif8266/releases/download/2024.06.00/platform-espressif8266.zip
138
+ platform = https://github.com/tasmota/platform-espressif8266/releases/download/2024.09.00/platform-espressif8266.zip
138
139
platform_packages =
139
140
build_unflags = ${esp_defaults.build_unflags}
140
141
build_flags = ${esp82xx_defaults.build_flags}
Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ lib_ignore = ${esp32_defaults.lib_ignore}
83
83
84
84
[core32]
85
85
platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.09.10/platform-espressif32.zip
86
+ ; platform = https://github.com/tasmota/platform-espressif32/releases/download/2024.09.30/platform-espressif32.zip
86
87
platform_packages =
87
88
build_unflags = ${esp32_defaults.build_unflags}
88
89
build_flags = ${esp32_defaults.build_flags}
Original file line number Diff line number Diff line change 4
4
#include <stdint.h>
5
5
#include "soc/soc_caps.h"
6
6
7
- #define PIN_NEOPIXEL 8
7
+ #define PIN_RGB_LED 8
8
8
// BUILTIN_LED can be used in new Arduino API digitalWrite() like in Blink.ino
9
- static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + PIN_NEOPIXEL ;
9
+ static const uint8_t LED_BUILTIN = SOC_GPIO_PIN_COUNT + PIN_RGB_LED ;
10
10
#define BUILTIN_LED LED_BUILTIN // backward compatibility
11
11
#define LED_BUILTIN LED_BUILTIN // allow testing #ifdef LED_BUILTIN
12
- // RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API neopixelWrite ()
12
+ // RGB_BUILTIN and RGB_BRIGHTNESS can be used in new Arduino API rgbLedWrite ()
13
13
#define RGB_BUILTIN LED_BUILTIN
14
14
#define RGB_BRIGHTNESS 64
15
15
You can’t perform that action at this time.
0 commit comments