Skip to content

Commit 9285434

Browse files
authored
Merge pull request #1732 from FoamyGuy/pyportal_pet_planter_cp7
pyportal pet planter cp7 updates
2 parents 72d9759 + 9073263 commit 9285434

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pyportal_pet_planter/code.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@
8383
pyportal.set_backlight(0.5)
8484

8585
# Create a new DisplayIO group
86-
splash = displayio.Group(max_size=15)
86+
splash = displayio.Group()
8787

8888
# show splash group
8989
display.show(splash)
@@ -132,19 +132,19 @@
132132
font_small.load_glyphs(full_glyphs)
133133

134134
# Label to display Adafruit IO status
135-
label_status = Label(font_small, max_glyphs=20)
135+
label_status = Label(font_small)
136136
label_status.x = 305
137137
label_status.y = 10
138138
splash.append(label_status)
139139

140140
# Create a label to display the temperature
141-
label_temp = Label(font, max_glyphs=4)
141+
label_temp = Label(font)
142142
label_temp.x = 35
143143
label_temp.y = 300
144144
splash.append(label_temp)
145145

146146
# Create a label to display the water level
147-
label_level = Label(font, max_glyphs=4)
147+
label_level = Label(font)
148148
label_level.x = display.width - 130
149149
label_level.y = 300
150150
splash.append(label_level)

0 commit comments

Comments
 (0)