README: Use degree sign instead of ordinal

º is the masculine ordinal in Spanish. ° is the degree sign. They look different in some fonts.
This commit is contained in:
Jordan Christiansen
2020-02-06 11:38:51 -06:00
committed by Ayke
parent 850df0a25c
commit 2034f92d11
+1 -1
View File
@@ -40,7 +40,7 @@ func main() {
for {
temp, _ := sensor.ReadTemperature()
println("Temperature:", float32(temp)/1000, "ºC")
println("Temperature:", float32(temp)/1000, "°C")
pressure, _ := sensor.ReadPressure()
println("Pressure", float32(pressure)/100000, "hPa")