Skip to content

Commit

Permalink
Remove internal deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkokurt committed Feb 19, 2024
1 parent 1ebad66 commit 7b125f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ArduinoIoTCloudTCPThing.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ class ArduinoIoTCloudTCPThing
int connected();
void updateTimezoneInfo();

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.")));
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);
Property& addPropertyReal(Property& property, String name, int tag, Permission const permission);

void push();
Expand Down

0 comments on commit 7b125f4

Please sign in to comment.