generated from sirlilpanda/kicad-project-template-actionless
reverted
This commit is contained in:
@@ -9,54 +9,6 @@
|
|||||||
#include "esp_system.h"
|
#include "esp_system.h"
|
||||||
|
|
||||||
|
|
||||||
#define LED_STRIP 38
|
|
||||||
|
|
||||||
typedef union {
|
|
||||||
|
|
||||||
struct {
|
|
||||||
uint8_t g;
|
|
||||||
uint8_t r;
|
|
||||||
uint8_t b;
|
|
||||||
};
|
|
||||||
|
|
||||||
struct {
|
|
||||||
uint8_t g0 : 1;
|
|
||||||
uint8_t g1 : 1;
|
|
||||||
uint8_t g2 : 1;
|
|
||||||
uint8_t g3 : 1;
|
|
||||||
uint8_t g4 : 1;
|
|
||||||
uint8_t g5 : 1;
|
|
||||||
uint8_t g6 : 1;
|
|
||||||
uint8_t g7 : 1;
|
|
||||||
uint8_t r0 : 1;
|
|
||||||
uint8_t r1 : 1;
|
|
||||||
uint8_t r2 : 1;
|
|
||||||
uint8_t r3 : 1;
|
|
||||||
uint8_t r4 : 1;
|
|
||||||
uint8_t r5 : 1;
|
|
||||||
uint8_t r6 : 1;
|
|
||||||
uint8_t r7 : 1;
|
|
||||||
uint8_t b0 : 1;
|
|
||||||
uint8_t b1 : 1;
|
|
||||||
uint8_t b2 : 1;
|
|
||||||
uint8_t b3 : 1;
|
|
||||||
uint8_t b4 : 1;
|
|
||||||
uint8_t b5 : 1;
|
|
||||||
uint8_t b6 : 1;
|
|
||||||
uint8_t b7 : 1;
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
} LedData_t;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void writeLedData(LedData_t data) {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void app_main(void)
|
void app_main(void)
|
||||||
{
|
{
|
||||||
printf("Hello world!\n");
|
printf("Hello world!\n");
|
||||||
@@ -93,33 +45,7 @@ void app_main(void)
|
|||||||
printf("Restarting now.\n");
|
printf("Restarting now.\n");
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
|
|
||||||
|
esp_restart();
|
||||||
LedData_t led_1 = {
|
|
||||||
.r = 255,
|
|
||||||
.g = 0,
|
|
||||||
.b = 0,
|
|
||||||
};
|
|
||||||
LedData_t led_2 = {
|
|
||||||
.r = 255,
|
|
||||||
.g = 128,
|
|
||||||
.b = 0,
|
|
||||||
};
|
|
||||||
LedData_t led_3 = {
|
|
||||||
.r = 255,
|
|
||||||
.g = 255,
|
|
||||||
.b = 0,
|
|
||||||
};
|
|
||||||
LedData_t led_4 = {
|
|
||||||
.g = 255,
|
|
||||||
.b = 0,
|
|
||||||
.r = 0,
|
|
||||||
};
|
|
||||||
LedData_t led_5 = {
|
|
||||||
.g = 0,
|
|
||||||
.b = 255,
|
|
||||||
.r = 0,
|
|
||||||
};
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user