great video. i wanted to buy that chip and i was looking for great video to get start with, and cant belive i did
@SteveRaynerMakes3 жыл бұрын
thanks
@khushidalal6791 Жыл бұрын
Please give the full code, thankyou!
@zenomagna11 ай бұрын
is it possible to use rtc library? love your tutorial.
@hipposhark Жыл бұрын
🔥🔥🔥🔥🔥🔥very helpful thank you!!
@chrissangany81062 жыл бұрын
Very informative, Thank you
@SteveRaynerMakes2 жыл бұрын
You are welcome!
@emanuele6Ай бұрын
22:02 I think you have got a stack buffer overflow there. sprintf writes the formatted string to the buffer plus a 0x00 byte at the end to indicate the end of the string for functions like Serial.println; so there it writes xx/xx/xx 8 bytes + space 1 byte + xx:xx:xx 8 bytes = 17 bytes to the buffer; + 0x00 1 byte past the end of the buffer. We are not noticing any weird effect, because it probably just overwrote the year variable (or another variable ¯\_(ツ)_/¯) in that function with 0, that is not being used after the buffer overflow, and is gone after the function returns. You should have allocated 18 bytes
@SteveRaynerMakesАй бұрын
Thank you, that's good to know
@Drewettjeff2 жыл бұрын
Thank you.
@markosam21462 жыл бұрын
When I used the I2C scanner it said "No I2C devices found", I made sure my connections are correct, pullup resistors are there, and there are no shortcuts What could be the problem?!