Skip to content

Commit 7b83d4c

Browse files
authored
Merge branch 'master' into zelda-sword-update
2 parents 6dff7fa + b3598d9 commit 7b83d4c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

BLE_Heart_Rate_Trainer/ble_heart_rate_trainer.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,9 @@
3535
# Seven Segment FeatherWing setup
3636
i2c = board.I2C()
3737
display_A = Seg7x4(i2c, address=0x70) # this will be the BPM display
38-
display_A.brightness = 15
3938
display_A.fill(0) # Clear the display
4039
# Second display has A0 address jumpered
4140
display_B = Seg7x4(i2c, address=0x71) # this will be the % target display
42-
display_B.brightness = 15
4341
display_B.fill(0) # Clear the display
4442

4543
# display_A "b.P.M."

Matrix_7-Segment_LED_Backpack_Raspberry_Pi/alphanum4_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Clear the display.
1414
display.fill(0)
1515

16-
# set brightness, range 1-15, 15 max brightness
17-
display.brightness = 15
16+
# set brightness, range 0-1.0, 1.0 max brightness
17+
display.brightness = 1.0
1818

1919
# show phrase on alphanumeric display
2020
message = "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"

0 commit comments

Comments
 (0)