ESP32-C3 RC

This commit is contained in:
2025-01-03 10:28:27 -05:00
parent c3be2f0df1
commit 6617662c7f
4 changed files with 163 additions and 4 deletions

View File

@@ -807,9 +807,9 @@ void onDataReceived (const uint8_t *mac_addr, const uint8_t *data, uint8_t data_
ESP_LOGI(TAG, "PCM 1: 0x%04X", buf->motor1_rpm_pcm);*/
ESP_LOGW(TAG, "Data was received (%i bytes)", data_len);
ESP_LOGI(TAG, "x-axis: 0x%04x", buf.x_axis);
ESP_LOGI(TAG, "y-axis: 0x%04x", buf.y_axis);
ESP_LOGI(TAG, "PCM 1: 0x%04x", buf.motor1_rpm_pcm);
ESP_LOGI(TAG, "x-axis: 0x%04X", buf.x_axis);
ESP_LOGI(TAG, "y-axis: 0x%04X", buf.y_axis);
ESP_LOGI(TAG, "PCM 1: 0x%04X", buf.motor1_rpm_pcm);
}