@@ -107,11 +107,11 @@ class ArduinoIoTCloudClass
107
107
* name of the property to identify a given property within a CBOR message.
108
108
*/
109
109
110
- void addPropertyReal (Property& property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
111
- void addPropertyReal (bool & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
112
- void addPropertyReal (float & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
113
- void addPropertyReal (int & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0, void(*synFn)(Property & property) = CLOUD_WINS);
114
- void addPropertyReal (String& property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
110
+ void addPropertyReal (Property& property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
111
+ void addPropertyReal (bool & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
112
+ void addPropertyReal (float & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
113
+ void addPropertyReal (int & property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
114
+ void addPropertyReal (String& property, String name, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
115
115
116
116
Property& addPropertyReal (Property& property, String name, Permission const permission);
117
117
Property& addPropertyReal (bool & property, String name, Permission const permission);
@@ -125,11 +125,11 @@ class ArduinoIoTCloudClass
125
125
* important when using LoRa.
126
126
*/
127
127
128
- void addPropertyReal (Property& property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
129
- void addPropertyReal (bool & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
130
- void addPropertyReal (float & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
131
- void addPropertyReal (int & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0, void(*synFn)(Property & property) = CLOUD_WINS);
132
- void addPropertyReal (String& property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS);
128
+ void addPropertyReal (Property& property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
129
+ void addPropertyReal (bool & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
130
+ void addPropertyReal (float & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
131
+ void addPropertyReal (int & property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
132
+ void addPropertyReal (String& property, String name, int tag, permissionType permission_type = READWRITE, long seconds = ON_CHANGE, void (*fn)(void ) = NULL, float minDelta = 0.0f, void(*synFn)(Property & property) = CLOUD_WINS) __attribute__((deprecated( " Use addProperty(property, Permission::ReadWrite) instead. " ))) ;
133
133
134
134
Property& addPropertyReal (Property& property, String name, int tag, Permission const permission);
135
135
Property& addPropertyReal (bool & property, String name, int tag, Permission const permission);
0 commit comments