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

    JeeLet

    @JeeLet

    19
    Reputation
    65
    Profile views
    128
    Posts
    0
    Followers
    0
    Following
    Joined Last Online
    Location French

    JeeLet Unfollow Follow

    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: MyController V2.0 no metrics on the Dashboard

      in Yaml format it's easier to understand your problem.

      welcome with MyController, the minimalist of the minimalists πŸ™‚

      Here is an example of a temperature sensor on one of my Dasboards

      8565-f5945591f8bc
      title: Sallon  -  Sensor Temp   -  12hours
      showTitle: true
      scrollbarDisabled: false
      static: false
      type: widget_utilization_panel
      layout:
        w: 37
        h: 53
        x: 35
        'y': 0
      config:
        chart:
          color: '#ffa940'
          fillOpacity: 15
          height: 70
          interpolation: basis
          strokeWidth: 1.5
          thickness: 20
          yAxisMaxValue: ''
          yAxisMinValue: ''
        metric:
          duration: '-12h'
          interval: 3m
          metricFunction: percentile_99
          refreshInterval: '300000'
        resource:
          displayName: true
          filter: {}
          filterType: quick_id
          isMixedResources: false
          nameKey: name
          quickId: GwRs485.33.9.V_TEMP
          resources: []
          roundDecimal: 0
          timestampKey: current.timestamp
          type: field
          unit: deg
          valueKey: current.value
        table: {}
        type: spark_area
      
      
      posted in Troubleshooting
      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

    Latest posts made by JeeLet

    • RE: MyController V2.0 no metrics on the Dashboard

      in Yaml format it's easier to understand your problem.

      welcome with MyController, the minimalist of the minimalists πŸ™‚

      Here is an example of a temperature sensor on one of my Dasboards

      8565-f5945591f8bc
      title: Sallon  -  Sensor Temp   -  12hours
      showTitle: true
      scrollbarDisabled: false
      static: false
      type: widget_utilization_panel
      layout:
        w: 37
        h: 53
        x: 35
        'y': 0
      config:
        chart:
          color: '#ffa940'
          fillOpacity: 15
          height: 70
          interpolation: basis
          strokeWidth: 1.5
          thickness: 20
          yAxisMaxValue: ''
          yAxisMinValue: ''
        metric:
          duration: '-12h'
          interval: 3m
          metricFunction: percentile_99
          refreshInterval: '300000'
        resource:
          displayName: true
          filter: {}
          filterType: quick_id
          isMixedResources: false
          nameKey: name
          quickId: GwRs485.33.9.V_TEMP
          resources: []
          roundDecimal: 0
          timestampKey: current.timestamp
          type: field
          unit: deg
          valueKey: current.value
        table: {}
        type: spark_area
      
      
      posted in Troubleshooting
      J
      JeeLet
    • RE: Grafana install

      MyController can be installed anywhere, it is pure carbon, the hardest material πŸ™‚

      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: Grafana install

      https://songrgg.github.io/operation/influxdb-command-cheatsheet/
      the management of metrics in terminal mode with CLI commands for ver1.8 is not simple
      a good thing with a graphical interface.

      version 2.0 already has an integrated tool https://docs.influxdata.com/influxdb/v2.6/visualize-data/visualization-types/table/

      Let's talk about MyC again.

      on image of the architecture https://v2.mycontroller.org/doc-images/architecture.png

      how the dialogue between the mys gateway and influxDB works

      I don't understand the difference between StorageDB and MetricDB

      you say "You can also use influx 2.x. MyC supports influx 2.x"?

      on a next new installation I switch to the influxDB-2 version I don't have anything to modify in mycontroller ?? .... I may try ??

      For the last test with grafana, the "mc_gauge_float_data" values work but not the "mc_binary_data" numbers
      (maybe I'm wrong in the config)

      posted in General Discussion
      J
      JeeLet
    • RE: Grafana install

      I try to read the future, yes the future is tomorrow (yes I have a crystal ball) πŸ™‚

      the elements that come out : TIG
      Telegraf + InfluxDB + Grafana

      and telegraf is an obligatory passage, evolution of influxDB v2

      the infos put aside
      https://www.sqlpac.com/fr/documents/influxdb-migration-v1-v2-procedure.html

      major changes in influxDB
      The TSI index is the default storage engine, the In-Memory index is removed.
      Chronograf (visualization tool) is integrated in InfluxDB.
      Flux becomes the default language and InfluxQL is unfortunately removed.
      Continuous queries are replaced by Tasks.
      The native support of OpenTSDB, Graphite, CollectD... protocols is also unfortunately removed in InfluxDB v2, Telegraf agents must be implemented.

      then the next step is : ??? apt install telegraf ??? πŸ™‚

      posted in General Discussion
      J
      JeeLet
    • RE: Grafana install

      a question:

      Can MyC manage the database of influxDB ?

      a bit like on HAss : https://forum.hacf.fr/t/installer-influxdb-dans-home-assistant-et-booster-votre-base-de-donnee/360

      cella will allow me to make cleaning of the old Node that I removed.

      posted in General Discussion
      J
      JeeLet
    • RE: MQTT Gateway USB

      it was to make a test, how to use the 2mqtt that you created.

      arduino -- usb ---> Mosquitto --> myC
      in arduino a temperature (IA*) or a command (DI*)

      • IA=analog input / DI= digital input
      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: Grafana install

      text alternatif

      posted in General Discussion
      J
      JeeLet
    • MQTT Gateway USB

      bonjour @jkandasa

      .... a test of the Mqtt protocol with myController
      (Odroid and Arduino Uno)

      I'm looking for an architecture with :

      • myController and Mosquito (functional part)
      • Gateway-Usb with sensors and Oled display
        (for a bidirectional dialogue)

      is it possible ???
      ...I've been looking for sketches as examples for GWusb but nothing seen.

      https://github.com/mycontroller-org/2mqtt
      https://forum.mysensors.org/topic/11721/serial-ethernet-to-mqtt/5
      https://forum.mycontroller.org/topic/368/serial-mqtt-adapter

      Re-Edit : subject abandoned

      posted in General Discussion
      J
      JeeLet