|
We need to set aside memory on our microcontroller for
the Data Logger to store its data. Of course, we need
first to decide how much data we want to log. Let's
suppose, for this example, that we want to sample the
temperature once per minute for three days:
60
minutes per hour * 24 hours per day * 3 days = 4320
samplings
Each
sample is stored in a time-stamped record, so we will
need to allocate space for 4320 records.
|