Fix glue code missing micros() (#2623)

This commit is contained in:
Otto Winter 2021-10-23 19:25:53 +02:00 committed by GitHub
parent a687b083ae
commit 8e77e3c685
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,6 +237,7 @@ def include_file(path, basename):
ARDUINO_GLUE_CODE = """\
#define yield() esphome::yield()
#define millis() esphome::millis()
#define micros() esphome::micros()
#define delay(x) esphome::delay(x)
#define delayMicroseconds(x) esphome::delayMicroseconds(x)
"""