Unable to compile TimeSerial.pde

Unable to compile TimeSerial.pde just as I downloded it from the web site. I am running win 7, 64 bit. I have Time.h in the sketch in a separate tab and in the code in double quotes. This is the only change that I made in the downloaded code. I am running the Arduino Environment 0022. But I get the errors listed below. Please tell me where I'm going wrong. I haven't Coded C in a long time.

RMGs_TimeSerial.cpp.o: In function processSyncMessage()': C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:79: undefined reference to setTime(unsigned long)' RMGs_TimeSerial.cpp.o: In function digitalClockDisplay()': C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:46: undefined reference to hour()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:47: undefined reference to minute()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:48: undefined reference to second()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:50: undefined reference to day()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:52: undefined reference to month()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:54: undefined reference to year()' RMGs_TimeSerial.cpp.o: In function loop': C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:36: undefined reference to timeStatus()' C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:38: undefined reference to timeStatus()' RMGs_TimeSerial.cpp.o: In function setup': C:\Users\Richard\AppData\Local\Temp\build3259702879597864277.tmp/RMGs_TimeSerial.cpp:27: undefined reference to setSyncProvider(unsigned long (*)())' .

Unable to compile TimeSerial.pde just as I downloded it from the web site.

I believe that at last count there were about 42 bazillion web sites. Do you suppose that you could narrow that down just a tiny bit?

I have Time.h in the sketch in a separate tab and in the code in double quotes.

You mean that you #included Time.h using double quotes? Where is the Time.cpp file that goes with the Time.h file?

The messages you posted are not from the compiler. They are from the linker which is trying to find the implementation of the functions defined in Time.h, and failing.

This was downloaded from 'Arduino Playground - Time'
The file "serialTime.pde"

The download on that page contains two libraries. That zip file should be unzipped into the libraries folder in your sketchbook folder. The Time.h file does not belong in your sketch folder.

Unzip the file properly, and the code will at least compile.

Thanks a lot I din not include "time.cpp" and I did not relizee it was the linker complaining. All is well now. At least for the moment.