<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[MyS blocking i2c PCF8574]]></title><description><![CDATA[<p dir="auto">Hello</p>
<p dir="auto">good news, the libraries for PCF8574 are not compatible with MySensors, one less thing to manage. :)</p>
<p dir="auto">I have been testing for a week the different version of library found on the web, it works well, but when I insert the bases of the sketch for MySensors the i2C communication is blocked, and the PCF8574 remains the four iron in the air.</p>
<p dir="auto">even with the super <a href="https://github.com/RobTillaart/PCF8574" rel="nofollow ugc">https://github.com/RobTillaart/PCF8574</a></p>
<p dir="auto">I've been looking for a practical expander and MySensors on the web, but nothing.</p>
<p dir="auto">So everything is normal??? :(</p>
]]></description><link>https://forum.mysensors.org/topic/11947/mys-blocking-i2c-pcf8574</link><generator>RSS for Node</generator><lastBuildDate>Wed, 20 May 2026 10:53:20 GMT</lastBuildDate><atom:link href="https://forum.mysensors.org/topic/11947.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 05 May 2022 16:55:41 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Fri, 03 Feb 2023 19:31:39 GMT]]></title><description><![CDATA[<p dir="auto">final sketch  and functional with MyController</p>
<pre><code>/*
 *  DESCRIPTION : 4 inputs and 4 outputs on i2C bus with a PCF8574    
 *    
 *  LIBRAIRIES:
 *    - Rob Tillaart pour PCF8574 https://github.com/RobTillaart/Arduino/tree/master/libraries/PCF8574
 *    - MySensors / Arduino Uno    https://github.com/mysensors/MySensors
 *    
 *  ELEMENTS: 
 *    - Expander PCF8574 avec module Metasys JC / 4di 4do - 0X03D i2c adress
 *         
 *  MODIFICATION:  
 *    -x- RAS : Fonctionnelle 
 *    -o-  
 *    -o- 
 * 
 *     (36%) de l'espace de stockage de programmes     
*/

   //----------- 9 Mai 2022 ---------------- PCF8574 -4DI-4DO / MyS RS485 et MyC -----------------//


//------------------- MyS ---------------------------------
  //#define MY_DEBUG               /*Enable debug prints to serial monitor*/
  //#define   MY_DEBUG_OTA_DISABLE_ECHO //testing
  #define MY_TRANSPORT_WAIT_READY_MS 3000 /*Tempo de mis en Com (millisecondes) à placer avant Mysensors.h*/ 
  #define MY_NODE_ID 40          /*Node en ID static*/

/* ----- Module TTL-RS485 ----*/
  #define MY_RS485                  /*Apl du transport RS485 (protocol?)*/
  #define MY_RS485_DE_PIN 10         /*Cmd DE pin*/
  #define MY_RS485_BAUD_RATE 9600   /*Set RS485 baud rate to use*/
  #define MY_REPEATER_FEATURE       /*Activer fonctionnalité de répéteur du nœud*/
  
  #include &lt;MySensors.h&gt;

//---------------- PCF -------------------------------
  #include "PCF8574.h"
  PCF8574 PCF27a (0x3D);  // adjust addresses i2c pcf8574

// ------ objet ------
  #define CHILD_ID_B0 0    /*Id IN - bp */
   #define CHILD_ID_B1 1    
    #define CHILD_ID_B2 2    
     #define CHILD_ID_B3 3    
  #define CHILD_ID_R4 4    /*Id OUT - relay */
   #define CHILD_ID_R5 5    
    #define CHILD_ID_R6 6    
     #define CHILD_ID_R7 7    
       
  #define RELAY_ON 0    //  1  valeur
  #define RELAY_OFF 1    // 0  invers 
   
//---------- MyS -------------
  
  MyMessage msg0(CHILD_ID_B0,V_TRIPPED);  /*Boton*/
   MyMessage msg1(CHILD_ID_B1,V_TRIPPED);
    MyMessage msg2(CHILD_ID_B2,V_TRIPPED);
     MyMessage msg3(CHILD_ID_B3,V_TRIPPED);
          
  MyMessage msg4(CHILD_ID_R4,V_STATUS);   /*Relay*/
   MyMessage msg5(CHILD_ID_R5,V_STATUS);
    MyMessage msg6(CHILD_ID_R6,V_STATUS);
     MyMessage msg7(CHILD_ID_R7,V_STATUS);

    bool info;              // pour info GW sur MyC
    bool state = false;     // output
  //  bool state4 = false;  bool state5 = false;  bool state6 = false;  bool state7 = false;     
    int oldValue0=-1; int oldValue1=-1; int oldValue2=-1; int oldValue3=-1;  // Input

//---------------- SETUP -------------------------
 void setup() {
  
 // Serial.begin(115200); // debug
  
//--------- testing IsConnected i2c PCfx ------------
  Serial.println(__FILE__);
  Serial.print("PCF8574_LIB_VERSION:\t");
  Serial.println(PCF8574_LIB_VERSION);

  if (!PCF27a.begin())   {
    Serial.println("could not initialize...");
    }
  if (!PCF27a.isConnected())   {
    Serial.println("=&gt; not connected");
    }
    else   {
    Serial.println("=&gt; connected!!");
    }  
      
    // ---- info send to gateway ----
  send(msg0.set(info)); send(msg1.set(info)); //input
  wait(200);
  send(msg2.set(info)); send(msg3.set(info));  //input
  
  wait(200); //delays for frames, depending on system load and bus type (wireless or wired) 
  
  send(msg4.set(info)); send(msg5.set(info));   //output
  wait(200);
  send(msg6.set(info)); send(msg7.set(info));  //output
  }
 
//----------------- MyS ----------------------------
void presentation() {
  
  sendSketchInfo("PCF8574 x4in/out - node40", "2.0");  /*info version sketch*/

/*Mysenors Enregistre Child sur la Gw*/
  present(CHILD_ID_B0, S_DOOR, "boton0");      /*Boton*/  
  present(CHILD_ID_B1, S_DOOR, "boton1"); 
  wait(200);
  present(CHILD_ID_B2, S_DOOR, "boton2"); 
  present(CHILD_ID_B3, S_DOOR, "boton3"); 
  
  wait(200); //delays for frames, depending on system load and bus type (wireless or wired)         
  
  present(CHILD_ID_R4, S_BINARY, "relay4");    /*Relay*/
  present(CHILD_ID_R5, S_BINARY, "relay5");
  wait(200);
  present(CHILD_ID_R6, S_BINARY, "relay6");
  present(CHILD_ID_R7, S_BINARY, "relay7");
  
  wait(200);

  // metric = getControllerConfig().isMetric; 
  }  

//----------------- LOOP ----------------------------
 void loop() {

//----------- MyS input -------------------------------
   int value0 = PCF27a.read(0);
   if (value0 != oldValue0) {
     send(msg0.set(value0==HIGH ? 1 : 0));   //Send new value
     oldValue0 = value0;
  }

   int value1 = PCF27a.read(1);
   if (value1 != oldValue1) {
     send(msg1.set(value1==HIGH ? 1 : 0));   
     oldValue1 = value1;
  }
  
   int value2 = PCF27a.read(2);
   if (value2 != oldValue2) {
     send(msg2.set(value2==HIGH ? 1 : 0));   
     oldValue2 = value2;
  }
  
   int value3 = PCF27a.read(3);
   if (value3 != oldValue3) {
     send(msg3.set(value3==HIGH ? 1 : 0));   
     oldValue3 = value3;
  }

 }

//----------- MyS out -------------------------------
  void receive(const MyMessage &amp;message) {

        if (message.getType()==V_STATUS) { 
              
   switch (message.sensor) {
      case 4:
            state= message.getBool();
            PCF27a.write(4,  state?RELAY_ON:RELAY_OFF);
            break;
      case 5:
            state = message.getBool();
            PCF27a.write(5,  state?RELAY_ON:RELAY_OFF);
            break;
      case 6:
            state = message.getBool();
            PCF27a.write(6,  state?RELAY_ON:RELAY_OFF);
            break;
      case 7:
            state = message.getBool();
            PCF27a.write(7,  state?RELAY_ON:RELAY_OFF);
            break; 
            }
         }
      }

//------------------------------ End pgm -------------------------------------  
</code></pre>
]]></description><link>https://forum.mysensors.org/post/111999</link><guid isPermaLink="true">https://forum.mysensors.org/post/111999</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Fri, 03 Feb 2023 19:31:39 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Tue, 10 May 2022 17:28:54 GMT]]></title><description><![CDATA[<p dir="auto">here is a small truth table for the state of the input/output and the values to give to MyController</p>
<p dir="auto"><a href="https://nsmf01.casimages.com/f/2022/05/10//22051007545223870810115.pdf" rel="nofollow ugc"> pdf image</a></p>
<pre><code>#define RELAY_ON 0        //  1 reversal of values
  #define RELAY_OFF 1    //  0 
</code></pre>
<p dir="auto">now only the MyS states to be sent to MyC to find.</p>
<p dir="auto">I stop my dialogue :)</p>
]]></description><link>https://forum.mysensors.org/post/111995</link><guid isPermaLink="true">https://forum.mysensors.org/post/111995</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Tue, 10 May 2022 17:28:54 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Tue, 10 May 2022 17:04:24 GMT]]></title><description><![CDATA[<p dir="auto">Hello</p>
<p dir="auto">a request for information.<br />
What value should be given to avoid a difference in the on/off states between the visualization on the controller and the reality on the LEDs of the Expander module?</p>
<ul>
<li>on the Arduino's Mysensors sketch</li>
<li>on the configuration of the Field of MyController</li>
</ul>
<p dir="auto">on which feet to start ????</p>
<p dir="auto">Another question, how to have the synchronicity of the state of the physical outputs (relays/led) and the view on MyC ???</p>
<p dir="auto">with this version of the sketch the state of the outputs is well to go back to the controller after reboot of the Node</p>
<pre><code>void receive(const MyMessage &amp;message) {
   if (message.getType()==V_STATUS) {
    // Change relay state
    state = (bool)message.getInt();
     PCF27a.write(4,  state?RELAY_ON:RELAY_OFF);
    send(msg4.set(state?RELAY_ON:RELAY_OFF))
</code></pre>
<p dir="auto">but now with this version, the reality is false<br />
(an augmented reality :) )</p>
<pre><code>void receive(const MyMessage &amp;message) {
  if (message.getType()==V_STATUS) {
    switch (message.sensor) {
      case 4:
            state = message.getBool();
            PCF27a.write(4,  state?RELAY_ON:RELAY_OFF);
      break;
      
</code></pre>
<p dir="auto">the function</p>
<pre><code>// send(msg4.set(PCF27a.read(4)));
</code></pre>
<p dir="auto">is removed and you can't see how to add it</p>
<p dir="auto">merci</p>
]]></description><link>https://forum.mysensors.org/post/111993</link><guid isPermaLink="true">https://forum.mysensors.org/post/111993</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Tue, 10 May 2022 17:04:24 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Mon, 09 May 2022 19:14:27 GMT]]></title><description><![CDATA[<pre><code>/*
 * Test PCF8574 avec module Metasys JC / 4di 4do - 0X03D i2c adress
 * 
 *  DESCRIPTION : Exemple pour lire 4 entrée et contrôler 4 Relais 
 *                avec un PCF8574 (la commande et par les 4 entrée)  
 *    
 *   LIBRAIRIES:
 *   - Rob Tillaart pour PCF8574 https://github.com/RobTillaart/Arduino/tree/master/libraries/PCF8574
 *    
 *   ELEMENTS: 
 *    Do : ?     - Digital output / Relay
 *         
 *    Modification:  
 *    -x- 
 *    -o-  
 *    -o- 
 * 
 *     (14%) de l'espace de stockage de programmes     
*/

   //-----------2022---------------- PCF8574 / 4DI-4DO  - MyS et MyC   -----------------//


//--------------- MyS ---------------------------------
  //#define MY_DEBUG               /*Enable debug prints to serial monitor*/
  //#define   MY_DEBUG_OTA_DISABLE_ECHO //testing
  #define MY_TRANSPORT_WAIT_READY_MS 3000 /*Tempo de mis en Com (millisecondes) à placer avant Mysensors.h*/ 
  #define MY_NODE_ID 40          /*Node en ID static*/

/* ----- Module TTL-RS485 ----*/
  #define MY_RS485                  /*Apl du transport RS485 (protocol?)*/
  #define MY_RS485_DE_PIN 2         /*Cmd DE pin*/
  #define MY_RS485_BAUD_RATE 9600   /*Set RS485 baud rate to use*/
  #define MY_REPEATER_FEATURE       /*Activer fonctionnalité de répéteur du nœud*/
  
  #include &lt;MySensors.h&gt;

//---------------- PCF -------------------------------
  #include "PCF8574.h"
  PCF8574 PCF27a (0x3D);  // adjust addresses i2c pcf8574

// ------ objet ------
  #define CHILD_ID_B0 0    /*Id IN - bp */
  #define CHILD_ID_R4 4    /*Id OUT - relay */
  
  #define RELAY_ON 1
  #define RELAY_OFF 0     

  int oldValue0=-1;  // input bp

//---------- MyS -------------
  
  MyMessage msg0(CHILD_ID_B0,V_TRIPPED);  /*Boton*/
  MyMessage msg4(CHILD_ID_R4,V_STATUS);   /*Relay*/

   bool info; // pour info GW sur MyC
   bool state = false;

//---------------- SETUP -------------------------
 void setup() {
  
  //Serial.begin(115200);
  
//--------- testing IsConnected i2c PCfx ------------
  Serial.println(__FILE__);
  Serial.print("PCF8574_LIB_VERSION:\t");
  Serial.println(PCF8574_LIB_VERSION);

  if (!PCF27a.begin())   {
    Serial.println("could not initialize...");
    }
  if (!PCF27a.isConnected())   {
    Serial.println("=&gt; not connected");
    }
    else   {
    Serial.println("=&gt; connected!!");
    }  
        PCF27a.begin(0xFF); // turn off all Relays ????

    // ---- info send to gateway ----
   send(msg0.set(info)); 
   send(msg4.set(info));     
 }
 
//----------------- MyS ----------------------------
void presentation() {
  
  sendSketchInfo("DiDo node 40", "2.0");  /*info version sketch à la passerelle*/

/*Mysenors Enregistre Child sur la Gw*/
  present(CHILD_ID_B0, S_DOOR, "boton");      /*Boton*/  
  present(CHILD_ID_R4, S_BINARY, "relay");    /*Relay*/
  
/* requetes/demandes à un noeud ou GW une variable*/
  
  request(CHILD_ID_B0, V_STATUS);  /*Boton*/  
  request(CHILD_ID_R4, V_STATUS);   /*Relay*/

  // metric = getControllerConfig().isMetric; 
  }  

//----------------- LOOP ----------------------------
 void loop() {

/* ------ MyS input -----------------------*/
   int value0 = PCF27a.read(0);
   if (value0 != oldValue0) {
     send(msg0.set(value0==HIGH ? 1 : 0));   // Envoyer la nouvelle valeur
     oldValue0 = value0;
  }
 }

//--------- MyS out ----------------------------
void receive(const MyMessage &amp;message) {
   
  if (message.getType()==V_STATUS) {
        
   // Change relay state
    state = (bool)message.getInt();
     PCF27a.write(4,  state?RELAY_ON:RELAY_OFF);
    send(msg4.set(state?RELAY_ON:RELAY_OFF));
   
  }
}

//------------------------------ End pgm -------------------------------------  

</code></pre>
]]></description><link>https://forum.mysensors.org/post/111985</link><guid isPermaLink="true">https://forum.mysensors.org/post/111985</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Mon, 09 May 2022 19:14:27 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Mon, 09 May 2022 19:08:34 GMT]]></title><description><![CDATA[<p dir="auto">Operation Expander success</p>
<p dir="auto">I show you two sketches, still based on Rob Tillaart library.</p>
<ul>
<li>
<p dir="auto">the 1st one is a basic version without MySensors<br />
(to understand how the library works)<br />
an Input (a shunt) controls an Output.<br />
4 inputs 4 outputs</p>
</li>
<li>
<p dir="auto">the 2nd one is with MySensors, everything goes up well on MyController, and the 1st time :) (I am surprised :) )</p>
</li>
</ul>
<p dir="auto">a request, a hand for the 2nd for a "clean" touch up of the code (or errors to remove ?? )<br />
Yes code readable for beginners, simple function.</p>
<p dir="auto">after cella another video</p>
<p dir="auto">Thanks and good night</p>
<pre><code>/*
 * Test PCF8574 avec module Metasys JC / 4di 4do - 0X03D i2c adress
 * 
 *  DESCRIPTION : Exemple pour lire 4 entrée et contrôler 4 Relais 
 *                avec un PCF8574 (la commande et par les 4 entrée)  
 *    
 *   LIBRAIRIES:
 *   - Rob Tillaart pour PCF8574 https://github.com/RobTillaart/Arduino/tree/master/libraries/PCF8574
 *    
 *   ELEMENTS: 
 *    Do : ?     - Digital output / Relay
 *         
 *    Modification:  
 *    -x- 
 *    -o-  
 *    -o- 
 * 
 * 
*/

   //-----------2022---------------- PCF8574 / 4DI-4DO  - JC  -----------------//

  #include "PCF8574.h"
  PCF8574 PCF27a (0x3D);

//---------------- SETUP -------------------------
 void setup() {
  
  Serial.begin(115200);
  
//--------- testing IsConnected i2c PCfx ------------
  Serial.println(__FILE__);
  Serial.print("PCF8574_LIB_VERSION:\t");
  Serial.println(PCF8574_LIB_VERSION);

  if (!PCF27a.begin())   {
    Serial.println("could not initialize...");
    }
  if (!PCF27a.isConnected())   {
    Serial.println("=&gt; not connected");
    }
    else   {
    Serial.println("=&gt; connected!!");
    }  

 }

//----------------- LOOP ----------------------------
 void loop() {

  if (PCF27a.read(0) == LOW)  do4High(); else PCF27a.write(4, HIGH) ;
  if (PCF27a.read(1) == LOW)  do5High(); else PCF27a.write(5, HIGH) ;
  if (PCF27a.read(2) == LOW)  do6High(); else PCF27a.write(6, HIGH) ;
  if (PCF27a.read(3) == LOW)  do7High(); else PCF27a.write(7, HIGH) ;
 
 }

// ------- 4x Relay ON ----------
 void do4High() {
  PCF27a.write(4, LOW);
  }
 void do5High() {
  PCF27a.write(5, LOW);
  }
 void do6High() {
  PCF27a.write(6, LOW);
  }
 void do7High() {
  PCF27a.write(7, LOW);
  }

//------------------------------ End pgm -------------------------------------  
</code></pre>
]]></description><link>https://forum.mysensors.org/post/111984</link><guid isPermaLink="true">https://forum.mysensors.org/post/111984</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Mon, 09 May 2022 19:08:34 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Mon, 09 May 2022 07:15:08 GMT]]></title><description><![CDATA[<p dir="auto">in this sketch there is only the Mysensors library to call, to test</p>
<p dir="auto">I just have to finalize my sketch and it to MyController</p>
<p dir="auto"><a href="https://forum.mycontroller.org/topic/510/vokoscreen/3" rel="nofollow ugc">video</a></p>
<pre><code>/************************************************************************************
   Using an Arduino Uno or an ESP8266 on NodeMCU to control buttons
   and relays through a PCF8574 GPIO expander.
   Requires the PCF8574 library
   https://github.com/RobTillaart/Arduino/tree/master/libraries/PCF8574
   If using Uno,     comment out #define intPin D4
   If using ESP8266, comment out #define intPin 2
   GPIO expander pinout:   0..3 = button input 0..3
                           4..7 = relay output 0..3
   Each button controls a corresponding relay 
   eg. button 0 controls relay 0
   Button functions:   button 0 and 1 toggle relay 0 and 1 on each press
                       button 2 and 3 directly control relay 2 and 3 in "realtime"
   Gadget Reboot
 *************************************************************************************/
/*     
*   DESCRIPTION : Arduino UNO et JC-PCF8574 pour 4 Input et 4 Relay   
*                 pour MySensors RS485
*     
*   Libraries: PCF8574 de Rob Tillaart
* 
*  Modif/Afaire:
* -o- 
* -x- 
* -o-  
*   (x%) de l'espace de stockage de programmes               
*                
*/
     //----------- 2022 ------ PCF8574_RobTi_MyS_4io.ino  ---------- test -----------------//

//--------------- MyS ---------------------------------
  #define MY_DEBUG               /*Enable debug prints to serial monitor*/
  #define   MY_DEBUG_OTA_DISABLE_ECHO //testing
  #define MY_TRANSPORT_WAIT_READY_MS 3000
  #define MY_NODE_ID 40          /*Node en ID static*/
  #define MY_RADIO_RF24
  #include &lt;MySensors.h&gt;
        
//---------------- PCF -------------------------------
  #include &lt;PCF8574.h&gt;
  #include &lt;Wire.h&gt;

  PCF8574 pcf8574(0x3D);
  #define intPin 3                       // interrupt input Uno

  volatile bool buttonPressed = false;   // button interrupt flag
  byte buttonReg;                        // button read register

//----------------- SETUP -------------------------
  void setup() {

//initialize PCF8574 with an interrupt pin and set all outputs to '1' (Relays off)
  Wire.begin();
  pinMode(intPin, INPUT_PULLUP);
  attachInterrupt(digitalPinToInterrupt(intPin), buttonISR, FALLING);
  pcf8574.begin(0xFF); // turn off all Relays
  }

//----------------- LOOP ----------------------------
void loop() {

// if a button press was detected via interrupt, check if the button press
// occurred on one of the "toggle" control buttons and toggle the relay if so
  if (buttonPressed) {
    delay(50);  // crude debounce
    buttonReg = pcf8574.read8();

  if (!bitRead(buttonReg, 0)) {  //toggle a relay if button pressed
    pcf8574.toggle(4);
    }

  if (!bitRead(buttonReg, 1)) {  //toggle a relay if button pressed
    pcf8574.toggle(5);
    } 
  }

  buttonPressed = false; // clear interrupt flag

// manually poll last two buttons and set relays to match button on/off realtime state
// method 1:  read all buttons and choose the desired button from the read register
  // buttonReg = pcf8574.read8();
  // pcf8574.write(6, bitRead(buttonReg, 2));

// method 2:  directly read just one button and directly set the target relay
  pcf8574.write(7, pcf8574.read(3));
  pcf8574.write(6, pcf8574.read(2));
  }

//---- interrupt service routine ------------
  void buttonISR() {
  buttonPressed = true;
  }
  
//------------------------------ End pgm -------------------------------------  
</code></pre>
]]></description><link>https://forum.mysensors.org/post/111973</link><guid isPermaLink="true">https://forum.mysensors.org/post/111973</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Mon, 09 May 2022 07:15:08 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Mon, 09 May 2022 06:59:26 GMT]]></title><description><![CDATA[<p dir="auto">Hello</p>
<p dir="auto">a little more information on the PCF8574 based material</p>
<p dir="auto">obsolete industrial equipment recovered in a trash can.<br />
system building controller from "Johnson Control" the "metasys" game<br />
<a href="https://cgproducts.johnsoncontrols.com/MET_PDF/6364040.PDF" rel="nofollow ugc">https://cgproducts.johnsoncontrols.com/MET_PDF/6364040.PDF</a></p>
<p dir="auto">why the choice of this hardware base ?<br />
The Opto coupler !</p>
<p dir="auto"><img src="https://nsm09.casimages.com/img/2022/05/09//22050909174023870817888376.jpg" alt="XP9104" class=" img-fluid img-markdown" /></p>
<p dir="auto">if not for the Arduino sketch, and its functionning with the PCF8574 library from RobT it's functional :)</p>
<p dir="auto">as soon as I activate<br />
<em>#define MY_TRANSPORT_WAIT_READY_MS 3000</em><br />
it works, why it works :(</p>
<p dir="auto">Thank you <strong>jkandasa</strong> for your curiosity, yes the fact that I dive back into it there was like a spark inter neuronal :)</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.mysensors.org/post/111972</link><guid isPermaLink="true">https://forum.mysensors.org/post/111972</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Mon, 09 May 2022 06:59:26 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Sun, 08 May 2022 18:18:10 GMT]]></title><description><![CDATA[<p dir="auto">Thanks <a class="plugin-mentions-user plugin-mentions-a" href="/user/jeelet" aria-label="Profile: JeeLet">@<bdi>JeeLet</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/user/skywatch" aria-label="Profile: skywatch">@<bdi>skywatch</bdi></a> upgrade leads some issue, I believe I fixed it. I hope MyController forum looks ok now.</p>
<p dir="auto">we can go back to the original topic :)</p>
]]></description><link>https://forum.mysensors.org/post/111962</link><guid isPermaLink="true">https://forum.mysensors.org/post/111962</guid><dc:creator><![CDATA[jkandasa]]></dc:creator><pubDate>Sun, 08 May 2022 18:18:10 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Sun, 08 May 2022 18:11:22 GMT]]></title><description><![CDATA[<p dir="auto">well, here we are, we think we are alone in the world, but no :)</p>
<p dir="auto">thank you skywatch</p>
<p dir="auto">they is or my sketch that I answer to  jkandasa</p>
]]></description><link>https://forum.mysensors.org/post/111961</link><guid isPermaLink="true">https://forum.mysensors.org/post/111961</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Sun, 08 May 2022 18:11:22 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Sun, 08 May 2022 08:50:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeelet" aria-label="Profile: JeeLet">@<bdi>JeeLet</bdi></a> I am seeing the same issue for log in, so it is not just you, it is the site.</p>
]]></description><link>https://forum.mysensors.org/post/111955</link><guid isPermaLink="true">https://forum.mysensors.org/post/111955</guid><dc:creator><![CDATA[skywatch]]></dc:creator><pubDate>Sun, 08 May 2022 08:50:40 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Sun, 08 May 2022 07:10:09 GMT]]></title><description><![CDATA[<p dir="auto">Hello <strong>jkandasa</strong></p>
<p dir="auto">I will have to find my skecth in my sketch box :)</p>
<p dir="auto">but in the meantime I have a problem to solve, very serious</p>
<p dir="auto">I can't connect to the MyController forum. :(<br />
it happened after I cleared my browser cache</p>
<p dir="auto">I have recreated a new password but nothing, I don't have the hands.</p>
<p dir="auto">This sentence is thrown in my face:</p>
<p dir="auto">Login failed<br />
We cannot connect you, probably because your session has expired. Please try again.</p>
<p dir="auto">even creating a new account is impossible</p>
<p dir="auto">thank you</p>
]]></description><link>https://forum.mysensors.org/post/111954</link><guid isPermaLink="true">https://forum.mysensors.org/post/111954</guid><dc:creator><![CDATA[JeeLet]]></dc:creator><pubDate>Sun, 08 May 2022 07:10:09 GMT</pubDate></item><item><title><![CDATA[Reply to MyS blocking i2c PCF8574 on Sat, 07 May 2022 14:52:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jeelet" aria-label="Profile: JeeLet">@<bdi>JeeLet</bdi></a> can you share your MySensors sketch?</p>
]]></description><link>https://forum.mysensors.org/post/111945</link><guid isPermaLink="true">https://forum.mysensors.org/post/111945</guid><dc:creator><![CDATA[jkandasa]]></dc:creator><pubDate>Sat, 07 May 2022 14:52:19 GMT</pubDate></item></channel></rss>