greiman / SSD1306Ascii

Text only Arduino Library for SSD1306 OLED displays
MIT License
500 stars 122 forks source link

Various examples don't work #68

Open johncblacker opened 4 years ago

johncblacker commented 4 years ago

I've tied the Example scrolling display for 64 pixel high display and I get compile errors Class SSD1306AsciiWire has no member named setScrollMmode, I've tried other examples and get other compile errors. I'm simply copying your example code from Github over to my arduino ide and trying to run.

greiman commented 4 years ago

Yes there is no member named setScrollMmode. Try setScrollMode.

The example ScrollingWire compiles OK for me. It has this line:

  // Set auto scrolling at end of window.
  oled.setScrollMode(SCROLL_MODE_AUTO);
johncblacker commented 4 years ago

I mis-typed when I created the post. Like I said, I did a copy and paste directly from your example and it didn't work - compile error!

DirtyEngineer commented 4 years ago

The examples compile without issue for me.

@johncblacker

Please enable the "Show verbose output during: Compilation" in File/Preferences and post your full error.