Wire.beginTransmission(104); // transmit to device #104, the ds1307
Wire.send(0);
Wire.send(0x00);
You have an extra 0 in there I think. You just need to send one to set the register pointer.
Wire.beginTransmission(104); // transmit to device #104, the ds1307
Wire.send(0);
Wire.send(0x00);
You have an extra 0 in there I think. You just need to send one to set the register pointer.