barback32/include/main.h

14 lines
189 B
C
Raw Normal View History

2020-04-23 01:22:42 -04:00
#ifndef __MAIN_H_
#define __MAIN_H_
2020-04-23 01:43:27 -04:00
#include "nvs_flash.h"
2020-10-13 00:33:29 -04:00
#define PUMP_COUNT (4)
2020-04-23 01:22:42 -04:00
2020-10-25 22:49:14 -04:00
static xQueueHandle gpio_evt_queue = NULL;
2020-10-25 23:21:07 -04:00
nvs_handle_t config_handle;
2020-04-23 01:43:27 -04:00
2020-10-25 22:49:14 -04:00
extern uint8_t mac[6];
2020-04-23 01:43:27 -04:00
2020-04-23 01:22:42 -04:00
#endif