-->
Page 18 of 24

Re: WIFI SCAN AND ACQUIRE OLED

PostPosted: Sat Nov 28, 2015 4:08 am
by mvdbro
Thanks for the OLED code sample. It was a breeze to integrate this into our little ESP Easy project. So now we can display sensor data onto this neat little display.

Re: WIFI SCAN AND ACQUIRE OLED

PostPosted: Sat Nov 28, 2015 6:15 am
by danbicks
@mvdbro,

A pleasure, glad the code was of use.

Dans

Re: WIFI SCAN AND ACQUIRE OLED

PostPosted: Tue Jan 26, 2016 4:29 am
by gerardwr
Works great on a Wemos D1 board.

HW connections:
- Wemos-3.3V to Oled-Vcc
- Wemos-GND to Oled-GND
- Oled-SDA to Wemos-SDA/D14
- Oled-SCL to Wemos-SCL/D15

SW changes:
Code: Select allWire.pins(0, 2); //on ESP-01. 

replaced by
Code: Select allWire.pins(SDA, SCL); //on Wemos D1


NOTE : Compared to other Oled sketches I found the picture on the screen is "upside down".

Thanks for sharing Dan!

Re: WIFI SCAN AND ACQUIRE OLED

PostPosted: Tue Jan 26, 2016 2:50 pm
by danbicks
Hi @ gerardwr,

A pleasure buddy.

I did not want any dependencies and simply works out of the box :)

Look through this topic you can change screen orientation.

Dans