mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-18 20:23:27 +02:00
5 lines
196 B
C
5 lines
196 B
C
#pragma once
|
|
|
|
// Helper macro to define a version code, whose value can be compared against other version codes.
|
|
#define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch))
|