Sunday, 30 April 2017

Interfacing of Raspberry pi with Motors:

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)...

Saturday, 29 April 2017

Interfacing of Lcd with Raspberry Pi:

LCD (Liquid Crystal Display):  LCD screen is an electronic display module and find a wide range of applications. A 16x2 LCD display is very basic module and is very commonly used in various devices and circuits. These modules are preferred over seven segment and other multi segment LED's. The reasons being: LCDs are economical; easily programmable; have no limitation of displaying special & even custom character (unlike...

Interfacing of Raspberry pi with Led and Sensors

Interfacing of Raspberry pi with led and Sensors: Now ready to write code to sensor and Led.  Turn on your Raspberry Pi and Open the terminal window. Create a new text file “sensor1.py” by typing the following: Sudo nano sensor1.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) #board usage gpio pin , bcm usasge...

Interfacing of Raspberry pi with led and Switch

Interfacing of Raspberry pi with led and Switch: Now ready to write code to switch and Led.  Turn on your Raspberry Pi and Open the terminal window. Create a new text file “switch1.py” by typing the following: Sudo nano switch1.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) #board usage gpio pin , bcm usasge...