Navigation

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

    Topics created by sineverba

    • sineverba

      Mysensors 2.2.0: need to force restart of nodes if controller or gateway are not available. How to do?
      Troubleshooting • • sineverba  

      7
      0
      Votes
      7
      Posts
      1735
      Views

      gohan

      In arduino IDE, boards manager
    • sineverba

      Can please someone check if my schema for RFM69 is right?
      Hardware • • sineverba  

      8
      0
      Votes
      8
      Posts
      1397
      Views

      sineverba

      @sundberg84 said in Can please someone check if my schema for RFM69 is right?: @sineverba - 1 rule of debugging, remove as much as possible. Can you try to use a 3.3v MCU directly with your breakout board? That way you can eliminate that the problem might be level shifting and work down the wiring to a minimum? sure golden rule. It works. Now it works. Directly on a 3v3 mini. Removed all level shifter. Now it works. Thank you for the support!
    • sineverba

      Wrong instructions on gateway for personalizer?
      Development • • sineverba  

      20
      0
      Votes
      20
      Posts
      1685
      Views

      Anticimex

      @gohan don't suggest people hack in MyConfig.h because it's the wrong thing to do.
    • sineverba

      Why a node installed from several days try find parent?
      Troubleshooting • • sineverba  

      8
      0
      Votes
      8
      Posts
      1673
      Views

      mfalkvidd

      @sineverba great! Thanks for reporting back.
    • sineverba

      Signing too heavy for Atmega328 on branch-development. Looking for hints
      Troubleshooting • • sineverba  

      10
      0
      Votes
      10
      Posts
      1194
      Views

      Anticimex

      @sineverba not really. If you set the weak flag on the gateway it will only require signatures from nodes that require signatures themselves. This is described in the signing documentation.
    • sineverba

      Atmega328+Pro Mini+Nano bootloader uploader
      My Project • • sineverba  

      1
      1
      Votes
      1
      Posts
      833
      Views

      No one has replied

    • sineverba

      Software signing troubles swapping NRF24s radios and / or Arduinos [Sketches and pics inside]
      Troubleshooting • • sineverba  

      5
      1
      Votes
      5
      Posts
      926
      Views

      Anticimex

      @sineverba regarding antenna swap, you probably affected rf performance and security require lossless rf link. As for switching between different atmga328p boards, the only difference is could think of would be that the radio power supply is also affected and again degrade the radio performence. If you get NACKs in the log, that is the problem.
    • sineverba

      Software signing suddenly stop working
      Troubleshooting • • sineverba  

      28
      0
      Votes
      28
      Posts
      4737
      Views

      Anticimex

      @sineverba great that you got it working. Yes, signing require a solid radio link. It is not so much a matter of "signing is not working" but rather "radio is not working".
    • sineverba

      Issues between Wifi (router) and NRF24L01
      Hardware • • sineverba  

      10
      0
      Votes
      10
      Posts
      4906
      Views

      sineverba

      It seems that moving to last channel all nodes and gateways solved my trouble. In this moment wifi is under heavy load (upload several video from several phones and tablet) and traffic leds never light the infamous red... neither nodes lost their gateway
    • sineverba

      Do I need to implement the IRQ on future PCBs for nodes?
      Development • • sineverba  

      5
      1
      Votes
      5
      Posts
      1401
      Views

      gohan

      Make a route for irq with a couple of pads that you can bridge them to enable the irq to either d2 or d3 so that you can disable the irq feature in case you need those pins for something else.
    • sineverba

      Node with DS18B20+Relay dies, also with watchdog
      Development • • sineverba  

      6
      0
      Votes
      6
      Posts
      1867
      Views

      Yveaux

      @sineverba See here (bit old, but most is still valid): https://forum.mysensors.org/topic/1004/watchdog-on-ethernet-gateway MySensors does globally define a watchdog interrupt handler (for sleeping nodes, but always present). Keep that in mind if you want to do something with the interrupt handler.
    • sineverba

      How to implement whatchdog for Arduino Serial Gateway
      Development • • sineverba  

      1
      0
      Votes
      1
      Posts
      518
      Views

      No one has replied

    • sineverba

      Is my battery drain correct? (Atmega bare @8Mhz + SI7021 + nrf)
      Hardware • • sineverba  

      3
      0
      Votes
      3
      Posts
      1274
      Views

      sineverba

      @Nca78 Thank you for your answer! I wil test and I will update, if any... For the capacitors, yes, I use 40V rated. What's your hint on select them? Thank you another time
    • sineverba

      Some issues about uplink available or no
      Troubleshooting • • sineverba  

      3
      0
      Votes
      3
      Posts
      728
      Views

      sineverba

      Thank you... But isTransportReady seems true also if I leave the Arduino Gateway with reset pushed forever. ONly get false when I disconnect the power from Arduino. I'm thinking to use the receiveTime method. But, if controller (and gateway) are down, what the value returned from receivedTime? On another words, how can I check if time is returning? Because with gateway shutdown on Serial I did not read nothing from that function (instead of time). Thank you!
    • sineverba

      Issue with Arduino + NRF24L01 + Raspberry when current in home goes "low"
      Troubleshooting • • sineverba  

      7
      0
      Votes
      7
      Posts
      1216
      Views

      sineverba

      @sundberg84 said in Issue with Arduino + NRF24L01 + Raspberry when current in home goes "low": @sineverba - what @gohan said. There is something called a watchdog which can either be in the software or you can have a external component that is connected to the arduino reset pin. The arduino needs to ping the timer and if the arduino hangs and stops pinging the timer it will send a signal and reset the arduino. I did try to introduce Watchdog in my script. But... Arduino is not re-booted, if I use a function with wait inside. Is it normal? This is the function that prevent watchdog to reset the board.... /** * Light the LED status * * @since 2.0 */ void lightLedStatus() { int k = 0; for ( k = 0; k < WAIT_LOOPS; k++) { digitalWrite(PIN_LED_STATUS,HIGH); wait(10); // 5 * 1000 millisends = 5 seconds; digitalWrite(PIN_LED_STATUS,LOW); wait(4990); } }
    • sineverba

      Atmega sleeping: power consumption lesser with 10uF capacitor
      Hardware • • sineverba  

      1
      0
      Votes
      1
      Posts
      746
      Views

      No one has replied

    • sineverba

      Unable to get relay status from Domoticz
      Development • • sineverba  

      13
      0
      Votes
      13
      Posts
      3522
      Views

      sineverba

      @gohan Totally not updated. I did upload just now the @boots33 sketch in synch and it works. So it is my fault... But I cannot find! I re-start from fresh (err.. from boots sketch).
    • sineverba

      Arduino as Gateway via USB crash on PI
      Development • • sineverba  

      6
      0
      Votes
      6
      Posts
      1718
      Views

      mfalkvidd

      @sineverba if you can, check with a multimeter that the usb hub grounds the different usb ports together. If it doesn't, that could be the cause.
    • sineverba

      ATMEGA 328 Bare + DHT22 + radio with 2xaa. Need Step Up and a hint from you
      Hardware • • sineverba  

      6
      0
      Votes
      6
      Posts
      1202
      Views

      rozpruwacz

      well yes, that will do the same, but i think that using for example MCP1640C (you can check the example project here https://www.openhardware.io/view/279/Adjustable-Boost-Converter-with-Pass-Through) will result in simpler schematic
    • sineverba

      Looking for ATMEGA328p pcb + radio + sensors
      Hardware • • sineverba  

      6
      0
      Votes
      6
      Posts
      1465
      Views

      sundberg84

      @sineverba - Nope, gerber is the format for the manufacturer. You have to open .sch for the schematics and .brd for the pcb layout. I recommend youtube as a great source for Eagles tutorials!
    • sineverba

      Looking for a simple guide MySensors+Domoticz (Raspi as controller with NRF)
      Troubleshooting • • sineverba  

      8
      0
      Votes
      8
      Posts
      2930
      Views

      sineverba

      @mfalkvidd yes, I'm using node 2 and mysensor 1 gateway. Unfortunately I don't get on work 2.0 gateway..... Next week I will restart with a fresh Raspbian, maybe I will solve my initial issues... Thank you very much!