Hello Forum
I need a program to CR850 to show me in the display immediately the information without having to use the keyboard.
Thank you
Hi Julio,
You will have to program the logger first to make this happen, but here is a functioning program.
The instructions you will need are:
DisplayMenu, MenuItem, EndMenu
With Display menu you will want to give it a title. This one I have called "Data".
The MenuItem is where you give labels/names for your variables and your actual variable to link the data.
Remember then to add your EndMenu to close
'CR800 Series Datalogger
'Declare Public Variables
Public Batt_Volt
Public PTemp
'Define Data Tables
DataTable (Onehour,True,1000)
DataInterval (0,1,Hr,10)
Sample (1,Batt_Volt,FP2)
EndTable
DisplayMenu ("Data",-4)
MenuItem ("Panel Temp",PTemp)
MenuItem ("Voltage",Batt_Volt)
EndMenu 'End custom menu creation
'Main Program
BeginProg
Scan (1,Sec,0,0)
'Loggers Wiring Panel Temperature
PanelTemp (PTemp,250)
'Monitors Battery voltage
Battery (Batt_Volt)
CallTable Onehour
NextScan
EndProg
There are other options you can do in the display; such as, configure the display to always be on, or the light to always be on.
I hope this helps
Regards,
* Last updated by: sonoautomated on 11/12/2009 @ 10:55 AM *