Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • I retyped my code on a new sketch and it uploaded successfully but i tried to change the times to see if my RTC code uploaded accurately instead of just successfully I tried changing the numbers on wake hours and minutes and now i have a compiling error. Commented Nov 7, 2016 at 15:10
  • The error message will have a line number that points you to (or near) the line causing an error. If the error is in one of the uint8_t wake_HOUR1 = 12; ... uint8_t wake_MINUTE2 = 30; lines, it probably is a simple typo, like an extra or missing character. Each of those lines should be of the form uint8_t somevariablename=somevalue; where somevalue should be an integer, like 0, 1, ... 7, 8, 9, 10, 11 ... 59. A value expressed as 08 or 09 instead of 8 or 9 would produce an error because 8 and 9 are not octal digits. A missing semicolon or no space after uint8_t also is an error. Commented Nov 7, 2016 at 15:42