
Interfacing of Raspberry pi with Motors:
Now ready
to write code to motor. Turn on your Raspberry Pi and Open the terminal
window.
1)
Write a program to Motor move
Forward and Backward while switch is pressed.
Create a
new text file “motor1.py” by typing the following:
Sudo nano motor1.py
After
that write following code to the Text editer page:
import os
import RPi.GPIO as GPIO
from time import sleep
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BOARD)...