• Categories
    • Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. njbuch
    3. Topics
    N
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 20
    • Posts 66
    • Groups 0

    Topics

    • N

      Device rebooting, whats the problem?

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      5
      0 Votes
      5 Posts
      1k Views
      jkandasaJ
      @njbuch Do you know what the core problem is with newer versions of the framework? No, I do not have enough time to look into it
    • N

      Weird error message assitance

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      3
      0 Votes
      3 Posts
      1k Views
      N
      I think the bad version of the library from the other topic might be the problem here, as I think the device-code is presenting some vars that are newer posted values to. Will check this and return.
    • N

      Plans for ESP32 boards??

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      4
      0 Votes
      4 Posts
      820 Views
      T
      Ah okay, and what exact errors do you see? (never compiled this, but I can see if I am able to help you...)
    • N

      1.3 not working for me...

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      8
      0 Votes
      8 Posts
      959 Views
      N
      Ok, downgraded the java version by using the JAVA_HOME="/usr/lib/jvm/java-8-openjdk-amd64/jre/bin/java" line in /etc/environment - AND NOW IT WORKS FINE! Thanks again!
    • N

      MycontrollerDevice OTA challenges

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      9
      0 Votes
      9 Posts
      2k Views
      jkandasaJ
      @njbuch master branch works well with ESP8266 2.3.0 version. The problem comes when we upgrade to 2.4.0 and above. For now, you should revert back your esp8266 Arduino version to 2.3.0
    • N

      Tried the 1.3-SNAPSHOT and got problems with external server

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      9
      0 Votes
      9 Posts
      2k Views
      jkandasaJ
      @njbuch Do you face the issue with recent snapshot version? If yes, kindly report back the errors.
    • N

      Exception with "nan" messages

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      3
      0 Votes
      3 Posts
      1k Views
      T
      @njbuch If your DHT11 returns "nan" it means that it is not possible for the node to read the sensor, or received undeadable data, so the result should not even be send to mycontroller. You could try to make your sensor aware of this reading by using the isnan() function... Below is an example i have found. https://github.com/adafruit/DHT-sensor-library/blob/master/examples/DHTtester/DHTtester.ino // Check if any reads failed and exit early (to try again). if (isnan(h) || isnan(t) || isnan(f)) { Serial.println("Failed to read from DHT sensor!"); return; } (DHT11 is from a specs perspective not the best one to use, DHT22 performs much better...)
    • N

      Wunderground experience

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      2
      0 Votes
      2 Posts
      856 Views
      jkandasaJ
      @njbuch said in Wunderground experience: Do any of you have advice on how to create a rule that sends a message if there is an error on a gateway...?? You may create a script and run it periodically to check gateway status/message. Based on that you can send message/email, etc.,
    • N

      Problem connecting to AP (firmware or not)

      Watching Ignoring Scheduled Pinned Locked Moved MyControllerDevice (ESP8266)
      2
      0 Votes
      2 Posts
      1k Views
      N
      I decided to classify the device as defect, took another one that worked right out of the box. Any hints to make it easier to classify device as defect are still welcome!
    • N

      Weatherdata structure question

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      10
      0 Votes
      10 Posts
      2k Views
      skywatchS
      @Emenike https://forum.mycontroller.org/topic/371/json-parser/10 This is all I know about it so far.
    • N

      Getting data from Wunderground into influxdb

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      4
      0 Votes
      4 Posts
      1k Views
      jkandasaJ
      https://github.com/mycontroller-org/mycontroller/issues/412
    • N

      Mysql connection not working for me

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      10
      0 Votes
      10 Posts
      4k Views
      R
      @njbuch Have you had any success?
    • N

      Update from develop and cannot start...

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      4
      0 Votes
      4 Posts
      2k Views
      jkandasaJ
      @njbuch Do not copy original-my controller-dist-standalone-0.0.3.Final-SNAPSHOT-single.jar copy only mycontroller-dist-standalone-0.0.3.Final-SNAPSHOT-single.jar, delete all other jar files on /home/njb/Desktop/mycontroller/lib/
    • N

      Sleep and wakeup with loop?

      Watching Ignoring Scheduled Pinned Locked Moved MyControllerDevice (ESP8266)
      2
      0 Votes
      2 Posts
      1k Views
      jkandasaJ
      @njbuch I never tested sleep and wake up. Let me try and update, when I get time.
    • N

      Battery level missing?

      Watching Ignoring Scheduled Pinned Locked Moved MyControllerDevice (ESP8266)
      3
      0 Votes
      3 Posts
      2k Views
      N
      Super, thanks, will try that!
    • N

      Tips for fill in relay state data with influxdb

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      1
      0 Votes
      1 Posts
      902 Views
      No one has replied
    • N

      Examples of advanced control rules

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      17
      0 Votes
      17 Posts
      5k Views
      jkandasaJ
      @goranrad JavaScript, var myImports = new JavaImporter(java.lang, java.util); with(myImports) { var humidity_threshold = 78.4; var on_time = 10; // seconds humidity = mcApi.uidTag().getByUid("uid-humidity").getResource(); humidifier = mcApi.uidTag().getByUid("uid-humidifier").getResource(); if(parseFloat(humidity.value) < humidity_threshold){ humidifier.value = "1"; mcApi.sensor().sendPayload(humidifier); // sensd state Thread.sleep(on_time * 1000); humidifier.value = "0"; mcApi.sensor().sendPayload(humidifier); // sensd state } }
    • N

      Feeding data to influxDB

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      11
      0 Votes
      11 Posts
      5k Views
      jkandasaJ
      @njbuch To check available series on the databases do the query, SHOW SERIES. will list available series. For your configuration, you should have the following series and it is query, ESP_0B9892_Skur_fugtighed >> select * from ESP_0B9892_Skur_fugtighed ESP_0B9892_Skur_Temperature >> select * from ESP_0B9892_Skur_Temperature
    • N

      Dashboard stays at "Loading..."

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      3
      0 Votes
      3 Posts
      1k Views
      N
      Works, thanks!
    • N

      Mesh network and gateway?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      23
      0 Votes
      23 Posts
      16k Views
      N
      Yes it does. Thanks