Skip to content

Commit

Permalink
Merge pull request #44 from FoamyGuy/simpletest_cs_pin
Browse files Browse the repository at this point in the history
change CS pin to D5
  • Loading branch information
FoamyGuy authored Dec 11, 2024
2 parents 2651d73 + 2a3d158 commit 9517905
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/bmp280_normal_mode.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

# OR Create sensor object, communicating over the board's default SPI bus
# spi = busio.SPI()
# bmp_cs = digitalio.DigitalInOut(board.D10)
# bmp_cs = digitalio.DigitalInOut(board.D5)
# bmp280 = adafruit_bmp280.Adafruit_BMP280_SPI(spi, bmp_cs)

# change this to match the location's pressure (hPa) at sea level
Expand Down
2 changes: 1 addition & 1 deletion examples/bmp280_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# OR Create sensor object, communicating over the board's default SPI bus
# spi = board.SPI()
# bmp_cs = digitalio.DigitalInOut(board.D10)
# bmp_cs = digitalio.DigitalInOut(board.D5)
# bmp280 = adafruit_bmp280.Adafruit_BMP280_SPI(spi, bmp_cs)

# change this to match the location's pressure (hPa) at sea level
Expand Down

0 comments on commit 9517905

Please sign in to comment.