Rename folders as per suggestion from Rajat

This commit is contained in:
Danny Staple
2023-01-18 13:57:13 +00:00
parent a7e7d55d62
commit 7907a3fecf
78 changed files with 1389 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import time
import board
import pwmio
A1_PWM = pwmio.PWMOut(board.GP17)
A1_PWM.duty_cycle = 2 ** 16 - 1
time.sleep(0.3)
A1_PWM.duty_cycle = 2 ** 15
time.sleep(0.3)
A1_PWM.duty_cycle = 0