Merge with master

This commit is contained in:
Sebastien
2020-01-15 12:23:55 -05:00
16 changed files with 119 additions and 18 deletions

View File

@@ -19,7 +19,7 @@
#define BATTERY_TIMER (10*1000)
static const char TAG[] = "battery";
static const char *TAG = "battery";
static struct {
float sum, avg;

View File

@@ -21,7 +21,7 @@
#define MAX_LED 8
#define BLOCKTIME 10 // up to portMAX_DELAY
static const char TAG[] = "led";
static const char *TAG = "led";
static struct led_s {
gpio_num_t gpio;

View File

@@ -26,7 +26,7 @@
#define MONITOR_TIMER (10*1000)
static const char TAG[] = "monitor";
static const char *TAG = "monitor";
static TimerHandle_t monitor_timer;