Temperature Sensor Acquisiton Module HINTS/NOTES

The following hints have been announced in lab and should be taken into consideration when designing your Prototype.

Notes

  1. Your temperature sensor must read 3 digits, i.e., 103 F
  2. Projects are due at the end of lab sessions, Thursday, Nov. 29 at 9:00PM and Friday, Nov. 30 at 2:00 PM.
  3. Students must turnin their projects to the lab that they are enrolled in, i.e., students in the Tuesday/Thursday lab may not turnin in their project on Friday.
  4. For all groups your code/report is due on Saturday, Dec. 1 at 11:59 PM. You must submit your code/report using the CS Departments Turnin program found on the CS secure server at https://www.cs.ucr.edu
  5. ONE REPORT PER GROUP. Please be sure to put both students name on it.
  6. Your parts boxes will also be turned in at the last lab. If we do not receive your box, you will get an incomplete.

Hints

  1. You will need 2 separate I2C busses to communicate with the temperature sensor and the EEPROM.
  2. The diagram for StopI2C() in the book is incorrect. You should refer to the datasheets for the proper protocol.
  3. In your main() along with your initializations, you should add the following code for your EEPROM bus before you attempt to read and/or write to the EEPROM:
             StartI2C();
             StopI2C();