Navigation

    • Register
    • Login
    • OpenHardware.io
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. BulldogLowell
    3. Topics
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Topics created by BulldogLowell

    • BulldogLowell

      3G Serial Bridge for Vera
      My Project • • BulldogLowell  

      2
      1
      Votes
      2
      Posts
      1041
      Views

      dbemowsk

      BRAVO, nice job.
    • BulldogLowell

      DailyTimer library for Arduino
      Development • • BulldogLowell  

      1
      3
      Votes
      1
      Posts
      524
      Views

      No one has replied

    • BulldogLowell

      Vera MySensors plugin : Cannot send command - communications error
      Troubleshooting • • BulldogLowell  

      10
      0
      Votes
      10
      Posts
      3104
      Views

      BulldogLowell

      @korttoma I'm using MySensors 2.0.0, which was the default when I downloaded using the Arduino IDE's library manager. I'll probably linger here a while until i learn all of the MySensors abstractions. It is nice and easy now. I'm using Arduino 1.8.2, which is almost C++ 11. I really like the latest version, I'll just keep using the AVR Boards 1.6.11 for my MySensors projects. @peterjackson set me straight, and all is working well. I'm up and running with all of the MySensors nodes I've built. It is a drag updating some of my devices; many were not built for easy access to the USB serial connectors. I have only myself to blame for that. I'd been working mainly with WiFi devices lately, but they get expensive if all you want is basic functionality, the MySensors backbone is perfect. Built any cool projects lately?
    • BulldogLowell

      Web App for Simple Control of my Home Automation kludge
      My Project • • BulldogLowell  

      10
      3
      Votes
      10
      Posts
      3937
      Views

      BulldogLowell

      @TheoL I don't really use scenes, as most of what I do with Vera is using PLEG. But yes, that is a good idea. Look for updates that will include alarm setting and my garage door states. I just haven't gotten that far yet!
    • BulldogLowell

      Send command through Gateway using cURL, HTTP GET, etc...
      Vera • • BulldogLowell  

      1
      0
      Votes
      1
      Posts
      1132
      Views

      No one has replied

    • BulldogLowell

      Another famous and talented Ekblad!!!
      General Discussion • • BulldogLowell  

      2
      1
      Votes
      2
      Posts
      1201
      Views

      hek

      Well, do not share any genes with that guy. In fact, I'm a sport-analfabet. https://xkcd.com/1107/
    • BulldogLowell

      gw.send( ) and transmission errors
      General Discussion • • BulldogLowell  

      12
      0
      Votes
      12
      Posts
      6109
      Views

      rickmontana83

      Just my $0.02... Be careful with any while loops that could go on forever under "perfect storm" conditions. It's usually a safe bet that eventually your device will get into a state where comms will fail forever. If you're stuck in a while loop waiting for a successful send then you have no chance to detect or correct the error, and given how tricky it is to debug Arduinos you'll probably never figure out what went wrong. The device will just go silent, and a little while later the batteries will run out (because it's sitting there trying to send over and over). Do yourself a favor and put a fail-safe && retries++ < MAX_RETRIES clause on your while loop. This doesn't speak directly to your case, but in a broad sense my assumption going in to any wireless design is that packets will be dropped, so I always design with that constraint in mind, rather than trying to design a system where no drops occur. For example, you might consider adding a "resync" timer that sends the current state regardless of changes every so often. So even if something is dropped you have a bounded amount of time where things are in the wrong state. I do this with my presentations: Every 5 minutes my sensors retransmit all presentation messages just in case the controller missed the first set, or the controller reset, or whatever... Handling lossy comms is not usually too hard if you aren't trying to back-engineer that into a system that was designed with the assumption that messages would always succeed. Incidentally, this is more or less the same as "UDP" vs "TCP" networking, if you've ever worked in that realm. So strategies would overlap pretty nicely.
    • BulldogLowell

      Watchdog on Ethernet Gateway
      General Discussion • ethernetgateway watchdog attiny45 • • BulldogLowell  

      32
      0
      Votes
      32
      Posts
      20567
      Views

      Dan S.

      @NeverDie All I can say is that after adding the watchdog I have not had a lockup in 2+ months. Before that, like you, I had random lockups. Based on this positive experience I also added a watchdog to the one repeater I have in my system. Had a brief power outage the other day and everything came back online by itself with no problems.
    • BulldogLowell

      MySensors plugin : Cannot send command - communications error
      Troubleshooting • gateway ethernet • • BulldogLowell  

      20
      0
      Votes
      20
      Posts
      9283
      Views

      samppa

      @5546dug Yes I think you need 1.4.1 or latest. The messages you see (0;0;3;9...) are traffic in the wireless sensor network. My problem appeared again. The EthernetGateway responds to Ping but Vera plugin says: "Cannot send command - communications error" So perhaps increasing power could help, but how? Is adding capacitors enough?? Like for the radio there already is one..
    • BulldogLowell

      Vera Helper with Arduino
      My Project • • BulldogLowell  

      13
      3
      Votes
      13
      Posts
      8096
      Views

      mntlvr

      Hello @BulldogLowell I am brand new to this site but have built a few of my own project that monitored batteries and controlled the charging rate as well as the voltage all through a web page but I am Interested in this project, Have you a complete project details with BOM and full working code, as of yet? I am looking to control the fill of a 275 gallon water tank by sonic means. I wish to have the Ultra-Sonic device measure the water level and when certain depth conditions are met the unit will open a valve and allow water in , then when the proper level is met it will close the valve and transmit all this info back to my Vera and or a web page. Please keep up the great idea. Thanks
    • BulldogLowell

      Create multiple instance in a for() loop: a C++ question
      Development • • BulldogLowell  

      10
      0
      Votes
      10
      Posts
      5729
      Views

      BulldogLowell

      thanks @hek lemme work with that for a while
    • BulldogLowell

      Recognize this Library Error?
      Troubleshooting • • BulldogLowell  

      1
      0
      Votes
      1
      Posts
      477
      Views

      No one has replied

    • BulldogLowell

      wish to have a non-Repeating node in a sketch based on RELAY example
      Troubleshooting • • BulldogLowell  

      3
      0
      Votes
      3
      Posts
      1170
      Views

      BulldogLowell

      so... how could have I missed that HIGHLIGHTED AND BOLDFACED in the MySensors API? thanks Henrik!
    • BulldogLowell

      [SOLVED] Problems with Ethernet Gateway (Arduino Ethernet Shield)
      Troubleshooting • • BulldogLowell  

      67
      0
      Votes
      67
      Posts
      34563
      Views

      korttoma

      @mainali said: Can you post the link to the updated code and the instruction of using NRF with ethernet module. I think everything you need to know is described here -> http://www.mysensors.org/build/ethernet_gateway
    • BulldogLowell

      Motion Sensor
      Hardware • motion • • BulldogLowell  

      8
      0
      Votes
      8
      Posts
      4336
      Views

      BulldogLowell

      I was just looking for alternative approaches.
    • BulldogLowell

      Loading Data times out
      Vera • vera • • BulldogLowell  

      7
      0
      Votes
      7
      Posts
      2303
      Views

      RJ_Make

      Lol, I didn't even think about that way. I did think it a bit strange to post it here, and not on the Verde forum, but not enough to give it a second thought..
    • BulldogLowell

      radio ID in EEPROM
      Development • • BulldogLowell  

      5
      0
      Votes
      5
      Posts
      2866
      Views

      BulldogLowell

      @hek said: If your write above address 512 you should be safe. If you look at the beta version of 1.4 you can see I've added eeprom read/write in the API for sketch usage (that doesn't overwrite any important MySensor stuff). Will make life easier for you. cheers mate appreciated, as usual.
    • BulldogLowell

      S_RAIN
      Troubleshooting • • BulldogLowell  

      15
      0
      Votes
      15
      Posts
      5875
      Views

      BulldogLowell

      @hek THANKS!!! it was that simple....
    • BulldogLowell

      Rain Guage
      My Project • • BulldogLowell  

      128
      0
      Votes
      128
      Posts
      110232
      Views

      Enfeet

      Lets continue in correct topic https://forum.mysensors.org/topic/4821/rain-gauge/35
    • BulldogLowell

      gw.sendVariable(NodeID, V_LIGHT, 0)
      Troubleshooting • • BulldogLowell  

      2
      0
      Votes
      2
      Posts
      1309
      Views

      marceltrapman

      Are you asking this question for the V_LIGHT var or all vars? I am using the serial GW with my plugin as well. I did not (yet) see any issues but I will not pick up where I left things before my vacation in another one or two weeks so I can not give you a more definite answer yet. ps the good news is that my re-order of boards arrived during my vacation so I have enough boards and radio's to start adding sensors
    • BulldogLowell

      Irrigation Controller (up to 16 valves with Shift Registers)
      My Project • • BulldogLowell  

      371
      4
      Votes
      371
      Posts
      247608
      Views

      edweather

      @dbemowsk Thank you!
    • BulldogLowell

      Attach a Shift Register
      General Discussion • • BulldogLowell  

      3
      0
      Votes
      3
      Posts
      1642
      Views

      BulldogLowell

      @axillent I searched and searched before I posted the question and it turns out, it is in the arduino IDE already. shiftOut() thanks
    • BulldogLowell

      Weather Station with Scene Activator!!!
      My Project • • BulldogLowell  

      51
      1
      Votes
      51
      Posts
      30150
      Views

      cleight

      @BulldogLowell I agree I think it would benefit the community to have a node to node example on the site.
    • BulldogLowell

      Help with Code
      Development • • BulldogLowell  

      3
      0
      Votes
      3
      Posts
      1373
      Views

      BulldogLowell

      @hek got it, thanks
    • BulldogLowell

      PhoneyTV for Vera is Here!
      My Project • • BulldogLowell  

      34
      1
      Votes
      34
      Posts
      27116
      Views

      BulldogLowell

      @5546dug said: Just a question, when in your code 3.1.1 you have a few scattered lines through out the declaration code with only // on these lines does it mean anything in particular ? Adding the "//" is only a personal preference of mine to use the comment marks rather than leaving a blank line. for me, with a certain text editor that I use, it is easier to edit and not inadvertently delete some curly brace and screw up my code! @5546dug said: your code worked 100% THANKS. happy to hear you are going now, sorry about the mixup.
    • BulldogLowell

      Getting numbers from Vera to a sensor
      Hardware • • BulldogLowell  

      20
      0
      Votes
      20
      Posts
      9450
      Views

      dayve218

      is there a way to display these things (temp sensor readings) on to a web page?
    • BulldogLowell

      Mailbox Sensor
      My Project • • BulldogLowell  

      21
      1
      Votes
      21
      Posts
      24122
      Views

      BulldogLowell

      @Cai_Niao I am using HomeWave, an iOS app developed for Vera which is my controller.
    • BulldogLowell

      Momentum
      General Discussion • • BulldogLowell  

      3
      0
      Votes
      3
      Posts
      1199
      Views

      hek

      Yes, it is really fun to see new HA projects/products developing plugins. We also see a growing number of visitors! Thanks all!
    • BulldogLowell

      Changing Radio
      General Discussion • • BulldogLowell  

      3
      0
      Votes
      3
      Posts
      1260
      Views

      BulldogLowell

      @gregl Thanks!!