• Categories
    • Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. ragflyer
    3. Topics
    R
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 9
    • Posts 24
    • Groups 0

    Topics

    • R

      Open and export from H2 Database

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      4
      0 Votes
      4 Posts
      1k Views
      jkandasaJ
      @ragflyer I have fixed @cimba007 solution. yet to fix it fully. Your log says something like your trying on the corrupted database. can you copy the running database and try again. Kindly do a backup before any actions. I will try to publish json API. We can use it anywhere.
    • R

      Connect Sonoff running Tasmota

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      1k Views
      R
      Found a workaround using Node-Red, for newbies like me this might be helpful: Flash Tasmota to your Sonoff, set MQTT topic to e.g. sonoff-1234, full topic to e.g. /smarthome/%prefix%/%topic%/ Install Node-Red, add node-red-dashboard. Drag a MQTT input, set topic to /smarthome/stat/sonoff-1234/POWER Add a switch, uncheck "If msg arrives on input, pass through to output:", let it show state of the input, set on payload to String "ON", off payload to "OFF" Add a MQTT output, set topic to /smarthome/cmnd/sonoff-1234/power Now you should have a working switch on the Node-Red dashboard, it should always show the state of the sonoff. To show the state of the switch in Mycontroller, add a Function and connect it to MQTT input: if (msg.payload == "ON") { msg.payload = 1; } else if(msg.payload == "OFF") { msg.payload = 0; } return msg; There is a replace function for message payloads, you could use that instead. Connect a MQTT output to the function, set topic to mygateway-out/<id>/<child-id>/1/0/2 This will post the converted on/off message to mysensors format to be read by the mycontroller mqtt gateway.
    • R

      Graphs hang "Loading..." after few minutes

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      4
      0 Votes
      4 Posts
      1k Views
      jkandasaJ
      @ragflyer Yes, I guess InfluxDB will give you better result for metrics
    • R

      Adding data from the past

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      2
      0 Votes
      2 Posts
      1k Views
      jkandasaJ
      @ragflyer I do not see any option on MQTT. For now, we do not have any option. Let me create a REST API to support this feature. Kindly create a ticket to track this issue. Thank you!
    • R

      PID-Controller implementation

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      4
      0 Votes
      4 Posts
      2k Views
      jkandasaJ
      @ragflyer Let me check this
    • R

      keystore and certificate on client

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      2k Views
      R
      OK that worked. Few more things to note for newcomers: password and name of file is stored in mycontroller config file Common Name (keytool asks for First and Lastname) is where you put the server/domain name or IP adress as the browser will check this against the certificate. Now export, copy to client, after import on MacOS find the cert in the keyring (search IP), right click, information, trust, set SSL to always trust. Now the browser should accept it without asking you.
    • R

      Time zone issue

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      5
      0 Votes
      5 Posts
      2k Views
      R
      Issue was related to Google Chrome only. Resetting browsing data got it back into the correct time zone.
    • R

      MQTT sample setup on ESP8266

      Watching Ignoring Scheduled Pinned Locked Moved MyControllerDevice (ESP8266)
      29
      1 Votes
      29 Posts
      25k Views
      Stephan35S
      Here is some good news !!! First after getting update from github , here is some screen shot from GUI [image: 1487795384901-capture-d-%C3%A9cran_2017-02-22_21-29-34.png] We can see that MyController is in the list ! Also, Esp send correctly data to mosquitto (which i use by default) [image: 1487795641098-capture-d-%C3%A9cran_2017-02-22_21-33-47.png] [image: 1487795523057-capture-d-%C3%A9cran_2017-02-22_21-31-14.png] Now , i have to test and learn to send data , like temperature or lighmeter . Thank you for your time and your support.
    • R

      Same or different child IDs for multi-sensor nodes

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      2k Views
      jkandasaJ
      @ragflyer Handling several sensors all about your configuration on your MySensors code. If you configure multiple sensors on single child id you will get it. Please note you can not use more than on similar type sensor on same child id. On dashboard you can group whatever you want.