commit | 6577b7e592fb933c39b2b97aa717d95ae4ae2329 | [log] [tgz] |
---|---|---|
author | Phil Howard <phil@gadgetoid.com> | Wed Mar 09 12:19:22 2016 +0000 |
committer | Phil Howard <phil@gadgetoid.com> | Wed Mar 09 12:19:22 2016 +0000 |
tree | ea052abd03e41cfa6d29ddf7780bcee8537c99d6 | |
parent | 77ce6cd9eb124496494c5f3e6d3a0a1d6fbe2a23 [diff] [blame] |
Updated to reflect wiringpi2 to wiringpi rename
diff --git a/examples/delay.py b/examples/delay.py index 66107ac..be899bf 100644 --- a/examples/delay.py +++ b/examples/delay.py
@@ -1,5 +1,5 @@ # Demonstrates use of Arduino-like delay function -import wiringpi2 +import wiringpi print 'Hello World' -wiringpi2.delay(1500) # Delay for 1.5 seconds +wiringpi.delay(1500) # Delay for 1.5 seconds print 'Hi again!'