Hi, does anyone know how to evaluate analog data? The program just halts instantly. Can we not evaluate the mA value like this? Any help would be appreciated.I set it up like this if a(0) <8 or > 9 halt popup message
Controller returns analog values in Amps not mA. You have to popup message before halt if I'm not mistaken. Analog_in_mA = 1000 * get_analog_in(0) if (Analog_in_mA < 8) or (Analog_in_mA > 9): popup message halt end
Hi, does anyone know how to evaluate analog data? The program just halts instantly. Can we not evaluate the mA value like this? Any help would be appreciated.
I set it up like this
if a(0) <8 or > 9
halt
popup message