/* DESC: This Script reads a temperature at a modbus sensor and send a alarm in case a threshold temp is reached * Copyright (C) 2017 NetModule AG, Switzerland */ // Email Setting EMAILTO="my@alarm.de"; EMAILSUBJECT="Temperature Alarm"; //Alarming Setting MAXTEMP=38; //The Modbus Sensor we read from MBHOST="192.168.1.253"; MBPORT=502; // The Register to read from MBREGISTER=1;