Some checks failed
ESP-IDF Build / build (esp32, latest) (push) Failing after 19s
ESP-IDF Build / build (esp32, release-v5.4) (push) Failing after 15s
ESP-IDF Build / build (esp32, release-v5.5) (push) Failing after 15s
ESP-IDF Build / build (esp32c3, latest) (push) Failing after 21s
ESP-IDF Build / build (esp32c3, release-v5.4) (push) Failing after 15s
ESP-IDF Build / build (esp32c3, release-v5.5) (push) Failing after 14s
ESP-IDF Build / build (esp32c5, latest) (push) Failing after 14s
ESP-IDF Build / build (esp32c5, release-v5.4) (push) Failing after 15s
ESP-IDF Build / build (esp32c5, release-v5.5) (push) Failing after 15s
ESP-IDF Build / build (esp32c6, latest) (push) Failing after 18s
ESP-IDF Build / build (esp32c6, release-v5.4) (push) Failing after 15s
ESP-IDF Build / build (esp32c6, release-v5.5) (push) Failing after 15s
ESP-IDF Build / build (esp32h2, latest) (push) Failing after 15s
ESP-IDF Build / build (esp32h2, release-v5.4) (push) Failing after 14s
ESP-IDF Build / build (esp32h2, release-v5.5) (push) Failing after 15s
ESP-IDF Build / build (esp32p4, latest) (push) Failing after 15s
ESP-IDF Build / build (esp32p4, release-v5.4) (push) Failing after 18s
ESP-IDF Build / build (esp32p4, release-v5.5) (push) Failing after 15s
ESP-IDF Build / build (esp32s3, latest) (push) Failing after 14s
ESP-IDF Build / build (esp32s3, release-v5.4) (push) Failing after 14s
ESP-IDF Build / build (esp32s3, release-v5.5) (push) Failing after 15s
Signed-off-by: Peter Siegmund <developer@mars3142.org>
78 lines
2.5 KiB
C
78 lines
2.5 KiB
C
#include "include/led_service.h"
|
|
|
|
#include "led_matrix.h"
|
|
|
|
static const char *TAG = "led_service";
|
|
|
|
/// Capabilities of Device
|
|
int ls_capabilities_read(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg)
|
|
{
|
|
char *data = "To be implemented later";
|
|
os_mbuf_append(ctxt->om, data, strlen(data));
|
|
return 0;
|
|
}
|
|
|
|
// Write data to ESP32 defined as server
|
|
int ls_write(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg)
|
|
{
|
|
const char *received_payload = (const char *)ctxt->om->om_data;
|
|
uint16_t payload_len = ctxt->om->om_len;
|
|
|
|
// Define command strings
|
|
const char CMD_LIGHT_ON[] = "LIGHT ON";
|
|
const char CMD_LIGHT_OFF[] = "LIGHT OFF";
|
|
const char CMD_FAN_ON[] = "FAN ON";
|
|
const char CMD_FAN_OFF[] = "FAN OFF";
|
|
|
|
if (payload_len == (sizeof(CMD_LIGHT_ON) - 1) && strncmp(received_payload, CMD_LIGHT_ON, payload_len) == 0)
|
|
{
|
|
ESP_LOGI(TAG, "LIGHT ON");
|
|
for (int i = 0; i < led_matrix_get_size(); i++)
|
|
{
|
|
led_matrix_set_pixel(i, 10, 10, 0);
|
|
}
|
|
}
|
|
else if (payload_len == (sizeof(CMD_LIGHT_OFF) - 1) && strncmp(received_payload, CMD_LIGHT_OFF, payload_len) == 0)
|
|
{
|
|
ESP_LOGI(TAG, "LIGHT OFF");
|
|
for (int i = 0; i < led_matrix_get_size(); i++)
|
|
{
|
|
led_matrix_set_pixel(i, 0, 0, 0);
|
|
}
|
|
}
|
|
else if (payload_len == (sizeof(CMD_FAN_ON) - 1) && strncmp(received_payload, CMD_FAN_ON, payload_len) == 0)
|
|
{
|
|
ESP_LOGI(TAG, "FAN ON");
|
|
// TODO: Implement action for FAN ON
|
|
}
|
|
else if (payload_len == (sizeof(CMD_FAN_OFF) - 1) && strncmp(received_payload, CMD_FAN_OFF, payload_len) == 0)
|
|
{
|
|
ESP_LOGI(TAG, "FAN OFF");
|
|
// TODO: Implement action for FAN OFF
|
|
}
|
|
else
|
|
{
|
|
char temp_buffer[payload_len + 1];
|
|
memcpy(temp_buffer, received_payload, payload_len);
|
|
temp_buffer[payload_len] = '\0';
|
|
|
|
ESP_LOGI(TAG, "Unknown command from client: %s", temp_buffer);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int ls_char_a000_user_desc(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg)
|
|
{
|
|
const char *desc = "Capabilities of Device";
|
|
os_mbuf_append(ctxt->om, desc, strlen(desc));
|
|
return 0;
|
|
}
|
|
|
|
int ls_char_dead_user_desc(uint16_t conn_handle, uint16_t attr_handle, struct ble_gatt_access_ctxt *ctxt, void *arg)
|
|
{
|
|
const char *desc = "Readable Data from Server";
|
|
os_mbuf_append(ctxt->om, desc, strlen(desc));
|
|
return 0;
|
|
}
|