update()
is gone- update happens automatically after paging
- Enums have moved
instance.colors.BLACK
->BLACK
instance.orientation.PIN_ABOVE
->PINS_ABOVE
- Etc.
setFastmode()
is gone- Replaced with:
setFastmode(instance.fastmode.OFF)
- >fastmodeOff()
setFastmode(instance.fastmode.FINALIZING)
- >fastmodeON()
setFastmode(instance.fastmode.ON)
- >fastmodeTurbo()
- Replaced with:
deepSleep()
replaced with new hardware-focussed methods:usingPowerSwitching(pin, switch_type)
externalPowerOff()
externalPowerOn()