Search results

  1. T

    WC32 Breakout boards?

    Hello All,   I have been away for a bit but have been looking around to see if any PCB adaptor boards are available yet for the WC32? I am looking for an easy way to switch a WC8 out with a WC32.   Thanks, Tim
  2. T

    Strange numbers and symbols in wc8 gui, partial reboot?

    Hello all,   It has been a while. About every 2 weeks all the outputs will shut off on a wc8. When I log into the gui I will see odd numbers or odd symbols in the ttl output bits section of the gui. And often times the 32 bit signed variables are large negative numbers.   I have the wc8 send me...
  3. T

    Temp Sensor Status

    Hello,   Would it be possible, without too much trouble, to include the Temp sensor status (bound/unbound status or 1/0) for each of the temp sensors on the status page that is emailed via WC8 boards?   Thanks, Tim
  4. T

    Help with turning on an output with a command from linux command line

    I have tried every variation I can think of to turn on an output from a linux terminal command line such as: /usr/bin/wget -q -O /dev/null http://AUTHBASIC:[email protected]/api/setttloutput.cgi?output=6&state=1   Entering...
  5. T

    WC8 boards rebooting.

    I currently have 3 WC8 boards with v03.02.17f. Two of the three randomly reboot. I had a feeling something was wrong so I added a line to send an email when they reboot at the beginning of the program. The boards appear to completely reboot because any ttl outputs which were high switch low. One...
  6. T

    Suggestions for monitoring water heater pilot light

    Hello,   I am looking for some cost effect ideas for monitoring the pilot light on my water heater. When strong winds are blowing sometimes the pilot goes out. I would like to monitor the pilot light, I already have cat5 run to the water heater with a temp sensor on it from a wc8 board but so...
  7. T

    Non-Blocking Delay on IP2 broken v03.02.17e Bug?

    I have been going round and around with my code trying to figure out why OP1 is turning off right after IP2 turns off. Here is the block of code:   MEDIAOFF:  TSTEQ IP2[30000] 0  SET OP1 0  TSTEQ OP1[5000] 0  SET VAR7 0  RET   I finally set non-block delay to 5000 then there is a five second...
  8. T

    Questions about Aux input plugs on webcontrol8 vs 32

    I am considering replacing a webcontrol8 board with a new beta 32 board. I have been looking at the pin outs of the Aux input connector and noticed the pin reference. numbering system is different between the 2 boards.   webcontrol 8 pinout is such: 8  7   6   5   4   3   2   1 9 10 11 12 13 14...
  9. T

    Weird Temp. occurance

    Just out of the blue I got notifications that 4 temp sensors were out of range. T5,6,7 and 8. It turns out that they switched from F to C by themselves. I have not made any changes to that board in over a week and they had all been set to F. Pretty strange!   v03.02.17e   Thanks, Tim
  10. T

    Help with program error

    I thought I was finished with this program...but it has a weird problem that I have not been able to nail down yet. I know it is a long program and troubleshooting someone else's code is a pain. But if you all could just glance at it maybe the problem will be obvious to you.   The problem I am...
  11. T

    Question about programming layout

    Now that I have my feet wet with bitwise I have decided to completely revamp my code on all my running boards. I use the webcontrol boards to gather temp, IO data etc and send it to my ISY994. There is some coding for turning on/off outputs under certain conditions as well.   My question has to...
  12. T

    Setting OPx other than 1

    I have read a few posts in the past about the ability to set OPx to a value other than 1, but haven't located them since. I am running some boards which are v03.02.16c and higher. I played around a little with this function and have found:   setting OP1 to 0 = 0 output setting OP1 to 1 = 1...
  13. T

    Bitwise use with AIPx

    I have bit locations 0-15 in RAM1 used for the 8 inputs and 8 outputs leaving 16 bits for other uses. I have 3 analog inputs but for simplicity lets take one as an example. AIP1 is sampled and the value is converted to a number between 1 and 5. I would like that number to be added to RAM1...
  14. T

    Flags

    I have a number of subroutines that I want to run every XX seconds and want them to run only once per time schedule. So I have been messing around with the programming and have pieced together a couple of examples you all have been kind enough to share. For simplicity I have simplified the below...
  15. T

    Help with non-blocking delay

    Hello,   Since non-blocking delay is not available for AIPx I am looking for some guidance in programming. I have AIP3 monitoring AC mains voltage via a wall wart. The value is of AIP3 is converted to a single digit number (1-4) and added to ram and sent.   The programming I have is working very...
  16. T

    Bitwise use

    Is there a tutoral or other information and explaination of use for bitwise functions? I am having trouble wrapping my head around its use. I have tried to follow examples both on the forum and the instruction manual but still can't get it...   Thanks, Tim
  17. T

    Definitely a newbie question

    Hello All,   When programming outputs to turn on in PLC is it better to arrange the code so the output(s) turn on or off just once and not just repeditively. In other words, as an example:   START SET OPx 1 END   Or   START TSTEQ OPx 0 SET OPx 1 END   Or does it really matter? Is there a...
  18. T

    Setting OPx on based on time of day

    Hello,   I have been banging my head against the wall trying to figure this out.   I want OP8 to turn on for 15 seconds at 3AM, 11AM and 7PM every day (basically every 8 hours). All RAM is being used and all but 1 VAR is being used as well. Oh, and OP1-7 are being used.   Is it possible and if...
  19. T

    Setting OPx on based on IPx

    Looking for a little help please. This seems like a very simple question but I would like some suggestions. If IP1 = 1 then set OP1 on, only once. To do this I came up with this: TSTNE IP1 OP1 TSTEQ IP1 1 OP1 This one I need help with: If IP1 = 0 then set OP1 off after 10 seconds, only once...
  20. T

    Question about WEBSET Settings

    Hello, I have been having some trouble when changing the WEBSET Get URI and virtual host name sections. After they are initially set and I go in to change them (and of course I hit send afterwards) it seems I have to reboot the board for the changes to take effect. Is this normal? Thanks, Tim...
Back
Top