Initial commit - wip

This commit is contained in:
HTotoo
2023-12-08 10:40:19 +01:00
parent 1bf0d2b3e6
commit a5705e1d6c
5 changed files with 374 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef __FPROTO_SUBGHZDTYPES_H__
#define __FPROTO_SUBGHZDTYPES_H__
/*
Define known protocols.
These values must be present on the protocol's constructor, like FProtoWeatherAcurite592TXR() { sensorType = FPW_Acurite592TXR; }
Also it must have a switch-case element in the getSubGhzDSensorTypeName() function, to display it's name.
*/
enum FPROTO_SUBGHZD_SENSOR {
FPS_Invalid = 0,
};
#endif