Skip to content

Commit 9530d8a

Browse files
committed
Correct typos in comments and documentation
1 parent 761a6a3 commit 9530d8a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/ReadSensorsImperial/ReadSensorsImperial.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
44
This example reads data from the on-board HTS221 sensor of the
55
Nano 33 BLE Sense then, prints the temperature and humidity sensor
6-
values in imeprial units to the Serial Monitor once a second.
6+
values in imperial units to the Serial Monitor once a second.
77
88
The circuit:
99
- Arduino Nano 33 BLE Sense
@@ -24,7 +24,7 @@ void setup() {
2424
}
2525

2626
void loop() {
27-
// Passing in FAHRENHEIT as the unit parameter to ENV.readTemperature(...),
27+
// Passing in FAHRENHEIT as the unit parameter to HTS.readTemperature(...),
2828
// allows you to read the sensor values in imperial units
2929
float temperature = HTS.readTemperature(FAHRENHEIT);
3030
float humidity = HTS.readHumidity();

0 commit comments

Comments
 (0)