ESPHome
2025.5.0
Loading...
Searching...
No Matches
esphome
core
macros.h
Go to the documentation of this file.
1
#pragma once
2
3
// Helper macro to define a version code, whose value can be compared against other version codes.
4
#define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch))
5
6
#ifdef USE_ARDUINO
7
#include <Arduino.h>
8
#endif
Generated by
1.12.0