fix celsius symbol

This commit is contained in:
Daniel Esteban
2020-02-08 19:44:03 +01:00
committed by Ron Evans
parent 2034f92d11
commit 0519540d0c
14 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ func main() {
for {
temp, _ := sensor.ReadTemperature()
println("Temperature:", temp/1000, "ºC")
println("Temperature:", temp/1000, "°C")
time.Sleep(2 * time.Second)
}