temp sensor

This commit is contained in:
2025-06-24 01:41:47 -04:00
parent 82edac1831
commit 9033a6891b

View File

@@ -22,10 +22,10 @@ adc_oneshot_unit_handle_t adc_xy_handle;
sensors_data_t buffer;
static int x, y; // Joystick x- and y- axis positions
uint8_t broadcast_mac[ESP_NOW_ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; // Broadcast MAC address
// uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0xE4, 0xB0, 0x63, 0x17, 0x9E, 0x45}; // MAC address of Robot
uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0x9c, 0x9e, 0x6e, 0x14, 0xb5, 0x54}; // MAC address of Breadboard #2
uint8_t transmitter_mac[ESP_NOW_ETH_ALEN] = {0x34, 0xB7, 0xDA, 0xF9, 0x33, 0x8D}; // MAC address of Remote Control
//uint8_t broadcast_mac[ESP_NOW_ETH_ALEN] = {0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF}; // Broadcast MAC address
//// uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0xE4, 0xB0, 0x63, 0x17, 0x9E, 0x45}; // MAC address of Robot
//uint8_t receiver_mac[ESP_NOW_ETH_ALEN] = {0x9c, 0x9e, 0x6e, 0x14, 0xb5, 0x54}; // MAC address of Breadboard #2
//uint8_t transmitter_mac[ESP_NOW_ETH_ALEN] = {0x34, 0xB7, 0xDA, 0xF9, 0x33, 0x8D}; // MAC address of Remote Control
esp_err_t joystick_adc_init(void)
{