Navigation

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

    Topics created by Snyfir

    • Snyfir

      sleep(0) not working when Gateway is down
      Development • • Snyfir  

      2
      0
      Votes
      2
      Posts
      24
      Views

      mfalkvidd

      @Snyfir what is the return value of the sleep call? What does the debug output say? Those pieces of information will help a lot when trying to understand what is happening and why. What type of Arduino you are using would also be useful.
    • Snyfir

      Filter node
      Feature Requests • • Snyfir  

      17
      0
      Votes
      17
      Posts
      73
      Views

      TheoL

      In all honesty, I'm not quite convinced you'd need two separate networks. Just provide the security sensors, the repeaters, the gateway and your controller - that form the security system - with some sort of ups and they will keep running until the UPS has no more power left. The none security devices will stop working when the power goes out and, unless I don't really understand your problem well. That does what I think you want to achieve? Unless you have combined a lot of sensors within a repeater it would really be my way to go. It wouldn't mean any modifications to your security hardware, because they need to be battery powered or have some sort of UPS anyway, to keep working when the power goes down. But again it's hard to judge when you don't really understand the problem some one is trying to solve.
    • Snyfir

      Function to wait for software ACK
      Development • • Snyfir  

      1
      1
      Votes
      1
      Posts
      155
      Views

      No one has replied

    • Snyfir

      IRQ pin stay low after several hours of use
      Troubleshooting • • Snyfir  

      3
      1
      Votes
      3
      Posts
      325
      Views

      Snyfir

      @snyfir with this fix, everything work fine
    • Snyfir

      Powering NRF24l01+ with DC-DC Module Abaisseur Regulateur Tension Step Down
      Troubleshooting • • Snyfir  

      6
      0
      Votes
      6
      Posts
      370
      Views

      cabat

      I am use switching DC-DC the same as you to get 5V from 12V and LDO XC6206 to power NRF24 module - all work good.
    • Snyfir

      [SOLVED] Gateway with signing = low memory
      Troubleshooting • • Snyfir  

      10
      0
      Votes
      10
      Posts
      1168
      Views

      alowhum

      I've created a lot of devices on Arduino Nano's with soft signing. You have to learn how to manage memory, and then it works great. A gateway on a nano with nothing in the code except it being a gateway, that should work fine. I've never seen that error message when I used the SIMPLE SECURITY option. Low memory warning might also not really be a problem in practise. If your sketch is empty, then there may not be much to worry about: there are no functions in your code that suddenly need a lot of memory. The only question then is how much MySensors needs which isn't globally defined. I don't know the answer to that, but someone else might. In the end I'd say: test it. If all seems to work ok, then there's really not a problem.
    • Snyfir

      Send secured command to the gateway
      Development • • Snyfir  

      15
      0
      Votes
      15
      Posts
      1056
      Views

      alowhum

      @anticimex said in Send secured command to the gateway: Another hack you could make which is less "hard core" is to adjust the behavior of the weak security flag to never allow "nerfing" security settings for a node. That is, even with the weak flag set, a gw will never allow a node to stop requiring signed messages. @Anticimex That sounds like a good idea for a new official feature to me? Especially if it's just one line that needs to be commented out?
    • Snyfir

      Node not working very well when MY_DEBUG not defined
      Bug Reports • • Snyfir  

      11
      0
      Votes
      11
      Posts
      1309
      Views

      Snyfir

      @berkseo said in Node not working very well when MY_DEBUG not defined: My problem is temporarily solved(nrf5). Delivery confirmation to the controller come steadily if the file MyTransport.ccp (line 723) add: #if !defined(MY_DEBUG) wait(5); #endif based on: https://github.com/mysensors-rus/MySensors/commit/06f8083b785237b8d1b430a142fe3d9a3cd6f7ff The bug will be fix in the 2.3.2 release i suppose so
    • Snyfir

      Wait function with interrupt
      Development • • Snyfir  

      6
      0
      Votes
      6
      Posts
      797
      Views

      mfalkvidd

      @snyfir the radio uses so much power in listening mode that sleeping the mcu will not help much. To get low power, the radio must be turned off.
    • Snyfir

      NRF24L01 with Arduino Pro Mini at 1Mhz
      Troubleshooting • • Snyfir  

      9
      0
      Votes
      9
      Posts
      1276
      Views

      Snyfir

      @tekka said in NRF24L01 with Arduino Pro Mini at 1Mhz: @snyfir Can you run the same tests using the latest release, i.e. 2.3.1? It's working ! Thanks you very much @tekka and @mfalkvidd
    • Snyfir

      Range improved with delay
      Troubleshooting • • Snyfir  

      3
      0
      Votes
      3
      Posts
      581
      Views

      Snyfir

      @mfalkvidd I don't know i will try when the next release will get out
    • Snyfir

      Change parent node and resend when no ack received
      Development • • Snyfir  

      2
      0
      Votes
      2
      Posts
      632
      Views

      berkseo

      @snyfir You can manually write a new parent_id to the variable - _transportConfig.parentNodeId = ; ..This is not the only option