Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 355 Bytes

esp8266-twi-arduino-nano.md

File metadata and controls

15 lines (11 loc) · 355 Bytes

esp8266 twi arduino nano

  • twi line locked down and never pullup again when slave too slow in respond
  • solve by increase setting clock strech limit
Wire.begin(D2, D1);
auto ms = 7;
// default is 230us
Wire.setClockStretchLimit(ms * 1000); // us

references