I am trying to write some code to print out values that I am reading from a DS1307 with SoftwareSerial. I also think I should mention I am using an Attiny85 @ 16mhz internal. The values that come from the sensor are returned as unsigned char (not unsigned char*). I can Serial.print("time:");Serial.print(seconds); but Serial.print("time:" + seconds); produces no output. I want to Serial.print("time:" + seconds);
Additional info:
-using TinyDS1307 lib
-need to be able to use lexus2k's display.printFixed() function too