Pouziti nove tridy pro rizeni preruseni (soucast ESPFoundation Gen2)
This commit is contained in:
parent
13d2b01e5c
commit
237b871a56
@ -1,5 +1,6 @@
|
||||
// Ovladani signalizacni chytre LED diody
|
||||
#include "WSLed.hpp"
|
||||
#include <Interrupts.hpp>
|
||||
#if defined(ARDUINO_ARCH_ESP32)
|
||||
// # include "esp_task.h"
|
||||
// https://github.com/JSchaenzle/ESP32-NeoPixel-WS2812-RMT/blob/master/ws2812_control.c
|
||||
@ -65,13 +66,13 @@ void wsLED::show()
|
||||
ESP_ERROR_CHECK(rmt_write_items(LED_RMT_TX_CHANNEL, led_data_buffer, LED_BUFFER_ITEMS, false));
|
||||
mEndTime = micros() + 100; // TODO: unfortunately this time is not valid for ESP32 using RMT peripheral
|
||||
#else
|
||||
noInterrupts();
|
||||
IntCtrl.disable();
|
||||
#if defined(WSLED_PL9823)
|
||||
espShow(mPin, color, 1 * 3, false);
|
||||
#else
|
||||
espShow(mPin, color, 1 * 3, true);
|
||||
#endif
|
||||
interrupts();
|
||||
IntCtrl.enable();
|
||||
mEndTime = micros();
|
||||
#endif
|
||||
}
|
||||
|
@ -148,7 +148,7 @@ class wsLED {
|
||||
|
||||
void show();
|
||||
void setColor(const LEDRGB & color);
|
||||
bool canShow() const;
|
||||
[[nodiscard]] bool canShow() const;
|
||||
|
||||
public:
|
||||
wsLED(int pin, int order = RGB);
|
||||
|
Loading…
Reference in New Issue
Block a user