Merge pull request #73 from kattni/circuitpython-quick-start
Linting update
This commit is contained in:
commit
7dbba4602a
3 changed files with 3 additions and 3 deletions
|
|
@ -7,4 +7,4 @@ touch_A0 = touchio.TouchIn(board.A0) # Will not work on Circuit Playground Expr
|
|||
while True:
|
||||
if touch_A0.value:
|
||||
print("Touched A0!")
|
||||
time.sleep(0.05)
|
||||
time.sleep(0.05)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import pulseio
|
||||
import time
|
||||
import pulseio
|
||||
import board
|
||||
|
||||
led = pulseio.PWMOut(board.D13, frequency=5000, duty_cycle=0)
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
import pulseio
|
||||
import time
|
||||
import pulseio
|
||||
import board
|
||||
|
||||
piezo = pulseio.PWMOut(board.A2, duty_cycle=0, frequency=440, variable_frequency=True)
|
||||
|
|
|
|||
Loading…
Reference in a new issue