Example sketches for the new Arduino IDE for ESP8266

Moderator: igrr

User avatar
By miker
#19351 The 3D model has to be opened in Adobe. Screenshot is attached.
You do not have the required permissions to view the files attached to this post.
User avatar
By danbicks
#19358 Wooooo Love this board mate... Put me down for 50 :)

This must be an Ultium 15 board work?

Mike Superb work. I think this board will be really special. Needs I2c Breakout connector for expansion of devices.

dylan1024, Sorry mate just saw your post now, could be modified but for now I am keeping this SSD1306 compliant. New fonts are not a problem alongside graphics.

Mahesh, A pleasure buddy it is always important to contribute to such a great community. Others need examples in order to learn apply and refine :)

Mike, we will look to order by access point and RSSI should not be to hard, some additional arrays would be the easiest option one thinks..

Keep up the superb work, MQTT is working well so far. Will add some tweaks this weekend, I have 20 ESP8266-12E on the way :)

Well done guys.

Dans
User avatar
By Mario Mikočević
#19456 Heya,

for some reason, on my (0.96" white, don't have y/b one) OLED, routines Draw_WIFI and Draw_WAVES use only upper first row so I did following fix ->

Code: Select allvoid Draw_WIFI() {
  clear_display();
  // Display Logo here :)
  for( int i=0; i<8; i++ ) {
    setXY( i, 0 );
    for( int j=0; j<16*8; j++ ) {
        SendChar( pgm_read_byte( WIFI1 + j + i*16*8 ) );
    }
  }
  displayOn();
}

void Draw_WAVES()
{
  clear_display();
  // Display Logo here :)
  for( int i=0; i<8; i++ ) {
    setXY( i, 0 );
    for( int j=0; j<16*8; j++ ) {
        SendChar( pgm_read_byte( rfwaves + j + i*16*8 ) );
    }
  }
  displayOn();
}


and yeah I'm fond of K&R indent style :)

Many thanks for code starting point !

--
Mozz
User avatar
By danbicks
#19463 Hi Mozz,

I like the mod indent style too, but lol :)

Works fine as normal on my white OLED display 128*64 pixel.

I am really chuffed that so many people have found this post useful. I think I may have to release my MQTT Oled example at some point on here also :)

Big thanks for your comments.

My students I think will enjoy this next year in College :)

Regards

Dans