Can't find anything says I can or can't. Don't want to read from the eeprom every time the sketch loops, wouldn't take long to use up the 100,000 cycles, or would that only apply to writing values to it. I won't need to write the values unless I change locations for the sensor.
Thanks,
TomJ
Of course it is. Mind you, reading won't wear it out. It's writing that wears it out.
What I mean by "of course" is that your program is basically this:
setup ();
while (true)
loop ();
There is nothing particularly different about setup, except that it is done once.
Thanks Nick,
A very direct and simple answer to the original question, so refreshing on any forum!
Again, thanks,
TomJ