• Sunrise Sunset

    Comments & Feedback
    8
    0 Votes
    8 Posts
    551 Views
    skywatchS
    @jkandasa Great stuff - another amazing new feature for V2.0!
  • 1 Votes
    5 Posts
    372 Views
    P
    Hi Folks, sorry for the delay in responding... only just got a chance to get back to this again... @skywatch Yes, I just checked and found I was also unable to select a sensor variable for any object on the dashboard either - the Sensors variable list was just empty. Thanks! @jkandasa This snapshot version fixed the issue for me as well - thank you very much!!
  • 1 Votes
    9 Posts
    579 Views
    skywatchS
    @avamander Thanks my friend! OK Mr. MyController prog, How about SOURCE and ATTRIBUTE ?
  • Need Help with DualOptiboot Fota

    General Discussion
    6
    0 Votes
    6 Posts
    511 Views
    S
    @jkandasa Thank you for your help: I summarize what you asked me to do and which works now: The (minimum) equipment to test FOTA: I have a ATMega 328p BareBones (8MHz internal) + led attached to PB1 (pin15)+ SPI Flash memory + 3.3v regulator + RFM69HCW. Install ArduinoISP program to ProMini (Programmer) Connect MySensors board on ProMini (ArduinoISP) via ISP header Select, Programmer="Arduino as ISP", Board:"Sensbender Micro", Processor:"Atmega 328 8Mhz" Now click on "Burn Bootloader". bootloader will be loaded on MySensors board Remove ISP header and remove ProMini from your computer Connect MySensors board to USB via FTDI connector Upload MySensors sketch(OTA should be enabled on the sketch) to MySensors board Now the MySensors node will appear in MyController server. Modify the MySensors sketch and upload it to MyController Now trigger "Firmware upload" from MyController server page. This is the first sketch to upload one time with the USB to FTDI connector : //pr1: minimal sketch for fota with blink led #define blinkTime 200 #define SKETCH_NAME "SensBender Led 200 -70" //25 caracteres max #define SKETCH_VERSION "pr1" //===== RFM config ===== // Enable and select radio type attached #define MY_RADIO_RFM69 //#define MY_DEBUG_VERBOSE_RFM69 //#define MY_DEBUG_VERBOSE_RFM69_REGISTERS #define MY_RFM69_NEW_DRIVER //#define MY_RFM69_ATC_MODE_DISABLED #define MY_RFM69_ATC_TARGET_RSSI_DBM (-70) // target RSSI -70dBm//BUG //#define MY_RFM69_MAX_POWER_LEVEL_DBM (20) // max. TX power 10dBm = 10mW//MARCHE #define MY_RFM69_FREQUENCY (RFM69_868MHZ) #define MY_IS_RFM69HW //with H(CW) //#define MY_RFM69HW (true) //#define MY_RFM69_NETWORKID (100) //#define MY_RFM69_BITRATE_MSB (RFM69_BITRATEMSB_1200) //#define MY_RFM69_BITRATE_LSB (RFM69_BITRATELSB_1200) // Enable repeater functionality for this node //#define MY_REPEATER_FEATURE #define MY_DEBUG //===== LED ===== #define LED_BUILTIN 9 //pb1 pin15 //===== This Node ID ===== #define MY_NODE_ID 0x02 //===== Enable OTA feature ===== #define MY_OTA_FIRMWARE_FEATURE #define MY_OTA_FLASH_SS (8) //pb0 pin14 #define MY_OTA_FLASH_JDECID 0x00 //0x00 if you don't know #include <MySensors.h> //=================================== //= SETUP = //=================================== void setup() {//pas besoin de Serial.begin(115200) pinMode(LED_BUILTIN, OUTPUT); Serial.print("Start "); Serial.print(SKETCH_NAME); Serial.print(" "); Serial.println(SKETCH_VERSION); }//FIN du SETUP //========================================== //= PRESENTATION = //========================================== void presentation() { // Send the sketch version information to the gateway and controller sendSketchInfo(SKETCH_NAME, SKETCH_VERSION); } // FIN de PRESENTATION //=================================== //= LOOP = //=================================== void loop() { digitalWrite(LED_BUILTIN, HIGH); Serial.print("LED ON "); wait(blinkTime); digitalWrite(LED_BUILTIN, LOW); Serial.println("LED OFF "); wait(blinkTime); }// FIN de LOOP Change blinkTime time and compil the sketch , then upload firmware .hex with MYCONTROLLER. Enjoy
  • 0 Votes
    6 Posts
    425 Views
    jkandasaJ
    @sandr I believe netty dependent package upgrade might resolve this warning. But I am not sure at this point.
  • Communication between 2 pi each running mycontroller

    Developers Zone
    5
    0 Votes
    5 Posts
    1k Views
    skywatchS
    @daniele Thanks for the suggestions. I know I can get the end result I want with operations so probably go that route for now and see what new surprises version 2 brings!
  • change telegram id?

    Troubleshooting
    9
    0 Votes
    9 Posts
    7k Views
    skywatchS
    @jkandasa Thank you sooooo much for that! It was the crucial bit of info/understanding that I was missing. It works fine now! If this turns out to be the same in myc2.0, I'll write a tutorial for it.
  • Merry Christmas and a Happy New Year!

    General Discussion
    7
    2 Votes
    7 Posts
    513 Views
    skywatchS
    @skywatch admin/admin - got it now!
  • 0 Votes
    5 Posts
    383 Views
    jkandasaJ
    @xuch74 you have to create your own REST API server, that server should act as a REST-MQTT adapter. On MyController create a mycontroller device type gateway with mqtt and add topic details from your adapter.
  • missing tag error on influxdb

    Troubleshooting
    4
    0 Votes
    4 Posts
    900 Views
    F
    @jkandasa thank you !
  • Time change

    Comments & Feedback
    5
    0 Votes
    5 Posts
    353 Views
    skywatchS
    @Tag Absolutely right. Initially i was worried about losing sensor data with the clocks moving and then wondered about actions in this period. I wonder if all controllers have the same issue or if one or more have a work around to mitigate the issue? I'll have a look but have not much free time for a while now.
  • NODEMANAGER OTA CONFIGURATION per java script

    Scripts
    5
    0 Votes
    5 Posts
    405 Views
    T
    @jkandasa Thanks a lot for the example. The delay doesn't matter. I had already found a solution. But I didn't think this was good enough to publish. I take advantage of the fact that the mysensors nodes do not necessarily need a request message for the Ota function. So I got along with mcApi.sensor (). SendPayload (). When I have time again I'll try your better solution.
  • Log full of javax.net.ssl.SSLException errors

    Troubleshooting
    1
    0 Votes
    1 Posts
    288 Views
    No one has replied
  • 0 Votes
    12 Posts
    771 Views
    D
    If others will arrive here searching for a similar issue: in my case the final solution has been changing the Arduino Uno I was using as ethernet gateway.
  • user dashboard (without logging in)

    Troubleshooting
    2
    0 Votes
    2 Posts
    223 Views
    jkandasaJ
    @wkwj00 There is no way to show dashboard without login. Sure, I will take a note of this request for v2.x. Thanks for your support!
  • The question is about groups scenarios

    General Discussion
    9
    0 Votes
    9 Posts
    491 Views
    C
    it's a shame, it's a pity that there is no such possibility ..
  • Rule status in dashboard

    Dashboard
    2
    0 Votes
    2 Posts
    572 Views
    jkandasaJ
    @Daniele I do not think we have a direct option to control rules from dashboard.
  • Correct way RSSI display in current version

    General Discussion
    5
    0 Votes
    5 Posts
    364 Views
    C
    @jkandasa Senks, unfortunately I have not seen this post, but together we found a way out of this task https://forum.mysensors.org/topic/11373/where-to-send-messages-about-battery-charge-and-signal-strength/12
  • Forward payload list too short

    Troubleshooting
    16
    0 Votes
    16 Posts
    981 Views
    F
    @jkandasa increasing the memory did it. thanks again !
  • how to change the built-in MQTT broker to use SSL?

    General Discussion
    8
    0 Votes
    8 Posts
    464 Views
    C
    @jkandasa Thank you very much, I will look forward to it