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
- Your temperature sensor must read 3 digits, i.e., 103 F
- Projects are due at the end of lab sessions, Thursday, Nov. 29 at
9:00PM and Friday, Nov. 30 at 2:00 PM.
- 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.
- 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
- ONE REPORT PER GROUP. Please be sure to put both students name on
it.
- 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
- You will need 2 separate I2C busses to communicate with the
temperature sensor and the EEPROM.
- The diagram for StopI2C() in the book is incorrect. You should
refer to the datasheets for the proper protocol.
- 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();