Campbell Scientific LoggerNet Datalogger Support Software User Manual
Page 280

Section 7. Creating and Editing Datalogger Programs
Floating Point Numbers Limited to 5 Digits
All fixed numbers are limited to five digits not including negative signs and
decimal points.
Function Expected
Letters that are immediately followed by parentheses are assumed to be a
function. If the letters are not on the function list, this error message occurs.
New Line Expected
Indicates one of the following situations:
(1) An expression contains more than one equal sign.
(2) There is no operator between two sets of parentheses.
For Example:
This error message is displayed when a program contains any of these
expressions:
zee=(label1)(label2)
ex=(5)(ARCTAN(data))
eee=(em)(see^2)
These are correct ways of entering the above expressions:
zee=(label1)*(label2)
ex=(5)*(ARCTAN(data))
eee=(em)*(see^2)
(3) There is no operator between a set of parentheses and a number.
For Example:
This error message is displayed when a program contains any of these
expressions:
tee=5(2)
mu=(nu)103
bee=7.52(ef/2)
sigma=–17(RCP(alpha))
These are correct ways of entering the above expressions:
tee=5*(2)
mu=(nu)*103
bee=7.52*(ef/2)
sigma=–17*(RCP(alpha))
(4) A label or function is immediately after a set of parentheses without an
operator.
7-62