hey! its working
This commit is contained in:
parent
a2be203811
commit
85d2f27954
7 changed files with 311 additions and 75 deletions
|
@ -5,9 +5,8 @@
|
||||||
|
|
||||||
#define PUMP_COUNT (4)
|
#define PUMP_COUNT (4)
|
||||||
|
|
||||||
extern uint8_t mac[6];
|
static xQueueHandle gpio_evt_queue = NULL;
|
||||||
static uint8_t pump_gpio_map[] = { 27, 26, 25, 23 };
|
|
||||||
|
|
||||||
#define GPIO_PUMP_PIN_SEL ((1ULL<<pump_gpio_map[0]) | (1ULL<<pump_gpio_map[1]) | (1ULL<<pump_gpio_map[2]) | (1ULL<<pump_gpio_map[3]));
|
extern uint8_t mac[6];
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
25
include/pumps.h
Normal file
25
include/pumps.h
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#ifndef __PUMPS_H
|
||||||
|
#define __PUMPS_H
|
||||||
|
|
||||||
|
#include "stdint.h"
|
||||||
|
|
||||||
|
#define PUMPS (4)
|
||||||
|
#define PUMPS_ERR_OUT_IDX (1)
|
||||||
|
#define GPIO_PUMP_PIN_SEL ((1ULL<<pump_gpio_map[0]) | (1ULL<<pump_gpio_map[1]) | (1ULL<<pump_gpio_map[2]) | (1ULL<<pump_gpio_map[3]));
|
||||||
|
|
||||||
|
static uint8_t pump_gpio_map[] = { 27, 26, 25, 33 };
|
||||||
|
static uint8_t pumps_duration[PUMPS];
|
||||||
|
static uint8_t pumps_enabled[PUMPS];
|
||||||
|
static uint8_t pumps_state[PUMPS];
|
||||||
|
|
||||||
|
void pumps_run();
|
||||||
|
void pumps_stop();
|
||||||
|
uint8_t pumps_init();
|
||||||
|
|
||||||
|
uint8_t pumps_set_time(uint8_t idx, uint8_t time);
|
||||||
|
uint8_t pumps_get_time(uint8_t idx);
|
||||||
|
|
||||||
|
uint8_t pumps_set_enabled(uint8_t idx, uint8_t value);
|
||||||
|
uint8_t pumps_get_enabled(uint8_t idx);
|
||||||
|
|
||||||
|
#endif
|
|
@ -2,6 +2,7 @@ set(COMPONENT_SRCS "\
|
||||||
main.c\
|
main.c\
|
||||||
ble.c\
|
ble.c\
|
||||||
console.c\
|
console.c\
|
||||||
|
pumps.c\
|
||||||
user_button.c\
|
user_button.c\
|
||||||
")
|
")
|
||||||
set(COMPONENT_ADD_INCLUDEDIRS ". ../include")
|
set(COMPONENT_ADD_INCLUDEDIRS ". ../include")
|
||||||
|
|
148
main/ble.c
148
main/ble.c
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
#include "main.h"
|
#include "main.h"
|
||||||
#include "ble.h"
|
#include "ble.h"
|
||||||
|
#include "pumps.h"
|
||||||
|
|
||||||
#define TAG "BLE"
|
#define TAG "BLE"
|
||||||
#define CONFIG_CACO_MAX_SERVICES (10)
|
#define CONFIG_CACO_MAX_SERVICES (10)
|
||||||
|
@ -32,11 +33,18 @@ static event_callback_handle_t callback_handlers[CONFIG_CACO_MAX_SERVICES] = { 0
|
||||||
static int ble_gap_event(struct ble_gap_event *event, void *arg);
|
static int ble_gap_event(struct ble_gap_event *event, void *arg);
|
||||||
static uint16_t ble_svc_handle;
|
static uint16_t ble_svc_handle;
|
||||||
static int ble_svc_access(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
static int ble_svc_access(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||||||
static int svc_access_pump_enabled(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
|
||||||
static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||||||
|
static int svc_access_pump_enabled(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||||||
|
static int svc_access_pump_duration(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||||||
|
static int svc_access_system(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg);
|
||||||
|
|
||||||
#define BLE_SERVICE_PUMP_ENABLED (0x4200)
|
#define BLE_SERVICE_PUMP_ENABLED (0x4200)
|
||||||
#define BLE_SERVICE_PUMP_STATE (0x4300)
|
#define BLE_SERVICE_PUMP_STATE (0x4300)
|
||||||
|
#define BLE_SERVICE_PUMP_DURATION (0x4350)
|
||||||
|
|
||||||
|
#define BLE_SERVICE_BARBACK (0x4400)
|
||||||
|
#define CHAR_POUR (BLE_SERVICE_BARBACK + 1)
|
||||||
|
#define CHAR_BUTTON (BLE_SERVICE_BARBACK + 2)
|
||||||
|
|
||||||
#define BLE_CHAR_PUMP_ENABLED(idx) {\
|
#define BLE_CHAR_PUMP_ENABLED(idx) {\
|
||||||
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_ENABLED + idx),\
|
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_ENABLED + idx),\
|
||||||
|
@ -52,6 +60,13 @@ static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, str
|
||||||
.flags = BLE_GATT_CHR_F_NOTIFY | BLE_GATT_CHR_F_READ\
|
.flags = BLE_GATT_CHR_F_NOTIFY | BLE_GATT_CHR_F_READ\
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#define BLE_CHAR_PUMP_DURATION(idx) {\
|
||||||
|
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_DURATION + idx),\
|
||||||
|
.access_cb = svc_access_pump_duration,\
|
||||||
|
.val_handle = &ble_svc_handle,\
|
||||||
|
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_READ\
|
||||||
|
}
|
||||||
|
|
||||||
static const struct ble_gatt_svc_def service_defs[] = {
|
static const struct ble_gatt_svc_def service_defs[] = {
|
||||||
{
|
{
|
||||||
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
|
@ -69,7 +84,6 @@ static const struct ble_gatt_svc_def service_defs[] = {
|
||||||
}, {
|
}, {
|
||||||
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_STATE),
|
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_STATE),
|
||||||
|
|
||||||
.characteristics = (struct ble_gatt_chr_def[]) {
|
.characteristics = (struct ble_gatt_chr_def[]) {
|
||||||
BLE_CHAR_PUMP_STATE(1),
|
BLE_CHAR_PUMP_STATE(1),
|
||||||
BLE_CHAR_PUMP_STATE(2),
|
BLE_CHAR_PUMP_STATE(2),
|
||||||
|
@ -78,7 +92,38 @@ static const struct ble_gatt_svc_def service_defs[] = {
|
||||||
{
|
{
|
||||||
0, // No more characteristics in this service.
|
0, // No more characteristics in this service.
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}, {
|
||||||
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
|
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_PUMP_DURATION),
|
||||||
|
|
||||||
|
.characteristics = (struct ble_gatt_chr_def[]) {
|
||||||
|
BLE_CHAR_PUMP_DURATION(1),
|
||||||
|
BLE_CHAR_PUMP_DURATION(2),
|
||||||
|
BLE_CHAR_PUMP_DURATION(3),
|
||||||
|
BLE_CHAR_PUMP_DURATION(4),
|
||||||
|
{
|
||||||
|
0, // No more characteristics in this service.
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
.type = BLE_GATT_SVC_TYPE_PRIMARY,
|
||||||
|
.uuid = BLE_UUID16_DECLARE(BLE_SERVICE_BARBACK),
|
||||||
|
|
||||||
|
.characteristics = (struct ble_gatt_chr_def[]) {
|
||||||
|
{
|
||||||
|
.uuid = BLE_UUID16_DECLARE(CHAR_POUR),
|
||||||
|
.access_cb = svc_access_system,
|
||||||
|
.val_handle = &ble_svc_handle,
|
||||||
|
.flags = BLE_GATT_CHR_F_WRITE | BLE_GATT_CHR_F_READ
|
||||||
|
}, {
|
||||||
|
.uuid = BLE_UUID16_DECLARE(CHAR_BUTTON),
|
||||||
|
.access_cb = svc_access_system,
|
||||||
|
.val_handle = &ble_svc_handle,
|
||||||
|
.flags = BLE_GATT_CHR_F_READ | BLE_GATT_CHR_F_NOTIFY
|
||||||
|
},
|
||||||
|
{ 0 }
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{ 0 } // no more services
|
{ 0 } // no more services
|
||||||
};
|
};
|
||||||
|
@ -101,13 +146,14 @@ static int gatt_svr_chr_write(struct os_mbuf *om, uint16_t min_len, uint16_t max
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int svc_access_pump_enabled(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
static int svc_access_system(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||||
|
|
||||||
ESP_LOGI(TAG, "0x%02X (%d) access: %d", uuid16, uuid16, ctxt->op);
|
|
||||||
|
|
||||||
uint8_t value = 0;
|
uint8_t value = 0;
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "0x%02X access: %d", uuid16, ctxt->op);
|
||||||
|
|
||||||
|
if(ctxt->op == BLE_GATT_ACCESS_OP_READ_CHR) {
|
||||||
|
} else if(ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||||
gatt_svr_chr_write(
|
gatt_svr_chr_write(
|
||||||
ctxt->om,
|
ctxt->om,
|
||||||
sizeof value,
|
sizeof value,
|
||||||
|
@ -115,21 +161,83 @@ static int svc_access_pump_enabled(uint16_t conn_handle, uint16_t attr_handle, s
|
||||||
&value, NULL
|
&value, NULL
|
||||||
);
|
);
|
||||||
|
|
||||||
uint8_t io = pump_gpio_map[uuid16 - 0x4201];
|
switch(uuid16) {
|
||||||
|
case CHAR_POUR:
|
||||||
|
if(value == 1) {
|
||||||
|
ESP_LOGI(TAG, "starting pump");
|
||||||
|
pumps_run();
|
||||||
|
} else {
|
||||||
|
pumps_stop();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
ESP_LOGI(TAG, "gpio: %d value: %d", io, value);
|
case CHAR_BUTTON:
|
||||||
ESP_LOGI(TAG, "idx: %d", uuid16 - 4201);
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gpio_set_level(io, value);
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int svc_access_pump_enabled(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
|
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||||
|
uint8_t value = 0;
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "0x%02X access: %d", uuid16, ctxt->op);
|
||||||
|
|
||||||
|
uint8_t idx = uuid16 - (BLE_SERVICE_PUMP_ENABLED + 1);
|
||||||
|
|
||||||
|
if(ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||||
|
gatt_svr_chr_write(
|
||||||
|
ctxt->om,
|
||||||
|
sizeof value,
|
||||||
|
sizeof value,
|
||||||
|
&value, NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
pumps_set_enabled(idx, value);
|
||||||
|
} else if(ctxt->op == BLE_GATT_ACCESS_OP_READ_CHR) {
|
||||||
|
uint8_t enabled = pumps_get_enabled(idx);
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "pumps_enabled[%d] = %d", idx, enabled);
|
||||||
|
os_mbuf_append(ctxt->om, &enabled, sizeof enabled);
|
||||||
|
}
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int svc_access_pump_duration(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
|
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||||
|
uint8_t idx = uuid16 - (BLE_SERVICE_PUMP_DURATION + 1);
|
||||||
|
uint8_t value = 0;
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "0x%02X access: %d", uuid16, ctxt->op);
|
||||||
|
|
||||||
|
if(ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
|
||||||
|
gatt_svr_chr_write(
|
||||||
|
ctxt->om,
|
||||||
|
sizeof value,
|
||||||
|
sizeof value,
|
||||||
|
&value, NULL
|
||||||
|
);
|
||||||
|
|
||||||
|
pumps_set_time(idx, value);
|
||||||
|
} else if(ctxt->op == BLE_GATT_ACCESS_OP_READ_CHR) {
|
||||||
|
uint8_t duration = pumps_get_time(idx);
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "pumps_duration[%d] = %d", idx, duration);
|
||||||
|
os_mbuf_append(ctxt->om, &duration, sizeof duration);
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
||||||
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
||||||
|
uint8_t idx = uuid16 - (BLE_SERVICE_PUMP_ENABLED + 1);
|
||||||
|
|
||||||
if(ctxt->op != BLE_GATT_ACCESS_OP_READ_CHR) {
|
if(ctxt->op != BLE_GATT_ACCESS_OP_READ_CHR) {
|
||||||
ESP_LOGW(TAG, "attempting non-read op on write only characteristics");
|
ESP_LOGW(TAG, "attempting non-read op on read only characteristics");
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
@ -139,22 +247,6 @@ static int svc_access_pump_state(uint16_t conn_handle, uint16_t attr_handle, str
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int ble_svc_access(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg) {
|
|
||||||
uint16_t uuid16 = ble_uuid_u16(ctxt->chr->uuid);
|
|
||||||
|
|
||||||
esp_err_t err = ble_gatts_count_cfg(service_defs);
|
|
||||||
|
|
||||||
ESP_LOGI(TAG, "0x%02X access: %d", uuid16, ctxt->op);
|
|
||||||
|
|
||||||
switch(uuid16) {
|
|
||||||
case 0x2901:
|
|
||||||
os_mbuf_append(ctxt->om, "hello", 5);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void ble_advertise(void) {
|
static void ble_advertise(void) {
|
||||||
struct ble_gap_adv_params adv_params;
|
struct ble_gap_adv_params adv_params;
|
||||||
struct ble_hs_adv_fields fields;
|
struct ble_hs_adv_fields fields;
|
||||||
|
@ -242,6 +334,7 @@ static int ble_gap_event(struct ble_gap_event *event, void *arg) {
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case BLE_GAP_EVENT_SUBSCRIBE:
|
case BLE_GAP_EVENT_SUBSCRIBE:
|
||||||
|
/*
|
||||||
ESP_LOGI(TAG, "handling BLE_GAP_EVENT_SUBSCRIBE");
|
ESP_LOGI(TAG, "handling BLE_GAP_EVENT_SUBSCRIBE");
|
||||||
ESP_LOGI(TAG, "attr_handle: %d", event->subscribe.attr_handle);
|
ESP_LOGI(TAG, "attr_handle: %d", event->subscribe.attr_handle);
|
||||||
ESP_LOGI(TAG, "callback_handler_count: %d", callback_handler_count);
|
ESP_LOGI(TAG, "callback_handler_count: %d", callback_handler_count);
|
||||||
|
@ -256,6 +349,7 @@ static int ble_gap_event(struct ble_gap_event *event, void *arg) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
*/
|
||||||
|
|
||||||
case BLE_GAP_EVENT_CONN_UPDATE:
|
case BLE_GAP_EVENT_CONN_UPDATE:
|
||||||
ESP_LOGI(TAG, "BLE_GAP_EVENT_CONN_UPDATE, conn_handle: %d status: %d",
|
ESP_LOGI(TAG, "BLE_GAP_EVENT_CONN_UPDATE, conn_handle: %d status: %d",
|
||||||
|
|
25
main/main.c
25
main/main.c
|
@ -4,7 +4,6 @@
|
||||||
#include "freertos/task.h"
|
#include "freertos/task.h"
|
||||||
#include "freertos/queue.h"
|
#include "freertos/queue.h"
|
||||||
#include "driver/uart.h"
|
#include "driver/uart.h"
|
||||||
#include "driver/gpio.h"
|
|
||||||
#include "esp_log.h"
|
#include "esp_log.h"
|
||||||
#include "esp_debug_helpers.h"
|
#include "esp_debug_helpers.h"
|
||||||
#include "nvs_flash.h"
|
#include "nvs_flash.h"
|
||||||
|
@ -14,12 +13,14 @@
|
||||||
#include "console.h"
|
#include "console.h"
|
||||||
#include "ble.h"
|
#include "ble.h"
|
||||||
#include "user_button.h"
|
#include "user_button.h"
|
||||||
|
#include "pumps.h"
|
||||||
|
|
||||||
static const char *TAG = "BARBACK";
|
static const char *TAG = "BARBACK";
|
||||||
|
|
||||||
uint8_t mac[6];
|
uint8_t mac[6];
|
||||||
|
|
||||||
void app_main(void) {
|
void app_main(void) {
|
||||||
|
/*
|
||||||
esp_err_t err = nvs_flash_init();
|
esp_err_t err = nvs_flash_init();
|
||||||
if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
if (err == ESP_ERR_NVS_NO_FREE_PAGES || err == ESP_ERR_NVS_NEW_VERSION_FOUND) {
|
||||||
ESP_ERROR_CHECK(nvs_flash_erase());
|
ESP_ERROR_CHECK(nvs_flash_erase());
|
||||||
|
@ -27,33 +28,23 @@ void app_main(void) {
|
||||||
}
|
}
|
||||||
ESP_ERROR_CHECK( err );
|
ESP_ERROR_CHECK( err );
|
||||||
|
|
||||||
nvs_handle_t nvs_handle;
|
err = nvs_open("config", NVS_READWRITE, &config_handle);
|
||||||
err = nvs_open("config", NVS_READWRITE, &nvs_handle);
|
|
||||||
if (err != ESP_OK) {
|
if (err != ESP_OK) {
|
||||||
printf("Error (%s) opening NVS handle!\n", esp_err_to_name(err));
|
printf("Error (%s) opening NVS handle!\n", esp_err_to_name(err));
|
||||||
} else {
|
} else {
|
||||||
ESP_LOGI(TAG, "nvs_handle: %d", nvs_handle);
|
ESP_LOGI(TAG, "config_handle: %d", config_handle);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
esp_efuse_mac_get_default((uint8_t*)&mac);
|
esp_efuse_mac_get_default((uint8_t*)&mac);
|
||||||
|
|
||||||
ESP_LOGI(TAG, "MAC: [%02X:%02X:%02X:%02X:%02X:%02X]", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
|
ESP_LOGI(TAG, "MAC: [%02X:%02X:%02X:%02X:%02X:%02X]", mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
|
||||||
|
|
||||||
xTaskCreate(console_task, "console", 4048, NULL, tskIDLE_PRIORITY + 3, NULL);
|
user_button_init();
|
||||||
|
pumps_init();
|
||||||
ble_init();
|
ble_init();
|
||||||
|
|
||||||
#ifdef CONFIG_LORCOMM_BUTTON_ACTION_ENABLED
|
xTaskCreate(console_task, "console", 4048, NULL, tskIDLE_PRIORITY + 3, NULL);
|
||||||
//user_button_init();
|
|
||||||
#endif
|
|
||||||
|
|
||||||
gpio_config_t io_conf;
|
|
||||||
io_conf.intr_type = GPIO_PIN_INTR_DISABLE;
|
|
||||||
io_conf.mode = GPIO_MODE_OUTPUT;
|
|
||||||
io_conf.pin_bit_mask = GPIO_PUMP_PIN_SEL;
|
|
||||||
io_conf.pull_down_en = 1;
|
|
||||||
io_conf.pull_up_en = 0;
|
|
||||||
gpio_config(&io_conf);
|
|
||||||
|
|
||||||
while(1) {
|
while(1) {
|
||||||
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
||||||
|
|
118
main/pumps.c
Normal file
118
main/pumps.c
Normal file
|
@ -0,0 +1,118 @@
|
||||||
|
#include "string.h"
|
||||||
|
#include "freertos/FreeRTOS.h"
|
||||||
|
#include "freertos/timers.h"
|
||||||
|
#include "esp_log.h"
|
||||||
|
#include "driver/gpio.h"
|
||||||
|
#include "nvs_flash.h"
|
||||||
|
|
||||||
|
#include "pumps.h"
|
||||||
|
|
||||||
|
#define TAG "PUMP!"
|
||||||
|
|
||||||
|
uint8_t running = 0;
|
||||||
|
|
||||||
|
TimerHandle_t pump_timers[PUMPS];
|
||||||
|
static uint8_t pumps_duration[PUMPS] = {0};
|
||||||
|
static uint8_t pumps_enabled[PUMPS] = {0};
|
||||||
|
static uint8_t pumps_state[PUMPS];
|
||||||
|
static uint8_t safety = 1;
|
||||||
|
|
||||||
|
uint8_t pumps_set_time(uint8_t idx, uint8_t time) {
|
||||||
|
if(idx > PUMPS) return PUMPS_ERR_OUT_IDX;
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "duration update: %d = %d", idx, time);
|
||||||
|
|
||||||
|
pumps_duration[idx] = time;
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pumps_set_enabled(uint8_t idx, uint8_t value) {
|
||||||
|
uint8_t io = pump_gpio_map[idx];
|
||||||
|
|
||||||
|
value = (value ? 1 : 0);
|
||||||
|
|
||||||
|
ESP_LOGD(TAG, "gpio: %d value: %d", io, value);
|
||||||
|
// invert IO
|
||||||
|
if(safety)
|
||||||
|
gpio_set_level(io, value);
|
||||||
|
|
||||||
|
return pumps_enabled[idx] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pumps_get_enabled(uint8_t idx) {
|
||||||
|
return pumps_enabled[idx] ? 1 : 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pumps_get_time(uint8_t idx) {
|
||||||
|
return pumps_duration[idx];
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pump_enable(int8_t i) {
|
||||||
|
return gpio_set_level(pump_gpio_map[i], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pump_disable(int8_t i) {
|
||||||
|
return gpio_set_level(pump_gpio_map[i], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void pump_timer_done(TimerHandle_t timer) {
|
||||||
|
uint8_t idx = (pcTimerGetTimerName(timer) - 0x48);
|
||||||
|
ESP_LOGD(TAG, "pump done: %d", idx);
|
||||||
|
|
||||||
|
running--;
|
||||||
|
|
||||||
|
pumps_set_enabled(idx, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void pumps_stop() {
|
||||||
|
for(uint8_t i = 0; i < PUMPS; i++) {
|
||||||
|
if(pump_timers[i] != NULL)
|
||||||
|
xTimerStop(pump_timers[i], 0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void pumps_run() {
|
||||||
|
if(running > 0) return;
|
||||||
|
|
||||||
|
for(uint8_t i = 0; i < PUMPS; i++) {
|
||||||
|
if(pumps_duration[i] == 0) continue;
|
||||||
|
|
||||||
|
running++;
|
||||||
|
|
||||||
|
pump_timers[i] = xTimerCreate((const char *)(0x48 + i), (pumps_duration[i] * 1000 / portTICK_PERIOD_MS), pdFALSE, (void*)0, pump_timer_done);
|
||||||
|
|
||||||
|
xTimerStart(pump_timers[i], 0);
|
||||||
|
|
||||||
|
pumps_set_enabled(i, 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
uint8_t pumps_init() {
|
||||||
|
gpio_config_t io_conf;
|
||||||
|
|
||||||
|
// put the output high before initializing
|
||||||
|
// to prevent relays from clacking
|
||||||
|
for(uint8_t i = 0 ; i < 4; i++) {
|
||||||
|
gpio_set_level(pump_gpio_map[i], 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
io_conf.intr_type = GPIO_PIN_INTR_DISABLE;
|
||||||
|
io_conf.mode = GPIO_MODE_OUTPUT;
|
||||||
|
io_conf.pin_bit_mask = GPIO_PUMP_PIN_SEL;
|
||||||
|
io_conf.pull_down_en = 1;
|
||||||
|
io_conf.pull_up_en = 0;
|
||||||
|
gpio_config(&io_conf);
|
||||||
|
|
||||||
|
// zero out pump enabled, duration
|
||||||
|
memset(&pumps_enabled, 0, sizeof(uint8_t) * PUMPS);
|
||||||
|
memset(&pumps_duration, 10, sizeof(uint8_t) * PUMPS);
|
||||||
|
|
||||||
|
//uint32_t durations;
|
||||||
|
//esp_err_t err = nvs_get_i32(config_handle, "durations", &durations);
|
||||||
|
|
||||||
|
ESP_LOGI(TAG, "pumps_enabled: %d %d %d %d", pumps_enabled[0], pumps_enabled[1], pumps_enabled[2], pumps_enabled[3]);
|
||||||
|
ESP_LOGI(TAG, "pumps_duration: %d %d %d %d", pumps_duration[0], pumps_duration[1], pumps_duration[2], pumps_duration[3]);
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
|
@ -3,19 +3,27 @@
|
||||||
#include "freertos/queue.h"
|
#include "freertos/queue.h"
|
||||||
#include "driver/gpio.h"
|
#include "driver/gpio.h"
|
||||||
|
|
||||||
static xQueueHandle gpio_evt_queue = NULL;
|
#include "main.h"
|
||||||
|
#include "pumps.h"
|
||||||
|
|
||||||
static void IRAM_ATTR gpio_isr_handler(void* arg)
|
#define GPIO_USER_BUTTON (19)
|
||||||
{
|
|
||||||
|
static void IRAM_ATTR gpio_isr_handler(void* arg) {
|
||||||
uint32_t gpio_num = (uint32_t) arg;
|
uint32_t gpio_num = (uint32_t) arg;
|
||||||
|
|
||||||
xQueueSendFromISR(gpio_evt_queue, &gpio_num, NULL);
|
xQueueSendFromISR(gpio_evt_queue, &gpio_num, NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void gpio_task_example(void* arg) {
|
static void gpio_task_example(void* arg) {
|
||||||
uint32_t io_num;
|
uint32_t io_num;
|
||||||
|
|
||||||
for(;;) {
|
for(;;) {
|
||||||
if(xQueueReceive(gpio_evt_queue, &io_num, portMAX_DELAY)) {
|
if(xQueueReceive(gpio_evt_queue, &io_num, portMAX_DELAY)) {
|
||||||
printf("GPIO[%d] intr, val: %d\n", io_num, gpio_get_level(io_num));
|
printf("GPIO[%d] intr, val: %d\n", io_num, gpio_get_level(io_num));
|
||||||
|
|
||||||
|
pumps_run();
|
||||||
|
// just a wee debounce
|
||||||
|
vTaskDelay(500 / portTICK_PERIOD_MS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,15 +33,15 @@ void user_button_init() {
|
||||||
|
|
||||||
io_conf.intr_type = GPIO_PIN_INTR_NEGEDGE;
|
io_conf.intr_type = GPIO_PIN_INTR_NEGEDGE;
|
||||||
io_conf.mode = GPIO_MODE_INPUT;
|
io_conf.mode = GPIO_MODE_INPUT;
|
||||||
io_conf.pin_bit_mask = (1L << 0);
|
io_conf.pin_bit_mask = (1ULL << GPIO_USER_BUTTON);
|
||||||
io_conf.pull_down_en = 0;
|
io_conf.pull_down_en = 0;
|
||||||
io_conf.pull_up_en = 0;
|
io_conf.pull_up_en = 1;
|
||||||
|
|
||||||
gpio_config(&io_conf);
|
gpio_config(&io_conf);
|
||||||
|
|
||||||
gpio_evt_queue = xQueueCreate(10, sizeof(uint32_t));
|
gpio_evt_queue = xQueueCreate(10, sizeof(uint32_t));
|
||||||
xTaskCreate(gpio_task_example, "gpio_task_example", 2048, NULL, 10, NULL);
|
xTaskCreate(gpio_task_example, "gpio_task_example", 4096, NULL, 10, NULL);
|
||||||
|
|
||||||
gpio_install_isr_service(0);
|
gpio_install_isr_service(0);
|
||||||
gpio_isr_handler_add(0, gpio_isr_handler, (void*) 0);
|
gpio_isr_handler_add(GPIO_USER_BUTTON, gpio_isr_handler, (void*) 0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue