External data logs
Neillson01
Posts: 10
Hi,
I am currently undergoing my undergraduate project and am using BS2 microcontroller.
My project is a temperature sensor using a Zener diode using the diodes leakage current, as there will be a different leakage current for each value of temperature over a range of 15 degrees to 70 degrees Celsius, therefore a large number of lines of data is needed to show the outputted value which is too much capacity for the micro controllers 2KByte memory.
My question is how can you create and external log of this data and use it within the program?
Any help will be appreciates
Thanks
I am currently undergoing my undergraduate project and am using BS2 microcontroller.
My project is a temperature sensor using a Zener diode using the diodes leakage current, as there will be a different leakage current for each value of temperature over a range of 15 degrees to 70 degrees Celsius, therefore a large number of lines of data is needed to show the outputted value which is too much capacity for the micro controllers 2KByte memory.
My question is how can you create and external log of this data and use it within the program?
Any help will be appreciates
Thanks
Comments
If you really need more storage than that, you can attach an external data EEPROM to the Stamp using 2 I/O pins. One of the Nuts and Volts Columns (#85) gives sample code for any I2C device and gives several examples for different EEPROMs. You'd have one or more temporary Stamp programs that would just write your data into the EEPROM and then your main program which would reference the stored table.