SlideShare a Scribd company logo
Prepared by: Mohamed AbdAllah
Raspberry pi interfacing
Lecture 6: Working on raspberry pi
1
Lecture Agenda
 Installing Linux on the Pi.
 Setting a static IP address.
 Setting a local host name.
 Configuring the Wi-Fi dongle.
 Working with Pi GPIO.
 Working with Pi UART.
 Working with Pi PWM.
2
Lecture Agenda
3
Installing Linux on the Pi
4
 Downloading Linux image
• Download Linux image for raspberry pi, for example download the
Raspbian image from the following website:
http://raspberrypi.org/
 Image extracting
• Decompress the downloaded file, rename the decompressed file to any
name for easier access using command line, for example let the file
name be (assuming in home directory):
~/RaspberryImage.img
 Installing the image
• Put the SD Card in the computer and format it first (using disks utility
for example, you can type “disks” in the already installed applications).
Installing Linux on the Pi
5
• Then type the following command in the terminal to know the SD Card
name (Note the $ is just indication that this is a command, don’t write it
in your commands):
$ dmesg
• Then search in the last few lines for SD Card name, for example sdb
(Note we will ignore sdb0 and sdb1 and so on as those are just the SD
Card internal partitions if you didn’t format the card).
• Type on the terminal and wait about 5 minutes to finish:
$ sudo dd bs=4M if=~/RaspberryImage.img of=/dev/sdb
• Now the Pi is ready to boot, connect your SD Card, keyboard, mouse,
HDMI cable, LAN cable and WiFi dongle to the Pi and start working.
• Note that normally the HDMI cable will work automatically, but on
some cases if it didn’t work, we need to edit some configurations as we
will illustrate next.
Installing Linux on the Pi
6
 Configuring the HDMI
• In case that the HDMI didn’t work automatically, connect the SD Card to
the computer and open the file called config.txt inside the SD Card boot
partition.
• Note that you need to open it as root, in the command line type:
$ sudo gedit
And before hitting Enter key, drag the config.txt file from its place and drop
it beside your command to automatically paste its path, then hit Enter.
• The file after editing should look the same like this:
Installing Linux on the Pi
7
 Configuring the HDMI
Installing Linux on the Pi
8
 Configuring the HDMI
Installing Linux on the Pi
9
 Configuring the HDMI
• Now remove the SD Card from your computer and connect it to the Pi
and start it and it the HDMI now should work.
 First steps on the Pi
• At the first time the Pi boots it shows a configuration screen, you can
edit the configurations now or later after login by opening the same
screen by typing the command
$ sudo raspi-config
 Choose Expand File System option.
 Choose on advanced options to enable SSH, I2C, SPI.
 Choose update.
• After update, login by using “pi” as user name, and “raspberry” as
password
• Type the following commands
$ sudo apt-get update
$ sudo apt-get upgrade
Installing Linux on the Pi
10
 First steps on the Pi
• Now reboot the Pi
$ sudo reboot
• To connect remotely to the Pi using your PC inside the same network,
we need first to know the Pi IP address, so on the Pi type the command
$ ifconfig
• You will find the Pi IP address beside the interface “eth0” as now we are
connected to the network through LAN cable.
• Assuming that you found that the Pi IP is 192.168.1.2, now on your PC
while you are connected on the same network, type the following
$ sudo ssh pi@192.168.1.2
• Then if prompted, type yes and hit enter to confirm the connection
• Then type “pi” as user name, and “raspberry” as password, and now
you are one the Pi command line so any command you type is actually
executed on the Pi not on your PC.
Installing Linux on the Pi
11
Setting a static IP address
12
• The IP address we used to connect to the Pi may be changed by the
network router, so to make it static edit the following file on the Pi :
/etc/network/interfaces
• First we need to prepare the configurations, on the Pi type
$ ifconfig
You will se something like this, store those numbers as we will need them
Setting a static IP address
13
• Then type
$ netstat -nr
You will se something like this, store those numbers as we will need them
• Now type:
$ sudo nano /etc/network/interfaces
• Uncomment the following line to look like this:
• Add after that line the following lines
Setting a static IP address
14
• The file after editing should look like this, now close the file by hitting
CTRL+X and hit Enter:
• Now whenever the Pi boots, it will automatically take the IP 192.168.1.2
Setting a static IP address
15
Setting a local host name
16
• The problem of the static IP address is the when we move to another
network with other configurations it will not work, so we will give the Pi
a local host name that we can deal with the Pi using that name
whatever its IP.
• First type the following command to set password for root user as we
will need it
$ sudo passwd
• Then we need to undo the configurations of the static IP, open the same
file again /etc/network/interfaces and undo all changes again
Setting a local host name
17
• Then type
$ sudo apt-get install avahi-daemon
• Now inside any network you can connect to the Pi using the name
“raspberrypi.local”, and the root password
$ sudo ssh raspberrypi.local
*Note: You can switch to “pi” user by typing $ su pi
• To change the name, change “raspberrypi” in the following 2 files to the
name that you want (ex. “mynewname” or anything)
$ sudo nano /etc/hosts
$ sudo nano /etc/hostname
• Then to commit, run the command multiple times until it run
successfully without errors.
$ sudo /etc/init.d/hostname.sh
• Then reboot so you can use your new name
$ sudo ssh mynewname.local
Setting a local host name
18
Configuring the Wi-Fi dongle
19
• First to know the manufacturer of the WiFi dongle type:
$ dmesg | grep usb
• You will see something like this
• As we can see it is Realtek.
Configuring the Wi-Fi dongle
20
• Then type the following commands:
$ sudo apt-cache search firmware wireless
$ sudo apt-get install firmware-realtek
• Then edit the interfaces file
$ sudo nano /etc/network/interfaces
• Replace the following lines:
With the following lines:
Configuring the Wi-Fi dongle
21
• Then type the following command:
$ sudo nano /etc/wpa.conf
• Type the following lines, replace “networkname” with your WiFi
network name, and “network passkey” with your WiFi network pass
key:
*Note that there is no space after the = sign
• Now shutdown and remove the LAN cable then start the Pi with the
WiFi dongle only and it will automatically access the network, you can
access it remotely using the same name “raspberrypi.local” or the
name you gave to it.
Configuring the Wi-Fi dongle
22
Working with Pi GPIO
23
Working with Pi GPIO
24
• To interact with Pi GPIO (Make pi input or output, read pin value or
write to pin logic high or logic low value), first create empty file:
$ nano GPIO_python.py
• Write the following lines in the file, here we are making LED ON for 5
seconds then OFF on GPIO17:
Working with Pi GPIO
25
• Now close the file, then add execute permission to it:
$ sudo chmod u+x GPIO_python.py
• Now execute the script by typing:
$ sudo ./GPIO_python.py
Working with Pi GPIO
26
• To make LED Flasher each 1 second on GPIO17, create new script as
previous example:
Working with Pi GPIO
27
• To take input from GPIO4, if logic high the make the LED connected to
GPIO17 to be ON, else make LED OFF, create new script:
Working with Pi GPIO
28
Working with Pi UART
29
• To interact with Pi UART, first we need to prevent the kernel from
sending any messages to the UART port by editing these files:
 First backup the original file
$ sudo cp /boot/cmdline.txt /boot/cmdline_bp.txt
 Change this file configurations
$ sudo nano /boot/cmdline.txt
 Remove ttyAMA0,115200, final line should be something like this:
 Change this file configurations
$ sudo nano /etc/inittab
 Comment out the line that contains ttyAMA0 115200, by putting # in its
start
• Reboot and now the UART port is ready to be used.
$ sudo reboot
Working with Pi UART
30
• To send and receive bytes on UART port, create new script:
Working with Pi UART
31
• To observe what you receive on the serial port you can use a program
like minicom, to install it:
$ sudo apt-get install minicom
• To edit program configurations:
$ sudo minicom -s
• To edit port name press Shift+A, and change it to be /dev/ttyAMA0.
• To edit baud rate press Shift+E, then Shift+C for 9600.
• Now choose save as dfl to save this configurations as default, then Exit.
• To use the program at any time, type the following and observe what
you receive on the UART port:
$ sudo minicom
Working with Pi UART
32
Working with Pi PWM
33
• To output a soft PWM signal on any GPIO for example GPIO27, create
new script:
Working with Pi PWM
34
• Useful methods:
Working with Pi PWM
35
Mohamed AbdAllah
Embedded Systems Engineer
mohabdallah8@gmail.com
36

More Related Content

What's hot (20)

PPTX
process control block
Vikas SHRIVASTAVA
 
PPTX
Kernel. Operating System
pratikkadam78
 
PPT
Sistemas operativos 10º
teacherpereira
 
PPT
Operating System
ushabarad142
 
PPTX
1_2+Looking+at+the+Windows+10+Desktop_الدرس_الثاني.pptx
ssuser6c0488
 
PPTX
Operating system
Madhu Bala
 
PDF
Présentation ubuntu 12.10 PDF
Mohamed Ben Bouzid
 
PDF
Os structure
Mohd Arif
 
PDF
Organizacao e estrutura de Computadores
Suzana Viana Mota
 
PPTX
Instalação de Servidor de Arquivo
Joeldson Costa Damasceno
 
PPTX
Different types of Editors in Linux
Bhavik Trivedi
 
PPTX
Operating system deign and implementation
sangrampatil81
 
PPTX
Linux Boot Process
darshhingu
 
PPTX
Disk management server
anilinvns
 
PPTX
Detecção de erros no computador-Arquitetura de Computadores
Gabriel Santos
 
PPTX
Windows 10 ppt
saniacorreya
 
PPT
Server client-presentation.
Norvy Villanueva
 
PPTX
Bios
Ivan Chkalov
 
PPTX
Boot process
Salman Memon
 
PPT
Linux architecture
mcganesh
 
process control block
Vikas SHRIVASTAVA
 
Kernel. Operating System
pratikkadam78
 
Sistemas operativos 10º
teacherpereira
 
Operating System
ushabarad142
 
1_2+Looking+at+the+Windows+10+Desktop_الدرس_الثاني.pptx
ssuser6c0488
 
Operating system
Madhu Bala
 
Présentation ubuntu 12.10 PDF
Mohamed Ben Bouzid
 
Os structure
Mohd Arif
 
Organizacao e estrutura de Computadores
Suzana Viana Mota
 
Instalação de Servidor de Arquivo
Joeldson Costa Damasceno
 
Different types of Editors in Linux
Bhavik Trivedi
 
Operating system deign and implementation
sangrampatil81
 
Linux Boot Process
darshhingu
 
Disk management server
anilinvns
 
Detecção de erros no computador-Arquitetura de Computadores
Gabriel Santos
 
Windows 10 ppt
saniacorreya
 
Server client-presentation.
Norvy Villanueva
 
Boot process
Salman Memon
 
Linux architecture
mcganesh
 

Viewers also liked (20)

PDF
Raspberry Pi - Lecture 1 Introduction
Mohamed Abdallah
 
PDF
Raspberry Pi - Lecture 2 Linux OS
Mohamed Abdallah
 
PDF
Raspberry Pi - Lecture 5 Python for Raspberry Pi
Mohamed Abdallah
 
PDF
Raspberry Pi - Lecture 4 Hardware Interfacing Special Cases
Mohamed Abdallah
 
PDF
Raspberry Pi - Lecture 3 Embedded Communication Protocols
Mohamed Abdallah
 
PDF
Embedded C - Lecture 4
Mohamed Abdallah
 
PDF
Hardware interfacing basics using AVR
Mohamed Abdallah
 
PDF
Embedded C - Lecture 1
Mohamed Abdallah
 
PDF
Embedded C - Lecture 3
Mohamed Abdallah
 
PDF
Embedded C - Lecture 2
Mohamed Abdallah
 
PPT
Raspberry pi
Anija Nair
 
DOCX
Plc dasar
sextrolol
 
PPT
Linuxdd[1]
mcganesh
 
PPTX
Device drivers Introduction
vijay selva
 
PDF
Linux kernel code
Ganesh Naik
 
PDF
Gnubs-pres-foss-cdac-sem
Sagun Baijal
 
PPTX
Device Drivers in Linux
Shreyas MM
 
PDF
Breaking into Open Source and Linux: A USB 3.0 Success Story
Sage Sharp
 
PDF
brief intro to Linux device drivers
Alexandre Moreno
 
PPTX
Linux Device Driver’s
Rashmi Warghade
 
Raspberry Pi - Lecture 1 Introduction
Mohamed Abdallah
 
Raspberry Pi - Lecture 2 Linux OS
Mohamed Abdallah
 
Raspberry Pi - Lecture 5 Python for Raspberry Pi
Mohamed Abdallah
 
Raspberry Pi - Lecture 4 Hardware Interfacing Special Cases
Mohamed Abdallah
 
Raspberry Pi - Lecture 3 Embedded Communication Protocols
Mohamed Abdallah
 
Embedded C - Lecture 4
Mohamed Abdallah
 
Hardware interfacing basics using AVR
Mohamed Abdallah
 
Embedded C - Lecture 1
Mohamed Abdallah
 
Embedded C - Lecture 3
Mohamed Abdallah
 
Embedded C - Lecture 2
Mohamed Abdallah
 
Raspberry pi
Anija Nair
 
Plc dasar
sextrolol
 
Linuxdd[1]
mcganesh
 
Device drivers Introduction
vijay selva
 
Linux kernel code
Ganesh Naik
 
Gnubs-pres-foss-cdac-sem
Sagun Baijal
 
Device Drivers in Linux
Shreyas MM
 
Breaking into Open Source and Linux: A USB 3.0 Success Story
Sage Sharp
 
brief intro to Linux device drivers
Alexandre Moreno
 
Linux Device Driver’s
Rashmi Warghade
 
Ad

Similar to Raspberry Pi - Lecture 6 Working on Raspberry Pi (20)

PPTX
Up and running with Raspberry Pi
Shahed Mehbub
 
PPTX
Raspberry Pi ppt.pptx
ushabharathisb1
 
PPTX
Raspberry Pi ppt.pptx
ushabharathisb1
 
PDF
Raspi_TOR_Access_Point_BenMoore
Benjamin Moore
 
DOCX
Lab manual
BNilavara
 
PPT
Raspberry zero usb in linux
GSHCO
 
PPTX
introduction to Raspberry pi
Mohamed Ali May
 
PDF
Raspberry pi overview
Matthew Karas
 
PPTX
Raspberry Pi Introductory Lecture
Syed Umaid Ahmed
 
PPTX
IOT notes ....,.........
taetaebts431
 
PPTX
Configuring Raspberry Pi as a Dev Environment
Carole Bennett
 
PPTX
IoT for data science Module 5 - Raspberry Pi.pptx
MadhurimaDas52
 
DOCX
Ex.no1
Vairavel C
 
PPTX
Raspberry pi : how to get started
동호 손
 
PPTX
Raspberry pi
Rishabh Sharma
 
PPTX
Raspberry Pi (Introduction)
Mandeesh Singh
 
PDF
Exploring Raspberry Pi
Lentin Joseph
 
DOCX
Raspberry with laptop
Prof Kingstan
 
PPTX
Starting Raspberry Pi
LloydMoore
 
PPTX
Getting Started with Raspberry Pi
yeokm1
 
Up and running with Raspberry Pi
Shahed Mehbub
 
Raspberry Pi ppt.pptx
ushabharathisb1
 
Raspberry Pi ppt.pptx
ushabharathisb1
 
Raspi_TOR_Access_Point_BenMoore
Benjamin Moore
 
Lab manual
BNilavara
 
Raspberry zero usb in linux
GSHCO
 
introduction to Raspberry pi
Mohamed Ali May
 
Raspberry pi overview
Matthew Karas
 
Raspberry Pi Introductory Lecture
Syed Umaid Ahmed
 
IOT notes ....,.........
taetaebts431
 
Configuring Raspberry Pi as a Dev Environment
Carole Bennett
 
IoT for data science Module 5 - Raspberry Pi.pptx
MadhurimaDas52
 
Ex.no1
Vairavel C
 
Raspberry pi : how to get started
동호 손
 
Raspberry pi
Rishabh Sharma
 
Raspberry Pi (Introduction)
Mandeesh Singh
 
Exploring Raspberry Pi
Lentin Joseph
 
Raspberry with laptop
Prof Kingstan
 
Starting Raspberry Pi
LloydMoore
 
Getting Started with Raspberry Pi
yeokm1
 
Ad

Recently uploaded (20)

PPTX
UNIT 1 - INTRODUCTION TO AI and AI tools and basic concept
gokuld13012005
 
PDF
Module - 4 Machine Learning -22ISE62.pdf
Dr. Shivashankar
 
PPTX
template.pptxr4t5y67yrttttttttttttttttttttttttttttttttttt
SithamparanaathanPir
 
PPT
FINAL plumbing code for board exam passer
MattKristopherDiaz
 
PDF
William Stallings - Foundations of Modern Networking_ SDN, NFV, QoE, IoT, and...
lavanya896395
 
PDF
LLC CM NCP1399 SIMPLIS MODEL MANUAL.PDF
ssuser1be9ce
 
PDF
bs-en-12390-3 testing hardened concrete.pdf
ADVANCEDCONSTRUCTION
 
PPTX
Artificial Intelligence jejeiejj3iriejrjifirirjdjeie
VikingsGaming2
 
PDF
Designing for Tomorrow – Architecture’s Role in the Sustainability Movement
BIM Services
 
PPTX
CM Function of the heart pp.pptxafsasdfddsf
drmaneharshalid
 
PDF
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
PDF
June 2025 - Top 10 Read Articles in Network Security and Its Applications
IJNSA Journal
 
PDF
Module - 5 Machine Learning-22ISE62.pdf
Dr. Shivashankar
 
PPTX
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
 
PPTX
Unit_I Functional Units, Instruction Sets.pptx
logaprakash9
 
PDF
A Brief Introduction About Robert Paul Hardee
Robert Paul Hardee
 
PPTX
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
cl144
 
PPTX
darshai cross section and river section analysis
muk7971
 
PDF
Authentication Devices in Fog-mobile Edge Computing Environments through a Wi...
ijujournal
 
PDF
13th International Conference of Security, Privacy and Trust Management (SPTM...
ijcisjournal
 
UNIT 1 - INTRODUCTION TO AI and AI tools and basic concept
gokuld13012005
 
Module - 4 Machine Learning -22ISE62.pdf
Dr. Shivashankar
 
template.pptxr4t5y67yrttttttttttttttttttttttttttttttttttt
SithamparanaathanPir
 
FINAL plumbing code for board exam passer
MattKristopherDiaz
 
William Stallings - Foundations of Modern Networking_ SDN, NFV, QoE, IoT, and...
lavanya896395
 
LLC CM NCP1399 SIMPLIS MODEL MANUAL.PDF
ssuser1be9ce
 
bs-en-12390-3 testing hardened concrete.pdf
ADVANCEDCONSTRUCTION
 
Artificial Intelligence jejeiejj3iriejrjifirirjdjeie
VikingsGaming2
 
Designing for Tomorrow – Architecture’s Role in the Sustainability Movement
BIM Services
 
CM Function of the heart pp.pptxafsasdfddsf
drmaneharshalid
 
MODULE-5 notes [BCG402-CG&V] PART-B.pdf
Alvas Institute of Engineering and technology, Moodabidri
 
June 2025 - Top 10 Read Articles in Network Security and Its Applications
IJNSA Journal
 
Module - 5 Machine Learning-22ISE62.pdf
Dr. Shivashankar
 
Stability of IBR Dominated Grids - IEEE PEDG 2025 - short.pptx
ssuser307730
 
Unit_I Functional Units, Instruction Sets.pptx
logaprakash9
 
A Brief Introduction About Robert Paul Hardee
Robert Paul Hardee
 
FSE_LLM4SE1_A Tool for In-depth Analysis of Code Execution Reasoning of Large...
cl144
 
darshai cross section and river section analysis
muk7971
 
Authentication Devices in Fog-mobile Edge Computing Environments through a Wi...
ijujournal
 
13th International Conference of Security, Privacy and Trust Management (SPTM...
ijcisjournal
 

Raspberry Pi - Lecture 6 Working on Raspberry Pi

  • 1. Prepared by: Mohamed AbdAllah Raspberry pi interfacing Lecture 6: Working on raspberry pi 1
  • 2. Lecture Agenda  Installing Linux on the Pi.  Setting a static IP address.  Setting a local host name.  Configuring the Wi-Fi dongle.  Working with Pi GPIO.  Working with Pi UART.  Working with Pi PWM. 2
  • 5.  Downloading Linux image • Download Linux image for raspberry pi, for example download the Raspbian image from the following website: http://raspberrypi.org/  Image extracting • Decompress the downloaded file, rename the decompressed file to any name for easier access using command line, for example let the file name be (assuming in home directory): ~/RaspberryImage.img  Installing the image • Put the SD Card in the computer and format it first (using disks utility for example, you can type “disks” in the already installed applications). Installing Linux on the Pi 5
  • 6. • Then type the following command in the terminal to know the SD Card name (Note the $ is just indication that this is a command, don’t write it in your commands): $ dmesg • Then search in the last few lines for SD Card name, for example sdb (Note we will ignore sdb0 and sdb1 and so on as those are just the SD Card internal partitions if you didn’t format the card). • Type on the terminal and wait about 5 minutes to finish: $ sudo dd bs=4M if=~/RaspberryImage.img of=/dev/sdb • Now the Pi is ready to boot, connect your SD Card, keyboard, mouse, HDMI cable, LAN cable and WiFi dongle to the Pi and start working. • Note that normally the HDMI cable will work automatically, but on some cases if it didn’t work, we need to edit some configurations as we will illustrate next. Installing Linux on the Pi 6
  • 7.  Configuring the HDMI • In case that the HDMI didn’t work automatically, connect the SD Card to the computer and open the file called config.txt inside the SD Card boot partition. • Note that you need to open it as root, in the command line type: $ sudo gedit And before hitting Enter key, drag the config.txt file from its place and drop it beside your command to automatically paste its path, then hit Enter. • The file after editing should look the same like this: Installing Linux on the Pi 7
  • 8.  Configuring the HDMI Installing Linux on the Pi 8
  • 9.  Configuring the HDMI Installing Linux on the Pi 9
  • 10.  Configuring the HDMI • Now remove the SD Card from your computer and connect it to the Pi and start it and it the HDMI now should work.  First steps on the Pi • At the first time the Pi boots it shows a configuration screen, you can edit the configurations now or later after login by opening the same screen by typing the command $ sudo raspi-config  Choose Expand File System option.  Choose on advanced options to enable SSH, I2C, SPI.  Choose update. • After update, login by using “pi” as user name, and “raspberry” as password • Type the following commands $ sudo apt-get update $ sudo apt-get upgrade Installing Linux on the Pi 10
  • 11.  First steps on the Pi • Now reboot the Pi $ sudo reboot • To connect remotely to the Pi using your PC inside the same network, we need first to know the Pi IP address, so on the Pi type the command $ ifconfig • You will find the Pi IP address beside the interface “eth0” as now we are connected to the network through LAN cable. • Assuming that you found that the Pi IP is 192.168.1.2, now on your PC while you are connected on the same network, type the following $ sudo ssh [email protected] • Then if prompted, type yes and hit enter to confirm the connection • Then type “pi” as user name, and “raspberry” as password, and now you are one the Pi command line so any command you type is actually executed on the Pi not on your PC. Installing Linux on the Pi 11
  • 12. Setting a static IP address 12
  • 13. • The IP address we used to connect to the Pi may be changed by the network router, so to make it static edit the following file on the Pi : /etc/network/interfaces • First we need to prepare the configurations, on the Pi type $ ifconfig You will se something like this, store those numbers as we will need them Setting a static IP address 13
  • 14. • Then type $ netstat -nr You will se something like this, store those numbers as we will need them • Now type: $ sudo nano /etc/network/interfaces • Uncomment the following line to look like this: • Add after that line the following lines Setting a static IP address 14
  • 15. • The file after editing should look like this, now close the file by hitting CTRL+X and hit Enter: • Now whenever the Pi boots, it will automatically take the IP 192.168.1.2 Setting a static IP address 15
  • 16. Setting a local host name 16
  • 17. • The problem of the static IP address is the when we move to another network with other configurations it will not work, so we will give the Pi a local host name that we can deal with the Pi using that name whatever its IP. • First type the following command to set password for root user as we will need it $ sudo passwd • Then we need to undo the configurations of the static IP, open the same file again /etc/network/interfaces and undo all changes again Setting a local host name 17
  • 18. • Then type $ sudo apt-get install avahi-daemon • Now inside any network you can connect to the Pi using the name “raspberrypi.local”, and the root password $ sudo ssh raspberrypi.local *Note: You can switch to “pi” user by typing $ su pi • To change the name, change “raspberrypi” in the following 2 files to the name that you want (ex. “mynewname” or anything) $ sudo nano /etc/hosts $ sudo nano /etc/hostname • Then to commit, run the command multiple times until it run successfully without errors. $ sudo /etc/init.d/hostname.sh • Then reboot so you can use your new name $ sudo ssh mynewname.local Setting a local host name 18
  • 20. • First to know the manufacturer of the WiFi dongle type: $ dmesg | grep usb • You will see something like this • As we can see it is Realtek. Configuring the Wi-Fi dongle 20
  • 21. • Then type the following commands: $ sudo apt-cache search firmware wireless $ sudo apt-get install firmware-realtek • Then edit the interfaces file $ sudo nano /etc/network/interfaces • Replace the following lines: With the following lines: Configuring the Wi-Fi dongle 21
  • 22. • Then type the following command: $ sudo nano /etc/wpa.conf • Type the following lines, replace “networkname” with your WiFi network name, and “network passkey” with your WiFi network pass key: *Note that there is no space after the = sign • Now shutdown and remove the LAN cable then start the Pi with the WiFi dongle only and it will automatically access the network, you can access it remotely using the same name “raspberrypi.local” or the name you gave to it. Configuring the Wi-Fi dongle 22
  • 23. Working with Pi GPIO 23
  • 24. Working with Pi GPIO 24
  • 25. • To interact with Pi GPIO (Make pi input or output, read pin value or write to pin logic high or logic low value), first create empty file: $ nano GPIO_python.py • Write the following lines in the file, here we are making LED ON for 5 seconds then OFF on GPIO17: Working with Pi GPIO 25
  • 26. • Now close the file, then add execute permission to it: $ sudo chmod u+x GPIO_python.py • Now execute the script by typing: $ sudo ./GPIO_python.py Working with Pi GPIO 26
  • 27. • To make LED Flasher each 1 second on GPIO17, create new script as previous example: Working with Pi GPIO 27
  • 28. • To take input from GPIO4, if logic high the make the LED connected to GPIO17 to be ON, else make LED OFF, create new script: Working with Pi GPIO 28
  • 29. Working with Pi UART 29
  • 30. • To interact with Pi UART, first we need to prevent the kernel from sending any messages to the UART port by editing these files:  First backup the original file $ sudo cp /boot/cmdline.txt /boot/cmdline_bp.txt  Change this file configurations $ sudo nano /boot/cmdline.txt  Remove ttyAMA0,115200, final line should be something like this:  Change this file configurations $ sudo nano /etc/inittab  Comment out the line that contains ttyAMA0 115200, by putting # in its start • Reboot and now the UART port is ready to be used. $ sudo reboot Working with Pi UART 30
  • 31. • To send and receive bytes on UART port, create new script: Working with Pi UART 31
  • 32. • To observe what you receive on the serial port you can use a program like minicom, to install it: $ sudo apt-get install minicom • To edit program configurations: $ sudo minicom -s • To edit port name press Shift+A, and change it to be /dev/ttyAMA0. • To edit baud rate press Shift+E, then Shift+C for 9600. • Now choose save as dfl to save this configurations as default, then Exit. • To use the program at any time, type the following and observe what you receive on the UART port: $ sudo minicom Working with Pi UART 32
  • 33. Working with Pi PWM 33
  • 34. • To output a soft PWM signal on any GPIO for example GPIO27, create new script: Working with Pi PWM 34
  • 35. • Useful methods: Working with Pi PWM 35