updated the clock to show special I LOVE YOU date messages

tweaked the LED strip for more stability
This commit is contained in:
Matthias Mitscherlich
2024-03-29 10:42:33 +01:00
parent 22cdad69fc
commit 9cbd2232a3
4 changed files with 43 additions and 9 deletions
+1
View File
@@ -67,6 +67,7 @@ prgm_ledstrip::prgm_ledstrip(uint32_t numberOfLEDs, uint32_t gpio) : numberOfLED
rmt_config.clk_src = RMT_CLK_SRC_DEFAULT; // different clock source can lead to different power consumption
rmt_config.resolution_hz = 10 * 1000 * 1000; // 10MHz
rmt_config.flags.with_dma = false; // whether to enable the DMA feature
rmt_config.mem_block_symbols = 128;
#endif
ESP_ERROR_CHECK(led_strip_new_rmt_device(&strip_config, &rmt_config, &led_strip));
}