mirror of
https://github.com/esphome/esphome.git
synced 2025-02-07 21:51:00 +00:00
5 lines
196 B
C
5 lines
196 B
C
#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))
|