@@ -134,7 +134,7 @@ class QwiicOledBase(object):
134134 If not provided, the default address is used.
135135 :param i2c_driver: An existing i2c driver object. If not provided
136136 a driver object is created.
137- :return: The Micro OLED device object.
137+ :return: The SSD1306 OLED device object.
138138 :rtype: Object
139139 """
140140
@@ -207,7 +207,7 @@ def __init__(self, address=None, pixel_width = _LCDWIDTH, pixel_height = _LCDHEI
207207 #--------------------------------------------------------------------------
208208 def is_connected (self ):
209209 """
210- Determine if a Micro OLED device is conntected to the system..
210+ Determine if a SSD1306 OLED device is conntected to the system..
211211
212212 :return: True if the device is connected, otherwise False.
213213 :rtype: bool
@@ -220,7 +220,7 @@ def is_connected(self):
220220 #--------------------------------------------------------------------------
221221 def begin (self ):
222222 """
223- Initialize the operation of the Micro OLED module
223+ Initialize the operation of the SSD1306 display driver for the OLED module
224224
225225 :return: Returns true of the initializtion was successful, otherwise False.
226226 :rtype: bool
@@ -455,7 +455,7 @@ def print(self, text):
455455
456456
457457 #--------------------------------------------------------------------------
458- # MicroOLED 's cursor position to x,y.
458+ # OLED 's cursor position to x,y.
459459
460460 def set_cursor (self , x , y ):
461461 """
@@ -821,11 +821,11 @@ def get_font_total_char(self):
821821 return self ._font .total_char
822822
823823
824- # Return the total number of fonts loaded into the MicroOLED 's flash memory.
824+ # Return the total number of fonts loaded into the OLED 's flash memory.
825825
826826 def get_total_fonts (self ):
827827 """
828- Return the total number of fonts loaded into the MicroOLED 's flash memory.
828+ Return the total number of fonts loaded into the OLED 's flash memory.
829829
830830 :return: Total number of fonts available
831831 :rvalue: integer
0 commit comments