I'm using this device
128×64 OLED display module (SSD1306) , I will try
just to be ready
if I take the code:
function start(){
// write some text
g.drawString("Hello World!",2,2);
// write to the screen
g.flip();
}
// I2C
I2C1.setup({scl:B6,sda:B7});
var g = require("SSD1306").connect(I2C1, start);
it's should work ?
will change it to print if someone is connected or not
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I'm using this device
128×64 OLED display module (SSD1306) , I will try
just to be ready
if I take the code:
it's should work ?
will change it to print if someone is connected or not
Thanks ,