• Categories
    • Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Popular
    Log in to post
    • All Time
    • Day
    • Week
    • Month
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics

    • All categories
    • M

      Email notification setup

      Watching Ignoring Scheduled Pinned Locked Moved Getting Started
      20
      0 Votes
      20 Posts
      4k Views
      skywatchS
      @skywatch Emails working fine for me now
    • skywatchS

      Ghost Nodes (Eeeek!).

      Watching Ignoring Scheduled Pinned Locked Moved Comments & Feedback
      20
      0 Votes
      20 Posts
      2k Views
      skywatchS
      @Daniele Thanks for sharing your knowledge. I still use the bootloader that is installed in China, so not the issue for me. I also specify node ID in the sketch to avoid issues with getting it assigned from the GW. I have had a much better experience lately with new quality power supply, but still had a weird crash this week. I woke to find the pi running, activity light flashing as it normally does, but no web page served, no ssh access and no activity light on the SSD. Within a few days I will re-build removing as many dupont connectors as I can and soldering wires instead. It's really the last thing I can think of, but I am seeing things improve which is a good thing!
    • jkandasaJ

      MyController 1.2.0.Final version released

      Watching Ignoring Scheduled Pinned Locked Moved Announcements release 1.2.0.final
      19
      1 Votes
      19 Posts
      3k Views
      skywatchS
      Hmmmmm....something is not right, see log below..... Argh, can't post the log in code tags or plain text, will email it to you.... It seems to be the strange characters in the log that prevent it from being copied and pasted, so sent you a screenshot instead.
    • skywatchS

      Multiple NRF24L01+ gateways

      Watching Ignoring Scheduled Pinned Locked Moved General
      19
      0 Votes
      19 Posts
      1k Views
      jkandasaJ
      @skywatch click on the gateway details page. there check how many nodes available for that gateway.
    • D

      Frequent errors related to Ethernet Gateways

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      19
      0 Votes
      19 Posts
      1k Views
      D
      @Avamander could you please post me an example of DHCP renewal? I investigated the ICMP ping idea but I've not been able to get something working, since the ping seems to interfere with GW code. Did you manage to use it in a mysensors GW?
    • J

      Field Label SensorID and spaghetti

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      19
      0 Votes
      19 Posts
      858 Views
      jkandasaJ
      @jeelet no problem, good to know that it works for you
    • D

      automatic backup

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      18
      0 Votes
      18 Posts
      3k Views
      D
      I can confirm that with 23 hours the scheduler works perfectly now! Thanks a lot!
    • 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 } }
    • B

      MySensor auto node ID

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      17
      0 Votes
      17 Posts
      11k Views
      B
      @mpp Guys in MySensors forum noticed I cleared EEPROM with zeros instead of 0xFF.
    • M

      problems with registering nodes and sensors

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      17
      0 Votes
      17 Posts
      3k Views
      T
      @mitjaxp Great news!!! Many thanks for posting the solution here :thumbs_up:
    • D

      Node ACK issue

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      17
      0 Votes
      17 Posts
      3k Views
      jkandasaJ
      @daniele no worries. I am happy that you find the root cause of the issue
    • J

      Setpoint for a Temperature

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      17
      0 Votes
      17 Posts
      1k Views
      J
      hello jkandasa "...but why do you want to send the configuration payload from the MyController calendar?" for each Node to be autonomous, the principle of distributed intelligence, no centralization, the MyC Controller can be turned off or the link cut (and also to test MyC ) "otherwise you can use your arduino sketch program" ... Yes MyC sends a time setting for the drift of the Arduino and also the management of time slots. (afterwards the Gateways will have a RTC clock) Thanks Parameters to handler select Resource By Quick ID and add your payload.
    • A

      possible to read xml file in custom widget?

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      16
      0 Votes
      16 Posts
      2k Views
      jkandasaJ
      @anduril I have removed the old method readXmlByXpath. Introduced XmlApi class to address xml stuff. mcApi.xml().read(uri, xpath) - Returns String uri - can be local disk path or http url xpath - should be a valid xpath mcApi.xml().readAsList(uri, xpath) - Returns List<Map<String, String>> uri - can be local disk path or http url xpath - should be a valid xpath mcApi.xml().update(uri, xpath, value) uri - should be local disk path xpath - should be a valid xpath value - String value will be replaced on xpath Is it also possible to update the values in the xml file? I don't mean adding new nodes or other fancy stuff, only updating for example /student/details/class from Three to Four. Yes, now it is possible with, mcApi.xml().update("/tmp/file-xml-demo.xml", "/student/details[1]/class", "Four"); As far as I read the xpath is just a pointer in the tree of an xml, so there is no option to manipulate items. Maybe there is another function available to do this. You can call readAsList, var list = mcApi.xml().readAsList("/tmp/file-xml-demo.xml", "//id[text()='4']/.."); // get first result var item = list.get(0); // get name, id, class item.get("name"); item.get("id"); item.get("class");
    • skywatchS

      1.3.0 and 400:Bad Request

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      16
      0 Votes
      16 Posts
      2k Views
      jkandasaJ
      @skywatch np, this one help you, https://github.com/mycontroller-org/mycontroller/issues/473
    • skywatchS

      Node EUI 0 question...

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      16
      0 Votes
      16 Posts
      1k Views
      skywatchS
      @jkandasa Yup - You appear to have fixed it!
    • F

      Forward payload list too short

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      16
      0 Votes
      16 Posts
      1k Views
      F
      @jkandasa increasing the memory did it. thanks again !
    • F

      Relay Node

      Watching Ignoring Scheduled Pinned Locked Moved General Discussion
      15
      0 Votes
      15 Posts
      9k Views
      G
      @jkandasa in fact of the matter is that the server does not return the values, although the sensor sends. before, I used EasyIoT server http://iot-playground.com/download and there it works.
    • G

      Timers and scripts

      Watching Ignoring Scheduled Pinned Locked Moved Scripts script javascript valve
      15
      1 Votes
      15 Posts
      8k Views
      jkandasaJ
      @imedia I guess it should be a bug with recent pi4j driver. Let me setup serial gateway locally and narrow down the issue. Thank you so much for your support!
    • T

      Howto make Mycontroller sd-card friendly? (Highly experimental!!)

      Watching Ignoring Scheduled Pinned Locked Moved Developers Zone
      15
      0 Votes
      15 Posts
      4k Views
      T
      @wanvo Hi, I assume you mean putting the influx database in ram?. yes that should be possible since this is just a ram disk.... but take precautions to powerfailures... power-off = data gone.....
    • D

      FOTA not working

      Watching Ignoring Scheduled Pinned Locked Moved Troubleshooting
      15
      0 Votes
      15 Posts
      2k Views
      skywatchS
      @guille That is a great resource, thanks. My only comment would be that channels 111-125 are missing in the current version.