Skip to content

Commit 8e434d9

Browse files
Silicon Labs CircuitPython Applications v1.2.1
1 parent bb77144 commit 8e434d9

File tree

141 files changed

+132
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+132
-76
lines changed

README.md

+7-9

cp_bluetooth_distance_monitor/README.md

+6-5

cp_bluetooth_environmental_sensing/README.md

+7-8

cp_bluetooth_light_detector/README.md

+7-9

cp_bluetooth_neopixel_humidity_gauge/README.md

+7-10

cp_non_wireless_display_demo/README.md

+12-4

cp_rgb_display_drawing_ili9341/README.md

+13-6

cp_rgb_display_drawing_ili9341/lib/DrawApplication.py cp_rgb_display_drawing_ili9341/device_root/lib/DrawApplication.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def __init__(self,
8686
def show_start_up(self):
8787

8888
# show Silabs big logo
89-
image, palette = load("lib/silabs80.bmp")
89+
image, palette = load("silabs80.bmp")
9090
logo_silabs80 = TileGrid(image, pixel_shader = palette,
9191
x=80, y=60)
9292
self.group.append(logo_silabs80)
@@ -127,12 +127,12 @@ def show_color_palette(self):
127127
self.bitmap[i,j] = self.pen_color
128128

129129
def show_footer_logo(self):
130-
image, palette = load("lib/cpython.bmp")
130+
image, palette = load("cpython.bmp")
131131
logo_cpython = TileGrid(image, pixel_shader = palette,
132132
x=0, y=200)
133133
self.group.append(logo_cpython)
134134

135-
image, palette = load("lib/silabs.bmp")
135+
image, palette = load("silabs.bmp")
136136
logo_silabs = TileGrid(image, pixel_shader = palette,
137137
x=240, y=200)
138138
self.group.append(logo_silabs)

0 commit comments

Comments
 (0)