SlideShare uma empresa Scribd logo
1 de 79
Baixar para ler offline
WWW.THINKERERS.ORG
PRESENTS
RASPBERRY PI
HI THERE
I'm Adrian
Social entrepreneur and maker enthusiast
Based in KL
Previously enterprise software specialist
INTRODUCTION
Raspberry Pi Model B+
 by Lucasbosch / Image CC BY­SA
PI? RASPBERRY?
low­cost single­board computer
developed by the Raspberry Pi Foundation, UK
mainly runs Linux operating systems
Pi => Python
WHY RASPBERRY PI?
originally for teaching computer science in
schools
functions just like a regular PC:
browse internet, plays videos and games, word
processing
allows easy and painless way to control
electrical components/sensors using software
affordably priced at USD35 (≈ RM125)
WHAT'S IN THE B+?
700MHz ARM11 processor
VideoCore IV GPU
512MB RAM
HDMI output (up to 1920x1200)
Built­in Ethernet port
4 USB 2.0 ports
OTHER MODELS
Model A (April 2012)
Model B (Oct 2012)
Compute Model (April 2014)
Model B+ (July 2014)
Model A+ (Nov 2014)
Version 2 Model B (Feb 2015)
WHAT'S NOT IN THE BOX?
Display monitor (duh!)
Keyboard & mouse (obviously...)
Power supply (via Micro USB port)
Storage (microSD card)
CONNECTING TO THE PI
STANDALONE
Raspberry Pi + Monitor + Keyboard + Mouse
HEADLESS
Raspberry Pi + Network + Your Laptop
NETWORKING WITH THE PI
Built­in Ethernet for wired connections
Wireless also supported when attached to a
compatible WiFi dongle
We will connect to the Pi through a network
using SSH
SSH
also called Secure Shell
allows remote login to a networked computer
uses encryption to secure data communications
involves an SSH server (the Raspberry Pi)
and an SSH client (your laptop)
SSH CLIENTS
Linux and Mac OS X have a built­in command:
ssh
Windows users can install
PuTTY
   tip: PuTTY GUI client is also available for Linux
CONNECTING VIA SSH
Each Pi has been assigned a fixed IP address
For Linux and Mac OS X, type:
ssh pi@10.1.1.10
For Windows, run PuTTY
Hostname = 10.1.1.10, Port = 22
Click 'Open'
BASIC CLI & PYTHON
CLI COMMANDS
ls ­ list directory contents
pwd ­ show current directory
cd ­ change directory
mkdir ­ make directory
mv ­ move/rename files
rm ­ remove files/directories
mv ­ move/rename files
sudo ­ super user privileges
PYTHON
is a programming language
you create a file (called a Python script) that
contains a set of instructions
these instructions tell the computer what to do,
like read input from the keyboard or print some
text to the screen
you then pass the script to the Python
interpreter which will execute those instructions
HELLO PYTHON
Lets write a simple Python script to read input
from the keyboard and then print it to the screen
HELLO PYTHON
1. Create a new directory
2. Change to that new directory
3. Create a Python script
mkdir ~/python‐intro
cd ~/python‐intro
nano hello.py
SIMPLE PYTHON PROGRAM
4. Type in the following
name = raw_input("Hi, what is your name? ")
print("Hello %s, have fun hacking today!" % name)
          
SIMPLE PYTHON PROGRAM
5. Save the file by pressing Ctrl+X
6. When asked to confirm, press Y, then hit
ENTER
7. Run the Python script by typing:
python hello.py
MODIFYING A PYTHON PROGRAM
To edit your Python script, run the following again
Try adding another question and response
nano hello.py
GPIO AND CIRCUITS
WHAT IS GPIO
General­purpose input/output
generic pins on an integrated circuit
each pin can be configured as input or output
input/output values can be high (1) or low (0)
exposed as a 20x2 row of pins on the Model B+
GPIO ON THE PI
The GPIO pins are exposed on the 20x2 pin
header of the Model B+
 by Lucasbosch /   / cropped from originalImage CC BY­SA
GPIO PINOUT
Pinout on the Model B+
Note how some of the pins have a specific
function
 by Image www.raspberrypi­spy.co.uk
VOLTAGE SUPPLY RAILS
The Pi supplies 2 voltage levels: 5V and 3.3V
What voltage level to use depends on the
component
VOLTAGE SUPPLY RAILS
2 x 5­volt pins (red)
2 x 3.3­volt pins (orange)
8 x ground pins (grey)
 by Image www.raspberrypi­spy.co.uk
WARNING
The GPIO pins on the Pi are NOT 5V tolerant
Never connect a 5V pin directly to any other pin
as this can permanently damage the Pi
REMEMBER
Always ensure the Pi is turned off before making
any changes to your circuit
TURNING THE PI OFF
1. Run this command
2. Wait for the lights to stop flashing
3. Disconnect the USB power cable from the Pi
or
    switch off the power socket
sudo halt
GPIO PIN BREAKOUT
 by Lucasbosch /   / modified from originalImage CC BY­SA
DOWNLOAD
all the code we will be using from
We will transfer the code to the Pi using a
network share
http://bit.ly/1A3lWd4
NETWORK SHARE
log on to your Pi
from your laptop, open:
copy all the files across
move the files to thinkerers directory:
//10.1.1.10/pishare
mv ~/share/* ~/thinkerers
CONTROLLING AN LED WITH GPIO
Image created with Fritzing
CONTROLLING AN LED WITH GPIO
Get the script
And run it
sudo is required when using GPIO
~/thinkerers/05‐led‐gpio.py
sudo python 05‐led‐gpio.py
LED PATTERNS
Image created with Fritzing
LED PATTERNS
Get the script
And run it
~/thinkerers/05‐led‐patterns.py
sudo python 05‐led‐patterns.py
READING INPUT
Image created with Fritzing
READING A SWITCH
Get the script
And run it
Press the switch and watch the output on the
screen
To quit the program, press Ctrl+X
~/thinkerers/06‐switch‐input.py
sudo python 06‐switch‐input.py
READING A SWITCH
TO CONTROL LED PATTERN
Get the script
And run it
Press the switch and watch the LED patterns
change
~/thinkerers/06‐switch‐led.py
sudo python 06‐switch‐led.py
SENSORY MADNESS
(INPUTS)
READING LIGHT
Image created with Fritzing
READING LIGHT
Get the script
And run it
Move your hand over the LDR and watch the
reading change
To quit the program, press Ctrl+X
~/thinkerers/07‐reading‐light.py
sudo python 07‐reading‐light.py
READING TEMPERATURE
Image created with Fritzing
SOME MODULES NEED TO BE ENABLED
Run this
Note: this isn't permanent
sudo modprobe w1‐gpio
sudo modprobe w1‐therm     
     
READING TEMPERATURE
Get the script
And run it
Touch the temperature sensor and watch the
reading change
To quit the program, press Ctrl+X
~/thinkerers/08‐reading‐temp.py
sudo python 08‐reading‐temp.py
? MAGIC RULER ?
SONAR SENSOR
Get the script
Hold the sensor steady and point it at a nearby
flat surface
Then execute the script
~/thinkerers/08‐sonar‐sensor.py
sudo python 08‐sonar‐sensor.py
MOTOR-ING
(OUTPUTS)
Image created with Fritzing
CONTROLLING A DC MOTOR
Script to use:
And run it
~/thinkerers/09‐dc‐motor.py
sudo python 09‐dc‐motor.py
CAUTION
Take care removing the L293D
Slowly wedge it out by gripping the sides
Try not to bend the sharp pins
CONTROLLING A SERVO MOTOR
The Pi isn't actually good for servo control
Only one PWM pin ­ GPIO18
Linux OS interrupts the pulse generated
Both software and hardware solutions available
Image created with Fritzing
CONTROLLING A SERVO MOTOR
Script to use:
Execute the script
Enter angle between 0 and 180 degrees
~/thinkerers/09‐servo‐motor.py
sudo python 09‐servo‐motor.py
AUTOMATION
Input + Output = AUTOMATION
Try to combine what you just learnt
Can you control the DC motor based on light?
Example: bright = move forwards
    dim = move backwards
CONTROLLING A MOTOR
BASED ON LIGHT
Get the script
And run it
Enter a light level around 7
Slowly cover / uncover the LDR and watch the
motor move
~/thinkerers/10‐light‐dc‐motor.py
sudo python 10‐light‐dc‐motor.py
REMOTE MONITORING AND CONTROL
RUN A SIMPLE FILE SERVER
Create a directory
Change to that directory
Create a test file, enter some text, and save it
Run this
mkdir ~/website
cd ~/website
nano test.txt
sudo python ‐m SimpleHTTPServer 80
RUN A SIMPLE FILE SERVER
Enter your Pi's IP address into your browser's
address bar:
Can you see the test file you created?
http://10.1.1.XXX/
BASIC WEB SERVER
Get the script
And run it
In your browser, go to
~/thinkerers/11‐basic‐server.py
sudo python 11‐basic‐server.py
http://10.1.1.XXX/any‐text‐you‐like
WEB SERVER + SENSOR
Load temperature sensor modules
Check if module detected the sensor
A file with the name "28xxxxxxxx" should exist
sudo modprobe w1‐gpio
sudo modprobe w1‐therm     
     
cd /sys/bus/w1/devices
Image created with Fritzing
Get the script
And run it
Access your Pi's IP address in your browser
~/thinkerers/11‐sensor‐server.py
sudo python 11‐sensor‐server.py
AFTER THE WORKSHOP
CHANGING THE PI'S IP ADDRESS
Edit the configuration file
Modify these lines to match your local network
For example:
sudo nano /etc/network/interfaces
address 10.1.1.XXX
gateway 10.1.1.1
          
address 192.168.0.XXX
gateway 192.168.0.1
          
CHANGING THE WIRELESS NETWORK
Edit the configuration file
Modify the ssid and psk values to match your
local network
For example:
sudo nano /etc/wpa_supplicant/wpa_supplicant.conf
ssid="MyWirelessSSID"
psk="MySecretPassword"
          
RECOMMENDED RESOURCES
TOO MANY TO CHOOSE!
THE END
THANKS FOR COMING!
MIND DOING A SHORT SURVEY?
This work by Adrian Lai is licensed under a
Python code samples provided are free of known copyright restrictions
The Raspberry Pi and the Raspberry Pi Logo
are trademarks of the Raspberry Pi Foundation
All other registered trademarks are property of their respective owners
Creative Commons Attribution­ShareAlike 4.0 International License

Mais conteúdo relacionado

Mais procurados

Presentation raspberry pi
Presentation   raspberry piPresentation   raspberry pi
Presentation raspberry piMarco Casini
 
Simple Presentation On Raspberry pi
Simple Presentation On Raspberry piSimple Presentation On Raspberry pi
Simple Presentation On Raspberry piSakkar Chowdhury
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry piHet Shah
 
Raspberry Pi Introduction
Raspberry Pi IntroductionRaspberry Pi Introduction
Raspberry Pi IntroductionMichal Sedlak
 
Raspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture classRaspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture classMichael Gordon
 
Presentation on Raspberry pi
Presentation on Raspberry piPresentation on Raspberry pi
Presentation on Raspberry piOpenDev
 
Raspberry Pi Presentation
Raspberry Pi PresentationRaspberry Pi Presentation
Raspberry Pi PresentationGeekizer
 
Raspberry-PI introduction
Raspberry-PI introductionRaspberry-PI introduction
Raspberry-PI introductionBasavaraj Sagar
 
Raspberry pi and its some uses
Raspberry pi and its some usesRaspberry pi and its some uses
Raspberry pi and its some usesFahim Hossain
 
Raspberry Pi Training in Jalandhar
Raspberry Pi Training in JalandharRaspberry Pi Training in Jalandhar
Raspberry Pi Training in JalandharE2MATRIX
 
An Introduction to Raspberry Pi
An Introduction to Raspberry PiAn Introduction to Raspberry Pi
An Introduction to Raspberry PiEric Andresen
 
Raspberry-history, timeline, preparing it for use
Raspberry-history, timeline, preparing it for useRaspberry-history, timeline, preparing it for use
Raspberry-history, timeline, preparing it for useSarwan Singh
 
Presentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCPresentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCshssn7
 

Mais procurados (19)

Presentation raspberry pi
Presentation   raspberry piPresentation   raspberry pi
Presentation raspberry pi
 
Raspberry pi
Raspberry pi Raspberry pi
Raspberry pi
 
Simple Presentation On Raspberry pi
Simple Presentation On Raspberry piSimple Presentation On Raspberry pi
Simple Presentation On Raspberry pi
 
Rasberry pi
 Rasberry pi Rasberry pi
Rasberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
Raspberry Pi Introduction
Raspberry Pi IntroductionRaspberry Pi Introduction
Raspberry Pi Introduction
 
Raspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture classRaspberry Pi presentation for Computer Architecture class
Raspberry Pi presentation for Computer Architecture class
 
Presentation on Raspberry pi
Presentation on Raspberry piPresentation on Raspberry pi
Presentation on Raspberry pi
 
Raspberry Pi Presentation
Raspberry Pi PresentationRaspberry Pi Presentation
Raspberry Pi Presentation
 
Raspberry-PI introduction
Raspberry-PI introductionRaspberry-PI introduction
Raspberry-PI introduction
 
Raspberry pi and its some uses
Raspberry pi and its some usesRaspberry pi and its some uses
Raspberry pi and its some uses
 
Raspberry Pi Training in Jalandhar
Raspberry Pi Training in JalandharRaspberry Pi Training in Jalandhar
Raspberry Pi Training in Jalandhar
 
An Introduction to Raspberry Pi
An Introduction to Raspberry PiAn Introduction to Raspberry Pi
An Introduction to Raspberry Pi
 
Raspberry-history, timeline, preparing it for use
Raspberry-history, timeline, preparing it for useRaspberry-history, timeline, preparing it for use
Raspberry-history, timeline, preparing it for use
 
Raspberry Pi
 Raspberry Pi  Raspberry Pi
Raspberry Pi
 
Rasberry Pi
Rasberry PiRasberry Pi
Rasberry Pi
 
Raspberrypi
RaspberrypiRaspberrypi
Raspberrypi
 
Presentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUCPresentation on Raspberry Pi by Sazzad H. IIUC
Presentation on Raspberry Pi by Sazzad H. IIUC
 

Semelhante a ThinkerersA01

Introduction to Arduino & Raspberry Pi
Introduction to Arduino & Raspberry PiIntroduction to Arduino & Raspberry Pi
Introduction to Arduino & Raspberry PiAhmad Hafeezi
 
rpiz-160630055740000393883839383883838383838
rpiz-160630055740000393883839383883838383838rpiz-160630055740000393883839383883838383838
rpiz-160630055740000393883839383883838383838kabileshcm55
 
Raspberry Pi Zero
Raspberry Pi ZeroRaspberry Pi Zero
Raspberry Pi ZeroBaoshi Zhu
 
Raspberry pi intro.
Raspberry pi intro.Raspberry pi intro.
Raspberry pi intro.Saiko Saiko
 
RaspberryPi.pptx
RaspberryPi.pptxRaspberryPi.pptx
RaspberryPi.pptxPheo25
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry piHusainBhaldar21
 
Raspberry pi technology
Raspberry pi technologyRaspberry pi technology
Raspberry pi technologyZeeshan Aslam
 
introduction to Raspberry pi
introduction to Raspberry piintroduction to Raspberry pi
introduction to Raspberry piluckyanks1992
 
Raspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionRaspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionVatsal N Shah
 
Artificial Intelligence Neural Processing Unit Hikey970
Artificial Intelligence Neural Processing Unit Hikey970Artificial Intelligence Neural Processing Unit Hikey970
Artificial Intelligence Neural Processing Unit Hikey970KnowledgeMavens
 

Semelhante a ThinkerersA01 (20)

RASPBERRY Pi.pptx
RASPBERRY Pi.pptxRASPBERRY Pi.pptx
RASPBERRY Pi.pptx
 
Introduction to Arduino & Raspberry Pi
Introduction to Arduino & Raspberry PiIntroduction to Arduino & Raspberry Pi
Introduction to Arduino & Raspberry Pi
 
Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 
Raaaaassspberry pi
Raaaaassspberry piRaaaaassspberry pi
Raaaaassspberry pi
 
Raspberry pi
Raspberry piRaspberry pi
Raspberry pi
 
RASPBERRY PI
RASPBERRY PIRASPBERRY PI
RASPBERRY PI
 
rpiz-160630055740000393883839383883838383838
rpiz-160630055740000393883839383883838383838rpiz-160630055740000393883839383883838383838
rpiz-160630055740000393883839383883838383838
 
Raspberry Pi Zero
Raspberry Pi ZeroRaspberry Pi Zero
Raspberry Pi Zero
 
Raspberry pi intro.
Raspberry pi intro.Raspberry pi intro.
Raspberry pi intro.
 
Lecture 8
Lecture 8Lecture 8
Lecture 8
 
RaspberryPi.pptx
RaspberryPi.pptxRaspberryPi.pptx
RaspberryPi.pptx
 
Raspberry pi 2018
Raspberry pi 2018Raspberry pi 2018
Raspberry pi 2018
 
SEMINOR.pptx
 SEMINOR.pptx SEMINOR.pptx
SEMINOR.pptx
 
My presentation raspberry pi
My presentation raspberry piMy presentation raspberry pi
My presentation raspberry pi
 
RaspberryPi.pptx
RaspberryPi.pptxRaspberryPi.pptx
RaspberryPi.pptx
 
Raspberry pi technology
Raspberry pi technologyRaspberry pi technology
Raspberry pi technology
 
introduction to Raspberry pi
introduction to Raspberry piintroduction to Raspberry pi
introduction to Raspberry pi
 
Raspbeery Pi : An Introduction
Raspbeery Pi : An IntroductionRaspbeery Pi : An Introduction
Raspbeery Pi : An Introduction
 
Artificial Intelligence Neural Processing Unit Hikey970
Artificial Intelligence Neural Processing Unit Hikey970Artificial Intelligence Neural Processing Unit Hikey970
Artificial Intelligence Neural Processing Unit Hikey970
 
Raspberry Pi
Raspberry PiRaspberry Pi
Raspberry Pi
 

Último

How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxCeline George
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jisc
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Pooja Bhuva
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17Celine George
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxmarlenawright1
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxDr. Sarita Anand
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxJisc
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17Celine George
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...pradhanghanshyam7136
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Pooja Bhuva
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxDr. Ravikiran H M Gowda
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - Englishneillewis46
 

Último (20)

How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 

ThinkerersA01