1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-10 23:18:22 +00:00
esphome/esphome/core/macros.h

5 lines
196 B
C
Raw Normal View History

#pragma once
// Helper macro to define a version code, whos evalue can be compared against other version codes.
#define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch))