1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-26 23:22:21 +01:00

IDF 5 fixes for various components from test1.yaml (#5451)

This commit is contained in:
Keith Burzinski
2023-10-18 01:33:36 -05:00
committed by GitHub
parent 8ef743f25e
commit cdc4f7f59b
82 changed files with 173 additions and 97 deletions

View File

@@ -57,7 +57,7 @@ void rdm6300::RDM6300Component::loop() {
trig->process(result);
if (report) {
ESP_LOGD(TAG, "Found new tag with ID %u", result);
ESP_LOGD(TAG, "Found new tag with ID %" PRIu32, result);
}
}
}

View File

@@ -5,6 +5,7 @@
#include "esphome/components/binary_sensor/binary_sensor.h"
#include "esphome/components/uart/uart.h"
#include <cinttypes>
#include <vector>
namespace esphome {