Community Forum
    • Blog
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    teleinfo data interval inconsistent

    Scheduled Pinned Locked Moved Téléinfo
    12 Posts 2 Posters 647 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Dmitry KorzhenevskiyD Offline
      Dmitry Korzhenevskiy @Charles
      last edited by

      @charles Thanks. I will try that.
      I did not know that esp8266 has this limitations. I should have just soldered the esp32 board to the shield that I bought from you.

      CharlesC 1 Reply Last reply Reply Quote
      • CharlesC Offline
        Charles @Dmitry Korzhenevskiy
        last edited by Charles

        @dmitry-korzhenevskiy if you have ESP8266 connected to WeMos Shield (Assuming it's D1 Mini) Serial is on GPIO13 and you can use Hardware Serial with your own code just using a serial.swap() after init of the serial in your code. Should also help to solve softserial issues.

        Dmitry KorzhenevskiyD 1 Reply Last reply Reply Quote
        • Dmitry KorzhenevskiyD Offline
          Dmitry Korzhenevskiy @Charles
          last edited by

          @charles Yes, I use gpio13 like so:

          SoftwareSerial serialsoft1(13, 12); // Teleinfo Serial
          

          My setup contains

          void setup(void)
          { 
          Serial.begin(115200);  
          serialsoft1.begin(1200);
          tinfo.init();
          Serial.swap();
          tinfo.attachData(print_values);
          Serial.println(F("Teleinfo started"));
          }
          

          Now after I added the swap() it stopped receiving anything on that port. It senses no teleinfo data. swap is some kind of magic 🙂

          CharlesC 1 Reply Last reply Reply Quote
          • CharlesC Offline
            Charles @Dmitry Korzhenevskiy
            last edited by Charles

            @dmitry-korzhenevskiy this is a normal behavior, you are mixing software serial and hardware one on same pins, it can't works properly

            Serial.swap() swap pin of hardware Serial (GPIO13 instead of GPIO3)

            The deal with ESP8266, if you use hardware serial, no way to serial debug, this is exactly why I don't like this kind of custom configuration, you're blind in case of issues except trying software serial to debug using something like that

            // instantiate SoftSerial but not using pin now
            // Debug Soft Serial, no RX TX for now
            SoftwareSerial SerialDebug(-1, -1); 
            
            void setup(void)
            { 
              // Hardware Serial (GPIO1/GPIO3)
              Serial.begin(1200);  
              // Now Free up Pins used by Hardware Serial to GPIO15/GPIO13
              Serial.swap();
              // Now we can setup soft Serial with GPIO1 for TX
              SerialDebug.setTransmitEnablePin(1);
              SerialDebug.begin(9600);
              SerialDebug.println(F("Soft Serial started")); 
              tinfo.init();
              tinfo.attachData(print_values);
              SerialDebug.println(F("Teleinfo started")); 
            }
            
            Dmitry KorzhenevskiyD 1 Reply Last reply Reply Quote
            • Dmitry KorzhenevskiyD Offline
              Dmitry Korzhenevskiy @Charles
              last edited by

              @charles I tried serial.swap . It worked! But it works pretty much the same way as before serial.swap. Still the interval between updates is reaching 10-20 seconds sometimes.

              I also tried making tasmota teleinfo as you described previously. I applied the template

              {"NAME":"Wemos Teleinfo","GPIO":[1,1,1,1,640,608,1,1,1,5152,1376,1,1,1],"FLAG":0,"BASE":18}
              

              (The one that you wrote in previous message is for esp32)
              and put in two command into console.

              14:09:57.984 CMD: EnergyConfig Changed
              14:09:57.987 TIC: Raw to 'changed'
              14:09:57.991 MQT: tic/RESULT = {"EnergyConfig":"Done"}
              

              I can change the RGB led via the web interface,
              I see that it is connected to mqtt but is sends no data to specified topic. and the web interface show this 😥
              75bb5058-3748-4521-b781-66e3cdaf7168-image.png

              Probably resoldering the shield to esp32 board is the simplest solution.

              CharlesC 1 Reply Last reply Reply Quote
              • CharlesC Offline
                Charles @Dmitry Korzhenevskiy
                last edited by Charles

                @dmitry-korzhenevskiy if you don't have other value on tasmota web interface, this mean that teleinfo was not detected, are you sure (check in template menu) that Tinfo RX pin is on GPIO13 (template should have set it) ?

                Could you post a picture of your WeMos and Shield Assembly?

                Just flashed WeMos D1 Mini from scratch (full flash erase before) with latest tasmota. Reset, connected to AP, then connected tasmota to my WiFi and applied template you mention earlier, that's it.

                1e522b3e-3cfd-45ad-a9d9-7a8809bbaf20-image.png

                Are you sure of your connexion on teleinfo and connectors correctly soldered on WeMos Teleinfo Shield? Check Also on smartmeter connexion I already had some issue due to bad connectivity.

                Dmitry KorzhenevskiyD 1 Reply Last reply Reply Quote
                • Dmitry KorzhenevskiyD Offline
                  Dmitry Korzhenevskiy @Charles
                  last edited by

                  @charles I am sure the connection is ok you don't need to see the assembly. because it worked 1 hour before with serial.swap and I did not change anything apart from the software. The red light that indicated the TIC serial activity is flashing as before.

                  "that Tinfo RX pin is on GPIO13 (template should have set it) ?" - Yes the 13 is set to tinfo rx. In my custom arduino software I used

                  SoftwareSerial serialsoft1(13, 12);
                  

                  And it worked. So it is fine with connection on 13.

                  I don't want to waste any of your time. I will do it again with esp32, it should work better.

                  CharlesC 1 Reply Last reply Reply Quote
                  • CharlesC Offline
                    Charles @Dmitry Korzhenevskiy
                    last edited by

                    @dmitry-korzhenevskiy With Tasmota it should works right out of the box. Did you configured the teleinfo mode to your mode?
                    I mean with option EnergyConfig Historique (1200 this is the default) or EnergyConfig Standard (Linky standard 9600)?

                    With ESP32 we'll have more debug info, for now you can setup weblog to Full Debug an look in the console on boot and see interesting things

                    f9886b0c-1018-4daf-aebb-a623b859cad1-image.png

                    Dmitry KorzhenevskiyD 1 Reply Last reply Reply Quote
                    • Dmitry KorzhenevskiyD Offline
                      Dmitry Korzhenevskiy @Charles
                      last edited by

                      @charles
                      I think I found the solution. I needed to enter two lines

                      EnergyConfig Historique
                      EnergyConfig full

                      Now the updates are consistent.
                      622ea9ff-4db2-48fd-85c2-32f07f14b78e-image.png

                      Now I have PAPP update every 1.4 s.
                      Tasmota works much better than custom arduino program using the library. Even on softserial with esp8266.
                      Thanks
                      The problem solved.

                      CharlesC 1 Reply Last reply Reply Quote
                      • CharlesC Offline
                        Charles @Dmitry Korzhenevskiy
                        last edited by

                        @dmitry-korzhenevskiy Nice it's solved, and yes Tasmota rocks 🙂

                        1 Reply Last reply Reply Quote
                        • First post
                          Last post

                        3

                        Online

                        5.7k

                        Users

                        534

                        Topics

                        5.0k

                        Posts

                        Top Topics

                        • Denky 4 - Domoticz - Triphasé -
                          Nicolas BernaertsN
                          Nicolas Bernaerts
                          0
                          7
                          249

                        • Denky D4 et Linky Standard TInfo Rx Non Configuré
                          CharlesC
                          Charles
                          0
                          5
                          282

                        • CC1101
                          CharlesC
                          Charles
                          0
                          2
                          117

                        Popular Tags

                        teleinfo
                        24 topics
                        arduino
                        19 topics
                        remora
                        16 topics
                        esp8266
                        10 topics
                        arduipi
                        10 topics
                        wifinfo
                        7 topics
                        raspberry
                        7 topics
                        broadcast
                        7 topics
                        Copyright © 2022 Charles-Henri Hallard | Return to blog page | Powered by NodeBB