I'm new to the raspberry pi community and need to power a 1v motor however, I can not figure out how to output such power
Here is all of,my code if you need it
import time
led=Pin(25,Pin.OUT)
Motor=Pin(15,Pin.OUT)
print("working!")
for i in range (3):
Motor.value(1)
led.value(1)
time.sleep(0.5)
Motor.value(0)
led.value(0)
time.sleep(1)
Motor.value(0)
led.value(0)