Recent content by robertbennet

  1. R

    plc programing help

    Hello iam trying to write a program for my web control that does the following   if temp sensor 4 is lower than 40 input 2 will come on and when sensor 4reaches 60 i want input 2 off then if temp sensor 4 reaches 85 then output 3 turns on and when sensor 4 reaches 78 input 3 is off   any examples :
  2. R

    Programing Help temp alarm for generator

    WHEN INPUT 1 IS ON I WANT OUTPUT 3 ON WHEN INPUT 1 AND INPUT 2 ANRE ON I WANT OUTPUT 2 OFF WHEN INPUT 1 IS ON AND INPUT 2 IS OFF I WANT OUTPUT 2 ON AND EMAIL SENT TO EM1 WHEN OUTPUT 1 IS OFF ALL ALL OUTPUTS OFF     HERE IS WHAT I HAVE THUS FAR AND IT WONT RUN RIGHT THE FAN TURNES ON WHEN THE...
  3. R

    Programing Help temp alarm for generator

    something bizzar started happening today , i hooked up 2 new tempature sensors and now when i shart the generator it wipes out the web control programing completly and i have to restart it, could an em field effect the temp sensors causing a crach ?
  4. R

    Programing Help temp alarm for generator

    thats a good idea then i would use the first 4 and not worry about generator shutdown as a varible, i spent a couple hours last night fooling with the programing but still having no progress
  5. R

    Programing Help temp alarm for generator

    After playing around with this setup i decided to make some changes here is the current and final configuration   input 1 generator runing using dry contacts and relay to signal input 2 exaust fan running signal using dry contacts input 3 fuel low via dry contacts input 4 furnace malfunction via...
  6. R

    Programing Help temp alarm for generator

    LIKE THIS ?   START        CALLSUB ALARM_OFF       TSTNE IP1 0      CALLSUB ALARM_OFF       TSTLE T1 400      TSTGT T1 VAR1      CALLSUB ALARM_ON       EMAIL EM1       CALLSUB ALARM_OFF       TSTLE T2 400      TSTGT T2 VAR2      CALLSUB ALARM_ON       EMAIL EM2       CALLSUB FURNACE       EMAIL...
  7. R

    Programing Help temp alarm for generator

    START    LOOP:     CALLSUB ALARM_OFF       TSTNE IP1 0      CALLSUB ALARM_OFF       TSTLE T1 300      TSTGT T1 VAR1      CALLSUB ALARM_ON       EMAIL EM1       CALLSUB ALARM_OFF       TSTLE T2 300      TSTGT T2 VAR2      CALLSUB ALARM_ON       EMAIL EM2 CALLSUB LOW_FUEL EMAIL EM8      END   ...
  8. R

    Programing Help temp alarm for generator

    this is what i have so far please let me know how it looks   START CALLSUB checkOP1 OP1 1 TSTLE T1 400 CALLSUB ALARM_OFF TSTGT T1 433 CALLSUB ALARM_ON EMAIL EM1 OP1 1 TSTLE T2 400 CALLSUB ALARM_OFF TSTGT T2 433 CALLSUB ALARM_ON EMAIL EM2 END ALARM_ON SET OP1 1 ALARM_OFF SET OP1 0  
  9. R

    Programing Help temp alarm for generator

    Hello i just finished wiring up my web control to my generator. Output 1 goes to the start circuit on the generator, Output 2 goes to my alarm Buzzer, Input 1 goes to dry contacts to tell that the generator is running, and i have 2 temp sensors to measure air temp and oil temp... I would like to...
Back
Top