ESPHome  2024.4.0
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))