Skip to content

Commit 8b4f418

Browse files
authored
Merge pull request mysensors#41 from martinkaiser/master
Fixed callback parameter type
2 parents 833fb33 + 5bedf2c commit 8b4f418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/TimeAwareSensor/TimeAwareSensor.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ void presentation() {
5050
}
5151

5252
// This is called when a new time value was received
53-
void receiveTime(unsigned long time) {
53+
void receiveTime(uint32_t time) {
5454
// Ok, set incoming time
5555
setTime(time);
5656
timeReceived = true;

0 commit comments

Comments
 (0)