Navigation

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

    Zwer2k

    @Zwer2k

    1
    Reputation
    5
    Posts
    3
    Profile views
    0
    Followers
    0
    Following
    Joined Last Online

    Zwer2k Follow

    Best posts made by Zwer2k

    • RE: Can't get ESP8266 gateway to work anymore

      Thank you fot the answer.
      I found out that the error was due to too new version of espressif8266. I had version 3.1.0 installed, but MySensors seems to work only with versions < 3.0.0. Otherwise the error comes up. Unfortunately I did not find any hint about this anywhere.

      posted in My Project
      Zwer2k
      Zwer2k

    Latest posts made by Zwer2k

    • RE: Can't get ESP8266 gateway to work anymore

      My problem was that the compiler did not give any errors. The code could be compiled and imported without any problems, only when booting did the aforementioned error message appear. The error message was not an error message, but the normal boot output, which is normally not visible, because a different baud rate is usually set (boot outputs occur with 74880 baud). All indications for the error were "problems with the voltage". The power supply had worked before, so why should it suddenly not work anymore? I checked the supply anyway and even soldered on another ESP as a test, but of course it didn't help. In the process, I destroyed an ESP12e and an RFM69 by short-circuiting them.

      posted in My Project
      Zwer2k
      Zwer2k
    • RE: 💬 Building a WiFi Gateway using ESP8266

      Sorry for crosspost.
      I found out that the error was due to too new version of espressif8266. I had version 3.1.0 installed, but MySensors seems to work only with versions < 3.0.0. Otherwise the error comes up. Unfortunately I did not find any hint about this anywhere.

      posted in Announcements
      Zwer2k
      Zwer2k
    • RE: Can't get ESP8266 gateway to work anymore

      Thank you fot the answer.
      I found out that the error was due to too new version of espressif8266. I had version 3.1.0 installed, but MySensors seems to work only with versions < 3.0.0. Otherwise the error comes up. Unfortunately I did not find any hint about this anywhere.

      posted in My Project
      Zwer2k
      Zwer2k
    • RE: 💬 Building a WiFi Gateway using ESP8266

      Hello,
      I have been using MySensors for a long time. First with serial gateway now with ESP8266 gateway. For months everything worked fine except for small dropouts. Due to dropouts I wanted to switch to current development branch, since then I can not get the gateway to work.
      The ESP delivers only the following output:

       ets Jan  8 2013,rst cause:2, boot mode:(3,6)
      
      load 0x4010f000, len 3460, room 16 
      tail 4
      chksum 0xcc
      load 0x3fff20b8, len 40, room 4 
      tail 4
      chksum 0xc9
      csum 0xc9
      v00051da0
      ~ld
      
      

      I use ESP07 with RFM69 and Standard Sketch. Compiled the code with Arduino IDE as well as with VS code, always with the same result.
      I disconnected RFM69 and checked the supply voltage. Have even used other calculator.
      Have also tested ESP12e.
      Erase Flash I have also already done.
      However, when I run other code on the ESP, it runs without problems.
      Erase Flash I have also already done.
      I just don't understand it.

      #define MY_DEBUG
      #define MY_BAUD_RATE 115200
      #define MY_RADIO_RFM69
      #define MY_IS_RFM69HW
      
      #define MY_GATEWAY_ESP8266
      
      #define MY_WIFI_SSID "my ssid"
      #define MY_WIFI_PASSWORD "my pw"
      
      #define MY_HOSTNAME "MySensors-GW"
      #define MY_PORT 5003
      #define MY_GATEWAY_MAX_CLIENTS 3
      #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
      
      #include <MySensors.h>
      
      void setup()
      {
      }
      
      void presentation()
      {
      }
      
      void loop()
      {
      }
      
      posted in Announcements
      Zwer2k
      Zwer2k
    • Can't get ESP8266 gateway to work anymore

      Hello,
      I have been using MySensors for a long time. First with serial gateway now with ESP8266 gateway. For months everything worked fine except for small dropouts. Due to dropouts I wanted to switch to current development branch, since then I can not get the gateway to work.
      The ESP delivers only the following output:

       ets Jan  8 2013,rst cause:2, boot mode:(3,6)
      
      load 0x4010f000, len 3460, room 16 
      tail 4
      chksum 0xcc
      load 0x3fff20b8, len 40, room 4 
      tail 4
      chksum 0xc9
      csum 0xc9
      v00051da0
      ~ld
      
      

      I use ESP07 with RFM69 and Standard Sketch. Compiled the code with Arduino IDE as well as with VS code, always with the same result.
      I disconnected RFM69 and checked the supply voltage. Have even used other calculator.
      Have also tested ESP12e.
      Erase Flash I have also already done.
      However, when I run other code on the ESP, it runs without problems.
      Erase Flash I have also already done.
      I just don't understand it.

      #define MY_DEBUG
      #define MY_BAUD_RATE 115200
      #define MY_RADIO_RFM69
      #define MY_IS_RFM69HW
      
      #define MY_GATEWAY_ESP8266
      
      #define MY_WIFI_SSID "my ssid"
      #define MY_WIFI_PASSWORD "my pw"
      
      #define MY_HOSTNAME "MySensors-GW"
      #define MY_PORT 5003
      #define MY_GATEWAY_MAX_CLIENTS 3
      #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
      
      #include <MySensors.h>
      
      void setup()
      {
      }
      
      void presentation()
      {
      }
      
      void loop()
      {
      }
      
      posted in My Project
      Zwer2k
      Zwer2k