• Register
    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    1. Home
    2. JeeLet
    3. Best
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 16
    • Posts 127
    • Best 17
    • Controversial 0
    • Groups 0

    Best posts made by JeeLet

    • RE: miscellaneous question

      re-Edit

      Merci, I finally understood about the curves, excuse me .

      .... next, "Do you see problems on the other widgets ?"
      No everything is good, the widgets are easy to duplicate, the system is stable and responsive; really good ... great MyC.

      a new question πŸ™‚
      is it possible to navigate between the dashboards without going through the top dropdown menu?
      widgets that call other pages, other dashbords!

      a good week to you

      posted in General Discussion
      J
      JeeLet
    • RE: Grafana install

      good evening @jkandasa

      no I haven't done anything yet, I'm on electrical measurements and a library to review.
      But yes, it's great that you're looking at it.

      it will make MyC even more interesting πŸ‘‘

      posted in General Discussion
      J
      JeeLet
    • RE: French

      French version in service

      texte du lien

      words to be revised, 10 % of waste ?

      if a Frenchman passes by that he gives me a return
      for an improvement

      Thanks a lot Jkandasa

      text alternatif

      posted in Translation (localization)
      J
      JeeLet
    • RE: Dual Sensor

      can't figure out how to make my backup
      (I still made a full backup : mv mycontroller mycontroller_old)

      so I redid a MyController Installation

      the result πŸ™‚

      I reconnected and reconfigured the Arduino-Usb Gateway and everything went up automatically without doing anything in MyC, a pleasure.

      for the dual Sensor "mixed resources in Table" yes it's perfect
      ( a return in images later )

      posted in General Discussion
      J
      JeeLet
    • RE: Scratch Analytics enabled

      Hello

      the problem is solved, Mycontroller did not stop.

      Impecable πŸ‘

      Thank you for the information, for the sckect with V_STATUS on the forum of MySensors.
      I give you more work than I help you.

      Have a nice day.
      .... go on I continue πŸ™‚

      posted in Troubleshooting
      J
      JeeLet
    • RE: Grafana install

      text alternatif

      posted in General Discussion
      J
      JeeLet
    • RE: vokoscreen

      the evening video ... good evening
      Yes really nice, less violent for the view

      Video Gui Color

      Image jpeg

      Ps: I redid a total installation of MyController, so I know what I'm starting with.

      posted in General Discussion
      J
      JeeLet
    • RE: Grafana install

      a good year 2023 for you @jkandasa and your family.

      myController --> influxDB --> Grafana
      yes functional, and it's quite simple (the principle)
      the discovery of influxDB and Grafana is rich.

      I will surely have questions about the marriage between myC and influxDB (v1.8) ..... how the databases are created and deleted in time.

      an image of the configuration

           editor  lien field influxDB

      posted in General Discussion
      J
      JeeLet
    • RE: Setpoint for a Temperature

      Hello
      here is my sketch is clean and functional.
      the values sent with the bodyboard work well.

      one step finished

      now i tried with the examples of the schedules you gave me, and well i'm lost πŸ™‚

      I recapitulate the need.

      MyC sends at a certain time or day, the value of on and off
      for the time slots of the relay on the clock.

      integer values without comma,
      example : 1630 for 16hours 30minutes.
      the sketch of MyS manages with πŸ™‚

      Thanks for your help.
      many stars in the sky for you

      the recopies and other info

      text alternatif

      the parts of the sketch

      ...
      // ------ objet - MyS numero du Node ------
        #define CHILD_ID_2 2      //On time
        #define CHILD_ID_4 4      //Off time
       ...
      //----------- test commande Relay ----------------    
          int ledPin = 7;               // test Assigned Pin for Relay Module
         
           int requestOn;
         int requestOff;
      
      //----- MyS ------
         MyMessage dimmerMsg(CHILD_ID_2, V_PERCENTAGE);  //hour walk
         MyMessage dimmerMsg4(CHILD_ID_4, V_PERCENTAGE);  //stop time
         
         bool info;              //  for your information GW sur MyC
      
      //---------------- SETUP ----------------------------
      
        void setup()  {  
      
      ...
      //---- test set point -----
        send(dimmerMsg.set(info)); 
        send(dimmerMsg4.set(info));
        }
      
      //--------------MySensors-------------
      
        void presentation()  {
        
         sendSketchInfo("Clock", "2.0"); 
         present( CHILD_ID_2, S_DIMMER, "Debut" ); // Register the LED Dimmable Light with the gateway
         present( CHILD_ID_4, S_DIMMER, "Fin" );
            
          }
      
      //------------------ LOOP -----------------------
        void loop() {     
        
       ....        
      //----- commande Relay dans une plage horaire  -----
      timecurrent =  hour()*100 + minute();   // Conversion des heure en minutes
       
      //----- reception set time On Off ------------ 
       int requestedLevel = atoi( message.data ); //RΓ©cupΓ©rer la valeur Γ  partir du message 
            
      //----- limite valeur entrant dans la plage valide 0 to 2400 ------
          requestedLevel = requestedLevel > 2400 ? 2400 : requestedLevel;
          requestedLevel = requestedLevel < 0   ? 0   : requestedLevel;
          
           if((requestedLevel % 100) > 59) { requestedLevel = 00; }
           
      //----- trie des messages -------
        switch (message.sensor) {
          case 2:                          // message  1
            requestOn = requestedLevel;       
          break;
         
          case 4:                       // message  2
            requestOff = requestedLevel;
          break;       
         }   
      
      //----- commande Relay dans une plage horaire  -----   
         if (timecurrent >= requestOn && timecurrent <= requestOff)  { 
            digitalWrite(ledPin, HIGH); }
        else {
            digitalWrite(ledPin, LOW);  }
      
      
      //----- return value for MyC -------
          send( dimmerMsg.set(requestOn) );
          send( dimmerMsg4.set(requestOff) );
          
          }
        }
      
      posted in General Discussion
      J
      JeeLet
    • RE: Grafana install

      I realize that the questions I ask, many are explained in the Documentation πŸ™‚

      Hello jkandasa
      yes influx 2.x soon on a new install.
      a new hardware base, maybe an Odroid-N2 !?

      posted in General Discussion
      J
      JeeLet
    • RE: miscellaneous question

      Thank you @jkandasa

      it's very good like that , it works well

      I put at 10minute /Node State Updater/ Execution Interval

      "I'll try to document things MyController," ... yes the Labels / Key /Value part
      . what tree structure
      . family ? structure ???
      . how to use them ?? create them ??

      posted in General Discussion
      J
      JeeLet
    • RE: miscellaneous question

      πŸ€

      posted in General Discussion
      J
      JeeLet
    • RE: miscellaneous question

      a test with LibreOffice Draw 🎒

      Loo Draw

      posted in General Discussion
      J
      JeeLet
    • LibreOfficeDraw and MyC

      Hello

      a discovery, a rediscovery of a program that has evolved enormously, the last time I used it was in the year 2000.

      ... thank you jkandasa it's thanks to you that I found it πŸ™‚

      The one creation of symbols with the sauce myC
      ( attention it is my 1st use and some are not very well finished, it is a beginning)

      I have not yet found how to give you my library.
      I give them to you in the form of board to copy in your LibO_draw

      MyC_architecture_Odroid.odg

      MyCsymbol.odg
      MyC_architecture_OdroidC2.png

      liens:
      https://www.libreoffice.org/
      https://documentation.libreoffice.org/en/english-documentation/
      https://help.libreoffice.org/Draw/Welcome_to_the_Draw_Help

      posted in General Discussion
      J
      JeeLet
    • RE: Backup Config

      ..... back on my computer πŸ™‚

      hello skywatch jkandasa

      thank you for this clear explanation guys

      . the backup of infuxdb

      the one recopy with the tree command

      @odroidc2:/var/lib$ tree influxdb
      influxdb
      β”œβ”€β”€ data
      β”‚Β Β  β”œβ”€β”€ _internal [error opening dir]
      β”‚Β Β  └── mycontroller [error opening dir]
      β”œβ”€β”€ influxd.pid
      β”œβ”€β”€ meta
      β”‚Β Β  └── meta.db
      └── wal [error opening dir]
      
      @odroidc2:/var/lib/influxdb/data$ sudo tree mycontroller
      mycontroller
      β”œβ”€β”€ autogen
      β”‚Β Β  └── 2
      β”‚Β Β      β”œβ”€β”€ 000000001-000000001.tsm
      β”‚Β Β      └── fields.idx
      └── _series
          β”œβ”€β”€ 00
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 01
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 02
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 03
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 04
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 05
          β”‚Β Β  └── 0000
          β”œβ”€β”€ 06
          β”‚Β Β  └── 0000
          └── 07
              └── 0000
      
      

      the directory /var/lib/influxdb/data/mycontroller/
      and thus to save πŸ˜‰

      posted in General Discussion
      J
      JeeLet
    • RE: miscellaneous question

      on the drawing I forgot to put also the
      start/end the mini/maxi 0/50

      🍺

      posted in General Discussion
      J
      JeeLet
    • RE: systemctl et MyController

      it's maximum super good πŸ‘

      after cleaning the old one

      "sudo systemctl revert mycontroller.service"
      

      and a copy of the example you gave me (thanks)

         "sudo systemctl enable mycontroller.service"
      

      a reboot, functional server connection 😎

      ... well I continue with MyController, other things to see.

      Thanks a lot, lots of sunshine for you
      🀸

      posted in General Discussion
      J
      JeeLet