Finally got cron working the way I want with timezone correct for my location.
crond defaults to UTC, ok for servers but not when collecting local sensor data.
Enable cron in cmdline.txt
Use crontab -l to list it, crontab -e to edit (re/learn vi, ouch).
This makes a file called tc in /var/spool/cron/crontabs
example
SHELL=/bin/sh
PATH=/sbin:/bin:/usr/bin:/usr/sbin
*/5 * * * * TZ=EST-10 date >> /tmp/date.log
The trick is to do the TZ=??? before the script you want run.
Especially if your script uses date to time stamp sensor data collection for logging.
Tip -use top to check only one crond running, wasted time figuring that out.