Open
Description
init()
function for some reason calls begin(16, 1)
without any good reason for doing so. init()
is normally called from LiquidCrystal
constructor and begin()
needs to be called from user program before any other code. Current code actually performs double LCD initialization which appears to be harmless but unneeded/time consuming.
LiquidCrystal/src/LiquidCrystal.cpp
Lines 70 to 76 in db84824