The plugin is a modified version of the OLED SSD1306 which allows for larger fonts and scrolling frames
The original version of the OLED plugin allowed for 8 lines of text to be displayed at once – but the small size of the display meant that the font was very small. This plugin allows lines to be displayed at a larger font by scrolling through the lines in groups or ‘frames’.
The plugin allows for 12 lines of text to be displayed in ‘frames’ of either 1, 2 or 4 lines. So for example, if you select 2 lines per frame then lines 1&2 will be displayed together followed by 3&4 followed by 5&6 etc. If you choose 4 lines per frame then 1&2&3&4 will be displayed together followed by 5&6&7&8 etc. The font size is automatically made larger when fewer lines are displayed in a frame.
The image (sorry about the poor photo! )below shows the first frame with 2 lines per frame selected:

The image below shows the configuration for the display shown above:

The standard configuration parameter 'Delay' specifies the time interval between frame changes - between 5 and 10 seconds works well.
If you would like to try this plugin then download the files _P205_FrameOLED.ino and Extra_Utilities.ino from the ESPEasyPlayground which you can find at :
https://github.com/ESP8266nu/ESPEasyPluginPlayground
and add them to your project. You will also need to download the library esp8266-oled-ssd1306.zip which you can also find in the playground – the library should be unzipped and added to your local libraries folder. The library was written by ‘Squix78’ and you can find his original library on Github at :
https://github.com/squix78/esp8266-oled-ssd1306
I have had to make one small alteration to his library in order for it to work with this plugin and so please use the modified version from the ESPEasyPluginPlayground.
Be aware that there is one possible complication! Due to the larger fonts, extra library and large webserver configuration, this plugin uses more SRAM than most other plugins and you may crash the stack due to a SRAM shortage when you try to configure it. If that happens or if the webserver configuration misbehaves then please try inserting one line into Webserver.ino as follows:
Immediately after the line
String reply=””;
which you will find at about line number 768 (varies a bit with release), insert the following line
reply.reserve(12000);
That should hopefully fix the problem!
Please let me know if you have more problems.
N