13 lines
189 B
C
13 lines
189 B
C
#ifndef __MAIN_H_
|
|
#define __MAIN_H_
|
|
|
|
#include "nvs_flash.h"
|
|
|
|
#define PUMP_COUNT (4)
|
|
|
|
static xQueueHandle gpio_evt_queue = NULL;
|
|
nvs_handle_t config_handle;
|
|
|
|
extern uint8_t mac[6];
|
|
|
|
#endif
|