Commit fb6b7f5
committed
Update Adafruit_CharLCD/Adafruit_CharLCD.py
In delayMicroseconds(), sleep(seconds) always equals 0 (get a lot of weird characters on LCD)
in python v2 microseconds / 1000000 = 0
changed to : microseconds / float(1000000)
so sleep(seconds) doesn't always equal 0 (get a lot of weird characters on LCD otherwise)1 parent 9ab45e9 commit fb6b7f5
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
229 | 229 | | |
230 | 230 | | |
231 | 231 | | |
232 | | - | |
| 232 | + | |
233 | 233 | | |
234 | 234 | | |
235 | 235 | | |
| |||
0 commit comments