note description: "[ Hitachi HD44780 modes for selecting buffers on the controller. ]" legal : "See notice at end of class." status : "See notice at end of class."; author : "Paul Bates (paul.a.bates@gmail.com)" date : "$Date$" revision: "$Revision$" expanded class HD44780_BUFFER_SELECT_MODE inherit ENUM_TYPE [NATURAL_8] create default_create, make convert make ({NATURAL_8}), item: {NATURAL_8} feature -- Access text_data: NATURAL_8 = 0x0 -- Mode to send text data to display graphic_data: NATURAL_8 = 0x1 -- Mode to send character bitmap data to CGRAM feature {NONE} -- Members members: ARRAY [NATURAL_8] -- once Result := << text_data, graphic_data >> end end