Navigation

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

    Andrea_J

    @Andrea_J

    0
    Reputation
    4
    Posts
    275
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Andrea_J Follow

    Best posts made by Andrea_J

    This user hasn't posted anything yet.

    Latest posts made by Andrea_J

    • RE: 💬 AC-DC double solid state relay module

      @kaylestoinis In principle, I tried to do it this way and succeeded:

      • Installed diptrace free
      • opened the schematic file
      • exported to eagle
      • imported eagle file in KiCad
      • same for the board file
      posted in OpenHardware.io
      Andrea_J
      Andrea_J
    • RE: Relay Actuator with momentary (pulse) action

      @mfalkvidd Hello, today I used your suggestion, but in the meanwhile the code of RelayActuator.ino has changed a little bit.
      So this is what has changed and how I adjusted. This could be useful to another beginner like me.

      Change:

      digitalWrite(message.getSensor()-1+RELAY_PIN, message.getBool()?RELAY_ON:RELAY_OFF);
      

      to:

      if (message.getBool() == RELAY_ON) {
          digitalWrite(message.getSensor()-1+RELAY_PIN, RELAY_ON);
          wait(500);
          digitalWrite(message.getSensor()-1+RELAY_PIN, RELAY_OFF);
          }
      
      posted in Troubleshooting
      Andrea_J
      Andrea_J
    • RE: 💬 MySensors Gateway for Raspberry PI

      Thank you all for your answers!
      I'm not a programmer, the best I can do is to try to implement the software others created, sorry.
      But it would be very nice to have a controller and both radio on a single Rpi.
      If I'm not wrong, the RPi having 2 SPI chip enable, has the possibility to control those two radio. So it shold be just a software question, not a hardware one, isn't it?

      posted in OpenHardware.io
      Andrea_J
      Andrea_J
    • RE: 💬 MySensors Gateway for Raspberry PI

      Hello, I'm new to this forum.
      Is it possible to have both radio active at the same time on a RPi gateway? Why did you choose to have just one at a time?
      Thank you,
      Andrea

      posted in OpenHardware.io
      Andrea_J
      Andrea_J