vokoscreen
-
(I don't know where to put this info )
In the Dashboard widget editing mode.
You can place or modify several widgets, but if you click on a curve of the graphs by mistake, you will lose the operations performed.
the work has to be started again.Can we deactivate the function that sends us hard "Field Details"?
Ouch, this is getting bigger
next time you'll have sound -
@jeelet Thanks to report this issue.
I have fixed this issue and now on edit mode, navigation will not work. -
the evening video ... good evening
Yes really nice, less violent for the viewPs: I redid a total installation of MyController, so I know what I'm starting with.
-
@jeelet Thanks for the quick action on this
-
Hello
The returns of the day
1st part of the video : Arduino reset
- put ON the 4 relays (1 2 3 4 )
- arduino reset
- MyC does not return all the values, some remain OFF.
and sometimes it's the relay 2 and 3 that are reset to ON.
But maybe not MyC, the MyS sketch may be involved? MySketch
2nd part of the video : non functional sorting column for the Nodes
-
@JeeLet said in vokoscreen:
MyC does not return all the values, some remain OFF.
use
wait(200);
between each request, will be useful when you do bulk requests
example:sendSketchInfo("PCF8574 x4in/out - node40", "2.0"); /*info version sketch à la passerelle*/ wait(200); /*Mysenors Enregistre Child sur la Gw*/ present(CHILD_ID_B0, S_DOOR, "boton0"); /*Boton*/ wait(200); present(CHILD_ID_B1, S_DOOR, "boton1"); wait(200); present(CHILD_ID_B2, S_DOOR, "boton2"); wait(200); present(CHILD_ID_B3, S_DOOR, "boton3"); wait(200); present(CHILD_ID_R4, S_BINARY, "relay4"); /*Relay*/ wait(200); present(CHILD_ID_R5, S_BINARY, "relay5"); wait(200); present(CHILD_ID_R6, S_BINARY, "relay6"); wait(200); present(CHILD_ID_R7, S_BINARY, "relay7"); wait(200); /* requetes/demandes à un noeud ou GW une variable*/ request(CHILD_ID_R4, V_STATUS); /*Relay*/ wait(200); request(CHILD_ID_R5, V_STATUS); wait(200); request(CHILD_ID_R6, V_STATUS); wait(200); request(CHILD_ID_R7, V_STATUS); wait(200);
I think there is no need to request button values
2nd part of the video : non functional sorting column for the Nodes
I will look into this, thanks!
-
thanks for the "wait"
but I didn't keep everything, I'll leave you somethe result now is good
- After Reset of the Node (Arduino) the values/States go well to OFF as on the Node (not put in memory)
a copy of some part of the sketch
jkandasa and Thanks
(tomorrow I'm away from my computer until Sunday) -
a question
you can do a reset of the Arduino with MyC. ??
reboot a Node when a watchdog is lost ???
-
@JeeLet said in vokoscreen:
you can do a reset of the Arduino with MyC. ??
It should work with MySensorsBootloaderRF24, but not tested yet.
https://github.com/mycontroller-org/server/blob/bfee1705ff1d682269521c1d9b84c96bc5bd88a9/plugin/gateway/provider/mysensors_v2/actions.go#L44~L56reboot a Node when a watchdog is lost ???
it is implemented in MySensors. you have to enable that fuse in your MCU. otherwise MCU will hang.
https://github.com/mysensors/MySensors/blob/2e00bf6a10f76d6aaa1999e12313237bc3edabd3/hal/architecture/AVR/MyHwAVR.h#L72(tomorrow I'm away from my computer until Sunday)
Enjoy
-
@JeeLet said in vokoscreen:
2nd part of the video : non functional sorting column for the Nodes
This issue has been fixed