hello, it is posible to read data sended to TM1640 ?
i have acces two wires clk and data. Code bellow work with display but i need read the data sended to displays
thx
#include "TM1638.h"// yes you need both
#include "TM1640.h"
// define a module on data pin 7, clock pin 8
TM1640 module(3,2);
void setup()
{
// nothing to do here
}
void loop()
{
String name = "1143456789012345";
module.setDisplayToString(name, 0b0000000000000000);
delay(32766);
}