mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2025-08-23 19:22:01 +00:00
ESP-NOW Transmitter comments
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user