Hi everyone, I have a problem because I have to make a program that is running a real-time clock with DS1307 but I have to use the wire library and DS1307. I do not know how comprned I have been taken to start the program.
Can you help me?
A tutorial at Adafruit, Overview | DS1307 Real Time Clock Breakout Board Kit | Adafruit Learning System
This is a library and an example, GitHub - adafruit/RTClib: A fork of Jeelab's fantastic RTC library
Thank you for the documentation, I have one more question, what is the symbols "*" and "&" found in some programs ?
worrior:
Thank you for the documentation, I have one more question, what is the symbols "*" and "&" found in some programs ?
In C and C++ the operators "*" and "&" can mean different things depending on the context. Here are some:
- Multiplication
- The value referenced by a pointer
- Bitwise AND
- The address of a variable/symbol/function
Cheers!