mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-18 20:07:12 +00:00
ESP-NOW Transmitter comments
This commit is contained in:
0
ESP32-IDF_ESPNOW-Transmitter/build/.ninja_lock
Normal file
0
ESP32-IDF_ESPNOW-Transmitter/build/.ninja_lock
Normal file
@@ -24,4 +24,22 @@ static esp_err_t joystick_adc_init() {
|
||||
ESP_ERROR_CHECK(adc_oneshot_config_channel(adc_xy_handle, ADC1_CHANNEL_1, &config_y));
|
||||
|
||||
return ESP_OK;
|
||||
}
|
||||
|
||||
static void joystick_show_raw_xy() {
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_0, &x));
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_1, &y));
|
||||
ESP_LOGI("(x,y)", "( %d, %d )", x, y);
|
||||
}
|
||||
|
||||
static void get_joystick_xy(int *x_axis, int *y_axis) {
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_0, x_axis));
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_1, y_axis));
|
||||
}
|
||||
|
||||
static void joystick_task(void *arg) {
|
||||
while (true) {
|
||||
joystick_show_raw_xy();
|
||||
vTaskDelay (10 / portTICK_PERIOD_MS);
|
||||
}
|
||||
}
|
@@ -44,23 +44,26 @@ static esp_err_t joystick_adc_init(void);
|
||||
return ESP_OK;
|
||||
}*/
|
||||
|
||||
static void joystick_show_raw_xy() {
|
||||
static void joystick_show_raw_xy();
|
||||
/*{
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_0, &x));
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_1, &y));
|
||||
ESP_LOGI("(x,y)", "( %d, %d )", x, y);
|
||||
}
|
||||
}*/
|
||||
|
||||
static void get_joystick_xy(int *x_axis, int *y_axis) {
|
||||
static void get_joystick_xy(int *x_axis, int *y_axis);
|
||||
/*{
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_0, x_axis));
|
||||
ESP_ERROR_CHECK(adc_oneshot_read(adc_xy_handle, ADC1_CHANNEL_1, y_axis));
|
||||
}
|
||||
}*/
|
||||
|
||||
static void joystick_task(void *arg) {
|
||||
static void joystick_task(void *arg);
|
||||
/*{
|
||||
while (true) {
|
||||
joystick_show_raw_xy();
|
||||
vTaskDelay (10 / portTICK_PERIOD_MS);
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
/* WiFi should start before using ESPNOW */
|
||||
static void wifi_init() {
|
||||
|
Reference in New Issue
Block a user