Subcategories

  • RSS not displaying - anyone able to help?

    5
    0 Votes
    5 Posts
    1k Views
    skywatchS
    Thanks for taking the time to look into this and for letting me know the situation. It's not a big deal, but I wanted to be sure that it wasn't me doing something wrong.
  • Custom Widget to send payload to sensor variable

    7
    0 Votes
    7 Posts
    3k Views
    M
    With Sensor custom buttons I can add only buttons ... I need to add also other HTML info ... Can I embed those buttons in my custom HTML? Thanks a lot for your answers
  • OTA firmware update

    9
    0 Votes
    9 Posts
    5k Views
    jkandasaJ
    @dirkc Inclusion mode not supported by MyController and there is a request from the gateway. So it says I won't support. I guess some other environment issue might get resolved on restart.
  • Automatic stairs lighting +MySensors

    1
    1 Votes
    1 Posts
    889 Views
    No one has replied
  • "Send email" questions

    5
    0 Votes
    5 Posts
    2k Views
    B
    @jkandasa Yes, followed https://easyengine.io/tutorials/linux/ubuntu-postfix-gmail-smtp/ and got it working in short time.
  • Custom Dashboard Item to Trigger JavaScript/Operations

    2
    0 Votes
    2 Posts
    1k Views
    jkandasaJ
    @gouds You can create dummy sensor variable(virtual sensor) and add a rule to trigger when you receive some data on that sensor variable. Note: uncheck Ignore duplicate on rule definition.
  • MYSQL Workbench

    10
    0 Votes
    10 Posts
    4k Views
    C
    @jkandasa The purge in the Snapshot is working great.
  • Windows 10 Installation

    3
    0 Votes
    3 Posts
    1k Views
    jkandasaJ
    @cjm4909 You need to install Java 8 or above version. There is no other requirement.
  • How to show several sensor readings in a single widget

    4
    0 Votes
    4 Posts
    2k Views
    jkandasaJ
    @Anduril You have to create UidTag for required variables, For example. If you want to show outside temperature, humidity and precipitation. Create UidTag for all these variables as follows, outside-temperature >> for outside temperature humidity >> for Humidity precipitation >> to show precipitation Note: Creat UidTag for the above value. Script: var myImports = new JavaImporter(java.io, java.lang, java.util, java.text); with(myImports) { var temperature= mcApi.uidTag().getByUid("outside-temperature").getResource(); var humidity= mcApi.uidTag().getByUid("humidity").getResource(); var precipitation= mcApi.uidTag().getByUid("precipitation").getResource(); } Now create an HTML template to show these values, <div>Outside temperature: ${temperature.value}°C</div> <div>Humidity: ${humidity.value}%</div> <div>${precipitation.value}mm precipitation during the last 24h</div> Use this script and template on dashboard custom widget.
  • Native app support via Imerihome possible via REST api

    2
    0 Votes
    2 Posts
    1k Views
    jkandasaJ
    @edwardb I tried year back. Failed on auth support. Let me try once again and update the status.
  • Synchronization between rules and timer handlers

    6
    0 Votes
    6 Posts
    2k Views
    B
    @jkandasa said: @benya Do you face any issue with out Synchronization? I face potential issue in the following scenario: multiple PIRs tigger rule that reads/writes global variable and disables/enables timer timer reads global variable as well timer has counter=1 and self-disables when triggered Therefore I need to synchronize access to the global variable and modifications of timer object. Otherwise global variable and timer could be left in an unexpected state.
  • Controlling global variable and timer from Groovy

    script groovy timer
    9
    0 Votes
    9 Posts
    3k Views
    jkandasaJ
    @benya Thanks for the update, let me check mcApi.timer().update(myTimer)
  • Send Payload but NACK

    script custom widget javascript smartsleep queue
    7
    0 Votes
    7 Posts
    3k Views
    T
    @jkandasa OHHHH wonderfull !!! I will try this ! Many thanks !
  • Many Hearbeat request at the same time

    3
    0 Votes
    3 Posts
    2k Views
    T
    @jkandasa Thanks for your response I already use "aliveCheckInterval" propreties with value 7 (minutes) (you have create this after my request : http://forum.mycontroller.org/topic/109/best-way-to-check-status-of-mysensors-sleeping-node/3 , many thanks for this) But my Smart Sleep nodes have a particular way of doing his jobs : They sleep during X seconds for an number of loop without Smart Sleep (so no heartbeat sended, no wait for response) and after T (threshold) loops , do a smart sleep, then restart his cycle... For example : My Node do normal sleep during 300 seconds (X) with threshold 10, so after 10 loop of normal sleep, it makes a smart sleep (heartbeat send + wait 2 seconds). I do this for battery saving (less wait time). Maybe I'm wrong and I should always do smart sleep.... Or set aliveCheckInterval to 50 minutes (300*10)
  • Need volunteer to test dualboot OTA with MyController

    ota dualboot mysensors
    7
    0 Votes
    7 Posts
    3k Views
    T
    @jkandasa Okay, will test as soon as my external flash arrives! (sorry for the delay.... tought i had the i2c flash around but unfortunately not...)
  • Is it possible to use device with udp protocol ?

    5
    0 Votes
    5 Posts
    2k Views
    Stephan35S
    @jkandasa said: Give me some hints, if you have any? ok, i go again with udp and node-red , i will send you back all i understood. 2 way for node , first in loop every 150ms max , listen udp port (i will confirm back). second , use async udp of menodev wich work fine for me. So that mean MyController maybe have to get also async udp to unmiss udp data. I meet some issue with broadcasting, because i created mesh in udp. Also i used ascii udp datagramm , basic but easiest way for me : something like "down|nodename|get|gpio1" "up|nodename|result|gpio1|0" "down|nodename|set|gpio1|1" Every node can read udp, so , it is very important to specify way and kind of action. Hope will help. Best regards.
  • How to pass custom value relative to current time

    script javascript
    10
    0 Votes
    10 Posts
    3k Views
    jkandasaJ
    @benya have a look on http://forum.mycontroller.org/category/24/scripts and TAG with SCRIPT
  • ZWave support?

    8
    0 Votes
    8 Posts
    3k Views
    Stephan35S
    Coninued on github.
  • Exporting Sensor Data

    5
    0 Votes
    5 Posts
    2k Views
    D
    Issue created: https://github.com/mycontroller-org/mycontroller/issues/361
  • Feeding data to influxDB

    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

0

Online

576

Users

528

Topics

3.4k

Posts