ESPHome
2024.10.2
esphome
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))
Generated by
1.8.13