Compare commits
No commits in common. "a2a7521e1db6375c699ecd3a7cad13689761dc2b" and "4e56888e49a7d92ae07a59a47d62ae34b4294460" have entirely different histories.
a2a7521e1d
...
4e56888e49
3 changed files with 21 additions and 32 deletions
|
@ -32,7 +32,7 @@ int main() {
|
||||||
#endif
|
#endif
|
||||||
printf("Firmware version: %s\n", PROJECT_VERSION);
|
printf("Firmware version: %s\n", PROJECT_VERSION);
|
||||||
|
|
||||||
// WS2812 led(WS2812_PIN);
|
WS2812 led(WS2812_PIN);
|
||||||
|
|
||||||
wifi_enable(); // Enable Wifi in order to set time and retrieve data
|
wifi_enable(); // Enable Wifi in order to set time and retrieve data
|
||||||
|
|
||||||
|
@ -89,16 +89,13 @@ int main() {
|
||||||
printf("%d-%02d-%02d %02d:%02d.%02d\n", dt.year, dt.month, dt.day, hour, dt.min, dt.sec);
|
printf("%d-%02d-%02d %02d:%02d.%02d\n", dt.year, dt.month, dt.day, hour, dt.min, dt.sec);
|
||||||
|
|
||||||
// If there was a waste bin pickup found AND we are in the evening (>= 18:00) …
|
// If there was a waste bin pickup found AND we are in the evening (>= 18:00) …
|
||||||
if (it != dates.end() && hour >= 18 && hour < 23) {
|
if (it != dates.end() && hour >= 18) {
|
||||||
auto wasteDate = *it;
|
auto wasteDate = *it;
|
||||||
size_t count{0};
|
size_t count{0};
|
||||||
auto currentTime = time_us_64();
|
auto currentTime = time_us_64();
|
||||||
while (currentTime < timestamp) {
|
while (currentTime < timestamp) {
|
||||||
size_t index = count % wasteDate.wasteTypes.size();
|
size_t index = count % wasteDate.wasteTypes.size();
|
||||||
|
|
||||||
{
|
|
||||||
WS2812 led(WS2812_PIN);
|
|
||||||
|
|
||||||
switch (wasteDate.wasteTypes.at(index)) {
|
switch (wasteDate.wasteTypes.at(index)) {
|
||||||
case Waste::GelberSack:
|
case Waste::GelberSack:
|
||||||
led.switchColor(Color::YELLOW);
|
led.switchColor(Color::YELLOW);
|
||||||
|
@ -116,7 +113,6 @@ int main() {
|
||||||
led.switchColor(Color::GREEN);
|
led.switchColor(Color::GREEN);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
auto timeLeft = timestamp - currentTime;
|
auto timeLeft = timestamp - currentTime;
|
||||||
|
|
||||||
|
@ -131,10 +127,7 @@ int main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
{
|
|
||||||
WS2812 led(WS2812_PIN);
|
|
||||||
led.blinkReady();
|
led.blinkReady();
|
||||||
}
|
|
||||||
sleep_until(static_cast<absolute_time_t>(timestamp));
|
sleep_until(static_cast<absolute_time_t>(timestamp));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
#include "ws2812.h"
|
#include "ws2812.h"
|
||||||
|
|
||||||
WS2812::WS2812(uint gpio, PIO pio, uint sm) : m_pio{pio}, m_sm{sm} {
|
WS2812::WS2812(uint gpio, PIO pio, uint sm) : m_pio{pio}, m_sm{sm} {
|
||||||
m_offset = pio_add_program(m_pio, &ws2812_program);
|
uint offset = pio_add_program(m_pio, &ws2812_program);
|
||||||
ws2812_program_init(m_pio, m_sm, m_offset, gpio, 800000, true);
|
ws2812_program_init(m_pio, m_sm, offset, gpio, 800000, true);
|
||||||
switchColor(Color::OFF);
|
switchColor(Color::OFF);
|
||||||
}
|
}
|
||||||
|
|
||||||
WS2812::~WS2812() { pio_remove_program(m_pio, &ws2812_program, m_offset); }
|
|
||||||
|
|
||||||
void WS2812::switchColor(Color color) { putPixel(static_cast<uint32_t>(color)); }
|
void WS2812::switchColor(Color color) { putPixel(static_cast<uint32_t>(color)); }
|
||||||
|
|
||||||
void WS2812::blinkReady() {
|
void WS2812::blinkReady() {
|
||||||
|
|
|
@ -17,7 +17,6 @@ enum class Color : uint32_t {
|
||||||
class WS2812 {
|
class WS2812 {
|
||||||
public:
|
public:
|
||||||
WS2812(uint gpio, PIO pio = pio0, uint sm = 0);
|
WS2812(uint gpio, PIO pio = pio0, uint sm = 0);
|
||||||
virtual ~WS2812();
|
|
||||||
void switchColor(Color color);
|
void switchColor(Color color);
|
||||||
void blinkReady();
|
void blinkReady();
|
||||||
|
|
||||||
|
@ -25,5 +24,4 @@ class WS2812 {
|
||||||
void putPixel(uint32_t pixel_rgb);
|
void putPixel(uint32_t pixel_rgb);
|
||||||
PIO m_pio;
|
PIO m_pio;
|
||||||
uint m_sm;
|
uint m_sm;
|
||||||
uint m_offset{0};
|
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue