Skip to content

Commit 30bd4c3

Browse files
authored
Merge pull request #27 from ncguk/patch-1
Minor comment cleanup
2 parents 53e0930 + f06bc78 commit 30bd4c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/bme280_normal_mode.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
#bme_cs = digitalio.DigitalInOut(board.D10)
1919
#bme280 = adafruit_bme280.Adafruit_BME280_SPI(spi, bme_cs)
2020

21-
# change this to match the location's pressure (hPa) at sea level
21+
# Change this to match the location's pressure (hPa) at sea level
2222
bme280.sea_level_pressure = 1013.25
2323
bme280.mode = adafruit_bme280.MODE_NORMAL
2424
bme280.standby_period = adafruit_bme280.STANDBY_TC_500
2525
bme280.iir_filter = adafruit_bme280.IIR_FILTER_X16
2626
bme280.overscan_pressure = adafruit_bme280.OVERSCAN_X16
2727
bme280.overscan_humidity = adafruit_bme280.OVERSCAN_X1
2828
bme280.overscan_temperature = adafruit_bme280.OVERSCAN_X2
29-
#The sensor will need a moment to gather inital readings
29+
# The sensor will need a moment to gather initial readings
3030
time.sleep(1)
3131

3232
while True:

0 commit comments

Comments
 (0)