SlideShare a Scribd company logo
A
Workshop Syllabus
Refer Workshop syllabus doc
•
•
•
•
•
•
•
•
Arduino and Robotics
•
•
•
•
Arduino and Robotics
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
Arduino and Robotics
Arduino and Robotics
•
•
•
•
Arduino and Robotics
Arduino and Robotics
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
Arduino and Robotics
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
Arduino and Robotics
Arduino and Robotics
Let’s touch the INFINITY!!!
• Basics – Arduino language
•
•
•
•
•
•
•
•
void setup() {
}
void loop() {
}
pinMode( );
•
•
•
• void setup()
•
•
void setup
pinMode
digitalWrite( );
•
•
•
•
•
void loop
digitalWrite
digitalWrite
Arduino and Robotics
Program Code :
// LED connected to Pin 13 (Common)
int led = 13;
// setup routine runs once when you press reset:
void setup() {
pinMode(led, OUTPUT); //initialize of digital pin for output.
}
void loop() { // loop routine (infinite loop)
digitalWrite(led, HIGH); // turn on LED
delay(1000); // wait for a 1000ms
digitalWrite(led, LOW); // turn the off LED
delay(1000); // wait for a second
}
digitalRead( );
•
•
•
• void loop
digitalRead(switch);//read the input pin
Arduino and Robotics
analogRead( );
•
•
•
•
•
;
Void setup() {}
void loop
=analogRead(A0);//read the input pin
Arduino and Robotics
•
•
•
•
Pulse Width Modulation ?
•
•
• ↑ ↑
•
analogWrite( );
•
•
•
•
•
void loop
analogWrite
Arduino and Robotics
•
•
#include <LiquidCrystal.h>
// initialize the library with the
numbers of the interface pins
LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
void setup() {
// set up the LCD's number of
columns and rows:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print("hello, world!");
}
void loop() {
// set the cursor to column 0, line
1
// (note: line 1 is the second row,
since counting begins with 0):
lcd.setCursor(0, 1);
// print the number of seconds since
reset:
lcd.print(millis()/1000);
}
Arduino and Robotics
Arduino and Robotics
•
•
•
•
Arduino and Robotics
// defines pins numbers
const int trigPin = 9;
const int echoPin = 10;
// defines variables
long duration;
int distance;
void setup() {
pinMode(trigPin, OUTPUT); // Sets the trigPin as an Output
pinMode(echoPin, INPUT); // Sets the echoPin as an Input
Serial.begin(9600); // Starts the serial communication
}
void loop() {
// Clears the trigPin
digitalWrite(trigPin, LOW);
delayMicroseconds(2);
// Sets the trigPin on HIGH state for 10 micro seconds
digitalWrite(trigPin, HIGH);
delayMicroseconds(10);
digitalWrite(trigPin, LOW);
// Reads the echoPin, returns the sound wave travel time in microseconds
duration = pulseIn(echoPin, HIGH);
// Calculating the distance
distance= duration*0.034/2;
// Prints the distance on the Serial Monitor
Serial.print("Distance: ");
Serial.println(distance);
}
Arduino and Robotics
Arduino and Robotics
void setup() {
Serial.begin
}
void loop() {}
Serial.begin
void setup(){
Serial.begin(9600);
}
{void loop()
}
Serial.print
Serial.write
void setup(){
Serial.begin(9600); }
void loop(){
Serial.write(45);
int = Serial.write
}
Serial.read
Serial.available
int incomingByte = 0;
void setup() {
Serial.begin(9600);}
void loop() {
if (Serial.available() > 0) {}
Serial.end
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Robotics
•
•
•
•
•
•
Act
Sense
Think
Speech, Vision
Acceleration,
Temperature
Position ,Distance
Touch, Force
Magnetic field ,Light
Sound ,Position Sense
Task planning
Plan
Classification
Learn
Process data
Path planning
Motion planning
Output information
Move, Speech to
Text, Wheels,
Legs,Arms,Tracks
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
•
Arduino and Robotics
•
•
•
•
•
•
Arduino and Robotics
•
•
Arduino and Robotics
•
•
•
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Arduino and Robotics
Thank You
•
•
•
•
•
•
•
•
•
•
Ad

More Related Content

What's hot (12)

Scoala de vara_idg_introducere_in_robotica
Scoala de vara_idg_introducere_in_roboticaScoala de vara_idg_introducere_in_robotica
Scoala de vara_idg_introducere_in_robotica
ScoalaVara
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Irfan Qadoos
 
Aviation and Erlang
Aviation and ErlangAviation and Erlang
Aviation and Erlang
Thomas Karsten
 
coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino
Nanda Fauzi P
 
Pwm wave
Pwm wave Pwm wave
Pwm wave
Swapnil2515
 
REPORT
REPORTREPORT
REPORT
Taimoor Tahir
 
Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)
Abdur Rehman
 
Fpga creating counter with external clock
Fpga   creating counter with external clockFpga   creating counter with external clock
Fpga creating counter with external clock
Politeknik Elektronika Negeri Surabaya
 
Atmega Mini project Board
Atmega Mini project BoardAtmega Mini project Board
Atmega Mini project Board
Raghav Shetty
 
44CON 2013 - Controlling a PC using Arduino
44CON 2013 - Controlling a PC using Arduino44CON 2013 - Controlling a PC using Arduino
44CON 2013 - Controlling a PC using Arduino
Michael Boman
 
Direct analog
Direct analogDirect analog
Direct analog
srikanthsailu
 
Lampiran 1.programdocx
Lampiran 1.programdocxLampiran 1.programdocx
Lampiran 1.programdocx
Lugik kristiyanto
 
Scoala de vara_idg_introducere_in_robotica
Scoala de vara_idg_introducere_in_roboticaScoala de vara_idg_introducere_in_robotica
Scoala de vara_idg_introducere_in_robotica
ScoalaVara
 
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Temperature Sensor with LED matrix Display BY ►iRFAN QADOOS◄ 9
Irfan Qadoos
 
coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino coding and wiring dht11 and ultrasonic hcsr04 arduino
coding and wiring dht11 and ultrasonic hcsr04 arduino
Nanda Fauzi P
 
Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)Constructing circuits for boolean expressions(gate)
Constructing circuits for boolean expressions(gate)
Abdur Rehman
 
Atmega Mini project Board
Atmega Mini project BoardAtmega Mini project Board
Atmega Mini project Board
Raghav Shetty
 
44CON 2013 - Controlling a PC using Arduino
44CON 2013 - Controlling a PC using Arduino44CON 2013 - Controlling a PC using Arduino
44CON 2013 - Controlling a PC using Arduino
Michael Boman
 

Viewers also liked (20)

3D Internet
3D Internet3D Internet
3D Internet
Shivam Bharti
 
Building VR Applications For Google Cardboard
Building VR Applications For Google CardboardBuilding VR Applications For Google Cardboard
Building VR Applications For Google Cardboard
Mark Billinghurst
 
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωήΗ ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
varalig
 
Globalization
GlobalizationGlobalization
Globalization
Mukund Ingle
 
Enfermedades más comunes en los gatos
Enfermedades más comunes en los gatosEnfermedades más comunes en los gatos
Enfermedades más comunes en los gatos
Kevin Acevedo Durango
 
Phyllis Schlafly Report 1970 June
Phyllis Schlafly Report 1970 JunePhyllis Schlafly Report 1970 June
Phyllis Schlafly Report 1970 June
PhyllisSchlaflyEagles
 
I chronicles 8 commentaryA
I chronicles 8 commentaryAI chronicles 8 commentaryA
I chronicles 8 commentaryA
GLENN PEASE
 
ΕΦΚΑ, Εγκ.14/17
ΕΦΚΑ, Εγκ.14/17ΕΦΚΑ, Εγκ.14/17
ΕΦΚΑ, Εγκ.14/17
Panayotis Sofianopoulos
 
Relación problemas leyes de Mendel
Relación problemas leyes de MendelRelación problemas leyes de Mendel
Relación problemas leyes de Mendel
salowil
 
Instrumentos y procesos del coaching
Instrumentos y procesos del coachingInstrumentos y procesos del coaching
Instrumentos y procesos del coaching
Gustavo Moreno
 
UKOUG Journey To The Cloud - March 2017
UKOUG Journey To The Cloud - March 2017UKOUG Journey To The Cloud - March 2017
UKOUG Journey To The Cloud - March 2017
Phil Wilkins
 
Money & Credit
Money & CreditMoney & Credit
Money & Credit
Mukund Ingle
 
Serious Play Conference: Edtech Evangelist: Converting the Unbelievers
Serious Play Conference: Edtech Evangelist: Converting the UnbelieversSerious Play Conference: Edtech Evangelist: Converting the Unbelievers
Serious Play Conference: Edtech Evangelist: Converting the Unbelievers
David W. Deeds
 
Digital Tools for Language Development
Digital Tools for Language DevelopmentDigital Tools for Language Development
Digital Tools for Language Development
Nik Peachey
 
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Matleena Laakso
 
Cultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Cultura escrita y escuela rural aportes para leer y escribir en el plurigradoCultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Cultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Gabriela Irureta
 
Revista Municipal Torremejia 08
Revista Municipal Torremejia 08Revista Municipal Torremejia 08
Revista Municipal Torremejia 08
AyuntamientoTorremejia
 
Proyecto educativo diseño gráfico
Proyecto educativo diseño gráficoProyecto educativo diseño gráfico
Proyecto educativo diseño gráfico
Elver Chaparro Cardozo
 
Bio it 2014-published
Bio it 2014-publishedBio it 2014-published
Bio it 2014-published
Toby Bloom
 
Klimastrategi
KlimastrategiKlimastrategi
Klimastrategi
Økologisk Landsforening
 
Building VR Applications For Google Cardboard
Building VR Applications For Google CardboardBuilding VR Applications For Google Cardboard
Building VR Applications For Google Cardboard
Mark Billinghurst
 
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωήΗ ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
Η ηγεμονία της Αθήνας (479 431 π. Χ)- η καθημερινή ζωή
varalig
 
Enfermedades más comunes en los gatos
Enfermedades más comunes en los gatosEnfermedades más comunes en los gatos
Enfermedades más comunes en los gatos
Kevin Acevedo Durango
 
I chronicles 8 commentaryA
I chronicles 8 commentaryAI chronicles 8 commentaryA
I chronicles 8 commentaryA
GLENN PEASE
 
Relación problemas leyes de Mendel
Relación problemas leyes de MendelRelación problemas leyes de Mendel
Relación problemas leyes de Mendel
salowil
 
Instrumentos y procesos del coaching
Instrumentos y procesos del coachingInstrumentos y procesos del coaching
Instrumentos y procesos del coaching
Gustavo Moreno
 
UKOUG Journey To The Cloud - March 2017
UKOUG Journey To The Cloud - March 2017UKOUG Journey To The Cloud - March 2017
UKOUG Journey To The Cloud - March 2017
Phil Wilkins
 
Serious Play Conference: Edtech Evangelist: Converting the Unbelievers
Serious Play Conference: Edtech Evangelist: Converting the UnbelieversSerious Play Conference: Edtech Evangelist: Converting the Unbelievers
Serious Play Conference: Edtech Evangelist: Converting the Unbelievers
David W. Deeds
 
Digital Tools for Language Development
Digital Tools for Language DevelopmentDigital Tools for Language Development
Digital Tools for Language Development
Nik Peachey
 
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Lisätty todellisuus opetuksessa (KATSO KUVAUKSESTA UUDEN VERSION LINKKI)
Matleena Laakso
 
Cultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Cultura escrita y escuela rural aportes para leer y escribir en el plurigradoCultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Cultura escrita y escuela rural aportes para leer y escribir en el plurigrado
Gabriela Irureta
 
Bio it 2014-published
Bio it 2014-publishedBio it 2014-published
Bio it 2014-published
Toby Bloom
 
Ad

Similar to Arduino and Robotics (20)

Arduino Programming
Arduino ProgrammingArduino Programming
Arduino Programming
Dr Karthikeyan Periasamy
 
IOT excercise ESP32 Simulation projects.docx
IOT excercise ESP32 Simulation projects.docxIOT excercise ESP32 Simulation projects.docx
IOT excercise ESP32 Simulation projects.docx
ashvan200
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
Amarjeetsingh Thakur
 
Introduction to Arduino
Introduction to ArduinoIntroduction to Arduino
Introduction to Arduino
Amarjeetsingh Thakur
 
Powerful Electronics with Arduino
Powerful Electronics with ArduinoPowerful Electronics with Arduino
Powerful Electronics with Arduino
Abdallah Hodieb
 
Introduction to Arduino Microcontroller
Introduction to Arduino MicrocontrollerIntroduction to Arduino Microcontroller
Introduction to Arduino Microcontroller
Mujahid Hussain
 
Computer networks unit III CHAPTER of frameworks
Computer networks unit III CHAPTER of frameworksComputer networks unit III CHAPTER of frameworks
Computer networks unit III CHAPTER of frameworks
manforlover7
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
Jeni Shah
 
Sensors and Actuators in Arduino, Introduction
Sensors and Actuators in Arduino, IntroductionSensors and Actuators in Arduino, Introduction
Sensors and Actuators in Arduino, Introduction
BibekPokhrel13
 
Multi Sensory Communication 2/2
Multi Sensory Communication 2/2Multi Sensory Communication 2/2
Multi Sensory Communication 2/2
Satoru Tokuhisa
 
Mims effect
Mims effectMims effect
Mims effect
arnaullb
 
Arduino . .
Arduino             .                             .Arduino             .                             .
Arduino . .
dryazhinians
 
Arduino intro.pptx
Arduino intro.pptxArduino intro.pptx
Arduino intro.pptx
SanthanaMari11
 
Musical Machines and Flapping Phones
Musical Machines and Flapping PhonesMusical Machines and Flapping Phones
Musical Machines and Flapping Phones
Neil Mendoza
 
Arduino-2 (1).ppt
Arduino-2 (1).pptArduino-2 (1).ppt
Arduino-2 (1).ppt
HebaEng
 
Arduino based applications part 1
Arduino based applications part 1Arduino based applications part 1
Arduino based applications part 1
Jawaher Abdulwahab Fadhil
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
Jayanthi Kannan MK
 
Arduin0.ppt
Arduin0.pptArduin0.ppt
Arduin0.ppt
GopalRathinam1
 
01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt
pindi2197
 
Magnetic door lock using arduino
Magnetic door lock using arduinoMagnetic door lock using arduino
Magnetic door lock using arduino
Sravanthi Sinha
 
IOT excercise ESP32 Simulation projects.docx
IOT excercise ESP32 Simulation projects.docxIOT excercise ESP32 Simulation projects.docx
IOT excercise ESP32 Simulation projects.docx
ashvan200
 
Powerful Electronics with Arduino
Powerful Electronics with ArduinoPowerful Electronics with Arduino
Powerful Electronics with Arduino
Abdallah Hodieb
 
Introduction to Arduino Microcontroller
Introduction to Arduino MicrocontrollerIntroduction to Arduino Microcontroller
Introduction to Arduino Microcontroller
Mujahid Hussain
 
Computer networks unit III CHAPTER of frameworks
Computer networks unit III CHAPTER of frameworksComputer networks unit III CHAPTER of frameworks
Computer networks unit III CHAPTER of frameworks
manforlover7
 
Arduino cic3
Arduino cic3Arduino cic3
Arduino cic3
Jeni Shah
 
Sensors and Actuators in Arduino, Introduction
Sensors and Actuators in Arduino, IntroductionSensors and Actuators in Arduino, Introduction
Sensors and Actuators in Arduino, Introduction
BibekPokhrel13
 
Multi Sensory Communication 2/2
Multi Sensory Communication 2/2Multi Sensory Communication 2/2
Multi Sensory Communication 2/2
Satoru Tokuhisa
 
Mims effect
Mims effectMims effect
Mims effect
arnaullb
 
Musical Machines and Flapping Phones
Musical Machines and Flapping PhonesMusical Machines and Flapping Phones
Musical Machines and Flapping Phones
Neil Mendoza
 
Arduino-2 (1).ppt
Arduino-2 (1).pptArduino-2 (1).ppt
Arduino-2 (1).ppt
HebaEng
 
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf4 IOT 18ISDE712  MODULE 4 IoT Physical Devices and End Point-Aurdino  Uno.pdf
4 IOT 18ISDE712 MODULE 4 IoT Physical Devices and End Point-Aurdino Uno.pdf
Jayanthi Kannan MK
 
01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt01 Intro to the Arduino and it's basics.ppt
01 Intro to the Arduino and it's basics.ppt
pindi2197
 
Magnetic door lock using arduino
Magnetic door lock using arduinoMagnetic door lock using arduino
Magnetic door lock using arduino
Sravanthi Sinha
 
Ad

Recently uploaded (20)

Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation RateModeling the Influence of Environmental Factors on Concrete Evaporation Rate
Modeling the Influence of Environmental Factors on Concrete Evaporation Rate
Journal of Soft Computing in Civil Engineering
 
Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025
Antonin Danalet
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Nanometer Metal-Organic-Framework Literature Comparison
Nanometer Metal-Organic-Framework  Literature ComparisonNanometer Metal-Organic-Framework  Literature Comparison
Nanometer Metal-Organic-Framework Literature Comparison
Chris Harding
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjjseninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
AjijahamadKhaji
 
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Modelling of Concrete Compressive Strength Admixed with GGBFS Using Gene Expr...
Journal of Soft Computing in Civil Engineering
 
Agents chapter of Artificial intelligence
Agents chapter of Artificial intelligenceAgents chapter of Artificial intelligence
Agents chapter of Artificial intelligence
DebdeepMukherjee9
 
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
JRR Tolkien’s Lord of the Rings: Was It Influenced by Nordic Mythology, Homer...
Reflections on Morality, Philosophy, and History
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control Monthly May 2025
Water Industry Process Automation & Control
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
sss1.pptxsss1.pptxsss1.pptxsss1.pptxsss1.pptx
ajayrm685
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Generative AI & Large Language Models Agents
Generative AI & Large Language Models AgentsGenerative AI & Large Language Models Agents
Generative AI & Large Language Models Agents
aasgharbee22seecs
 
Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025
Antonin Danalet
 
Automatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and BeyondAutomatic Quality Assessment for Speech and Beyond
Automatic Quality Assessment for Speech and Beyond
NU_I_TODALAB
 
twin tower attack 2001 new york city
twin  tower  attack  2001 new  york citytwin  tower  attack  2001 new  york city
twin tower attack 2001 new york city
harishreemavs
 
DED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedungDED KOMINFO detail engginering design gedung
DED KOMINFO detail engginering design gedung
nabilarizqifadhilah1
 
Nanometer Metal-Organic-Framework Literature Comparison
Nanometer Metal-Organic-Framework  Literature ComparisonNanometer Metal-Organic-Framework  Literature Comparison
Nanometer Metal-Organic-Framework Literature Comparison
Chris Harding
 
Artificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptxArtificial intelligence and machine learning.pptx
Artificial intelligence and machine learning.pptx
rakshanatarajan005
 
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjjseninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
seninarppt.pptx1bhjiikjhggghjykoirgjuyhhhjj
AjijahamadKhaji
 
Agents chapter of Artificial intelligence
Agents chapter of Artificial intelligenceAgents chapter of Artificial intelligence
Agents chapter of Artificial intelligence
DebdeepMukherjee9
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdfML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
ML_Unit_VI_DEEP LEARNING_Introduction to ANN.pdf
rameshwarchintamani
 
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
01.คุณลักษณะเฉพาะของอุปกรณ์_pagenumber.pdf
PawachMetharattanara
 
Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 

Arduino and Robotics

  翻译: