Navigation

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

    Posts made by Jonathan Caes

    • RE: 💬 Sonoff relay using MySensors ESP8266 wifi or mqtt gateway

      @efflon Do you know how I can setup the sonoff gateway on the Vera Edge? I used the MySensors plugin to add the sonoff to the network but can't get the relay to toggle.. 😕 Help is much appreciated!! Thanks!!

      posted in OpenHardware.io
      Jonathan Caes
      Jonathan Caes
    • Create multiple gateway devices in Vera

      Hi All,

      I have a serial gateway running perfectly on my Vera controller. But now when I try to create a secondary device for an ethernet gateway it won't create the device.

      I followed the step as provided to create a device with the D_Arduino1.xml file and then click create device. when I do that a pop up comes up and says "Device created", but when i go to my devices no new device is added.

      Does somebody know the solution to this problem?

      posted in Vera
      Jonathan Caes
      Jonathan Caes
    • RE: 💬 Sonoff relay using MySensors ESP8266 wifi or mqtt gateway

      How can I create a new device in Vera for a gateway? Can't seem to get that working 😕

      posted in OpenHardware.io
      Jonathan Caes
      Jonathan Caes
    • RE: 💬 Building a WiFi Gateway using ESP8266

      Hi,
      Is it possible to use this setup without the nrf24l01 atached, so that i can use the esp8266 just as a sensor (not as a gateway)?

      posted in Announcements
      Jonathan Caes
      Jonathan Caes
    • RE: 💬 Building an Ethernet Gateway

      Hi everyone,
      Is it possible to build an ethernet gateway with a RFM69 radio module?
      Because I tried this a while ago and that didn't work because of a software problem in the library's. Is that already solved or not?
      Thanks!

      posted in Announcements
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Tris This is the code I used, it was sugested by Frédéric. With this I don't need to change anything to the myconfig.h file, or do I?

      /**
       * The MySensors Arduino library handles the wireless radio link and protocol
       * between your home built sensors/actuators and HA controller of choice.
       * The sensors forms a self healing radio network with optional repeaters. Each
       * repeater and gateway builds a routing tables in EEPROM which keeps track of the
       * network topology allowing messages to be routed to nodes.
       *
       * Created by Henrik Ekblad <henrik.ekblad@mysensors.org>
       * Copyright (C) 2013-2015 Sensnology AB
       * Full contributor list: https://github.com/mysensors/Arduino/graphs/contributors
       *
       * Documentation: http://www.mysensors.org
       * Support Forum: http://forum.mysensors.org
       *
       * This program is free software; you can redistribute it and/or
       * modify it under the terms of the GNU General Public License
       * version 2 as published by the Free Software Foundation.
       *
       *******************************
       *
       * REVISION HISTORY
       * Version 1.0 - Henrik EKblad
       * Contribution by a-lurker and Anticimex,
       * Contribution by Norbert Truchsess <norbert.truchsess@t-online.de>
       * Contribution by Tomas Hozza <thozza@gmail.com>
       *
       *
       * DESCRIPTION
       * The EthernetGateway sends data received from sensors to the ethernet link.
       * The gateway also accepts input on ethernet interface, which is then sent out to the radio network.
       *
       * The GW code is designed for Arduino 328p / 16MHz.  ATmega168 does not have enough memory to run this program.
       *
       * LED purposes:
       * - To use the feature, uncomment MY_DEFAULT_xxx_LED_PIN in the sketch below
       * - RX (green) - blink fast on radio message recieved. In inclusion mode will blink fast only on presentation recieved
       * - TX (yellow) - blink fast on radio message transmitted. In inclusion mode will blink slowly
       * - ERR (red) - fast blink on error during transmission error or recieve crc error
       *
       * See http://www.mysensors.org/build/ethernet_gateway for wiring instructions.
       *
       */
      
      // Enable debug prints to serial monitor
      #define MY_DEBUG
      
      // Enable and select radio type attached
      #define MY_RADIO_RFM69
      #define MY_RFM69_FREQUENCY RF69_433MHZ
      
      // La définition des PIN ci dessous n'est pas nécessaire, car c'est celle de base
      //#define MY_RF69_IRQ_PIN 2
      //#define MY_RF69_SPI_CS 10
      
      // Enable gateway ethernet module type
      #define MY_GATEWAY_W5100
      
      #define MY_IP_ADDRESS 192,168,0,22
      #define MY_IP_SUBNET_ADDRESS 255,255,255,0
      // The port to keep open on node server mode / or port to contact in client mode
      #define MY_PORT 5003
      
      // The MAC address can be anything you want but should be unique on your network.
      // Newer boards have a MAC address printed on the underside of the PCB, which you can (optionally) use.
      // Note that most of the Ardunio examples use  "DEAD BEEF FEED" for the MAC address.
      #define MY_MAC_ADDRESS 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED
      
      // Enable inclusion mode
      #define MY_INCLUSION_MODE_FEATURE
      // Enable Inclusion mode button on gateway
      //#define MY_INCLUSION_BUTTON_FEATURE
      // Set inclusion mode duration (in seconds)
      #define MY_INCLUSION_MODE_DURATION 60
      // Digital pin used for inclusion mode button
      //#define MY_INCLUSION_MODE_BUTTON_PIN  3
      
      
      // Flash leds on rx/tx/err
      #define MY_LEDS_BLINKING_FEATURE
      // Set blinking period
      #define MY_DEFAULT_LED_BLINK_PERIOD 300
      #define MY_DEFAULT_ERR_LED_PIN 4  // Error led pin
      #define MY_DEFAULT_RX_LED_PIN  5  // Receive led pin
      #define MY_DEFAULT_TX_LED_PIN  6  // Transmit led pin
      
      
      #if defined(MY_USE_UDP)
        #include <EthernetUdp.h>
      #endif
      #include <Ethernet.h>
      #include <MySensors.h>
      
      
      void setup() {
      }
      
      void presentation() {
      }
      
      void loop() {
       }
      }
      
      
      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Tris I also get the same debugging when using the MQTTclientgateway..

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Tris Cut the reset connection and tried again, did not work.. still getting the same debugging info.. 😞

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Tris That can indeed be the fault, because i was looking at the hoop up page from sparfun (https://learn.sparkfun.com/tutorials/rfm69hcw-hookup-guide#hardware-overview) and thought I read that you have to connect the reset to ground, but that might be not true after reading it again. So i'll try doing that and see what happens.

      Thanks!!

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Tris But I don't necessarily have to use the mqttw5100gateway, do I? Because I don't really know what you can do with mqtt, what the advantage is of that.

      I'm also using seperate 3.3V and a 4.7µF capacitor for the radio.

      Here is my schematic I used. I etched my own pcb for this and I think everything looks correct.
      0_1484907018198_upload-9caf576c-a61e-4bf4-90ba-e108c51e4a94

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Frédéric-Grandjean
      Hi again, because I'm a mac user didn't find the w5100.h file. after I took my laptop and searched for the file I found it.
      after I replaced the code in the w5100.h file and changed the gateway code and complied I got these errors: 0_1484422292389_upload-59769e3e-1f23-4376-a3df-2c902afcdbeb
      and it went on.

      but when I changed the code in the w5100.h file from this:

      #elif defined(W5100SPIPATCH)	
            inline static void initSS()    { DDRD  |=  _BV(7); };
            inline static void setSS()     { cli(); PORTD &= ~_BV(7); };
            inline static void resetSS()   { PORTD |=  _BV(7); sei(); };
          #endif
      

      To this:

      #else	//This doesn't work => elif defined(W5100SPIPATCH)
            inline static void initSS()    { DDRD  |=  _BV(7); };
            inline static void setSS()     { cli(); PORTD &= ~_BV(7); };
            inline static void resetSS()   { PORTD |=  _BV(7); sei(); };
          #endif
      

      it compiled without any errors.
      So I uploaded the code and opened the serial debugging window in which I get this:
      0_1484423132127_upload-e0346356-c42c-4039-add5-612525c85127
      I don't know how to fix this, do you know maybe?

      Thanks!!
      Greetings!

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Frédéric-Grandjean
      Hey, I'm finally working on the gateway.
      But the problem is that I can't seem to find the w5100.h file.. :s
      Can you maybe tell me where I can find it?

      Greetings

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Frédéric-Grandjean Have to wait untill my level converters are arriving.. also don't have enough transistors laying around to make one my self.. did you use a level converter, probably you did?

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      @Frédéric-Grandjean
      Thank you for replying so quickly!
      I`m going to try this as quickly as possible and let you know how it went.
      Thanks!

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes
    • RE: [SOLVED] W5100 Ethernet gateway with RFM69 Radio fails at init

      Hi, Frédéric Grandjean

      I'm also trying to build an ethernet gateway with the rfm69 radio's. But also have some errors when testing the code. Also I'm not sure I connected everything the right way, because there's not that info about those modules.
      Since you have this al working now, is it possible for me to take a look at your code and maybe show me how you connected everything?

      Thank you!
      Jonathan

      posted in Troubleshooting
      Jonathan Caes
      Jonathan Caes