GSheet.ready() doesn't work #33
Answered
by
mobizt
PedroSCPHSC
asked this question in
Q&A
-
Hi. My code doesn't pass to "if (GSheet.ready() == true){}". Is there any problem with the library? Help me! ` Serial.println ("Passou_2"); ready = GSheet.ready(); //ready is a boolean variable if (ready == true){ Serial.println ("Passou_3"); "Passou_3" is doesn't printed on serial monitor. Consequently, the data doesn't appear in the spreadsheet |
Beta Was this translation helpful? Give feedback.
Answered by
mobizt
Mar 28, 2024
Replies: 1 comment 4 replies
-
Which device you use? The function |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is because you change the time after
GSheet.begin
.You already know that the authentication method relies on time please don't use any method to change your device time after it begins.
Otherwise, you have to call
GSheet.begin
again to re-authenticate.