0% found this document useful (1 vote)
65 views

Arduino Programming

This document provides an overview of Arduino programming. It introduces Arduino and its applications in robotics. Key details include: - Arduino is an open-source electronics platform that allows users to create interactive electronic objects by programming microcontrollers. - The Arduino Uno is a microcontroller board based on the ATmega328P chip, with 14 digital input/output pins, 6 analog inputs, a USB connection, and a reset button. - Arduino uses a simple programming language and development environment to program the microcontroller, making it easy for beginners to get started with embedded systems and physical computing projects.
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
65 views

Arduino Programming

This document provides an overview of Arduino programming. It introduces Arduino and its applications in robotics. Key details include: - Arduino is an open-source electronics platform that allows users to create interactive electronic objects by programming microcontrollers. - The Arduino Uno is a microcontroller board based on the ATmega328P chip, with 14 digital input/output pins, 6 analog inputs, a USB connection, and a reset button. - Arduino uses a simple programming language and development environment to program the microcontroller, making it easy for beginners to get started with embedded systems and physical computing projects.
Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 19

ARDUINO

PROGRAMMING

B Y: E N G R . D E N N I S F.
V I R AY
BRIEF INTRODUCTION:

ENGR. DENNIS F. VIRAY


STEM-A TEACHER

A COMPUTER ENGINEER

SOFTWARE ENGINEER

WORK EXPERIENCES:

AMACC – 2010 TO 2012

UPANG – 2012 TO 2016

CDD – 2016 TO 2017 (FIRST SEMESTER)

LASIP NHS – 2017 TO 2020


REQUIREMENTS:
 WRITTEN ASSESSMENTS
 PERFORMANCE TASK
 FINAL PROJECT
MONDAY TUESDAY WEDNESD THURSDAY FRIDAY
AY
APRIL 5 APRIL 6 APRIL 7 APRIL 8 APRIL 9 (F2F)

APRIL 12 APRIL 13 APRIL 14 APRIL 15 APRIL 16 (F2F)


(PERFORMANCE
TASK)
APRIL 19 APRIL 20 APRIL 21 APRIL 22 APRIL 23 (F2F)

APRIL 26 APRIL 27 APRIL 28 APRIL 29 APRIL 30 (F2F)


(PERFORMANCE
TASK)
MAY 3 MAY 4 MAY 5 MAY 6 MAY 7 (F2F)

MAY 10 MAY 11 MAY 12 MAY 13 MAY 14 (F2F)


(PERFORMANCE
TASK)

FIRST QUARTER
MONDAY TUESDAY WEDNESD THURSDAY FRIDAY
AY
MAY 17 MAY 18 MAY 19 MAY 20 MAY 21 (F2F)
MAY 24 MAY 25 MAY 26 MAY 27 MAY 28 (F2F)
(PERFORMANCE
TASK)
MAY 31 JUNE 1 JUNE 2 JUNE 3 JUNE 4 (F2F)
JUNE 7 JUNE 8 JUNE 9 JUNE 10 JUNE 11 (F2F)
(PERFORMANCE
TASK)
JUNE 14 JUNE 15 JUNE 16 JUNE 17 JUNE 18 (F2F)
JUNE 21 JUNE 22 JUNE 23 JUNE 24 JUNE 25 (F2F)
(PERFORMANCE
TASK)
JUNE 28 JUNE 29 JUNE 30 JULY 1 JULY 2 (F2F)
JULY 5 JULY 6 JULY 7 JULY 8 JULY 9
(PRESENTATION
OF PROJECT)

SECOND QUARTER
LOGIC
1 : a proper or reasonable way of
thinking about something

2 : a science that deals with the rules


and processes used in sound thinking
and reasoning.
LOGICAL THINKING
Logical thinking is the act of analyzing a situation
and producing a sensible solution.

Like critical thinking, logical thinking requires the


use of reasoning skills to study a problem
objectively, which will allow you to make a rational
conclusion about how to proceed.
BINARY
The 0s and 1s in binary represent OFF
or ON, respectively.

In a transistor, an "0" represents no


flow of electricity, and "1" represents
electricity being allowed to flow. 

MACHINE LANGUAGE
PROGRAMMING
programming language, any of
various languages for expressing
a set of detailed instructions for
a computer. 
ROBOT(S)
Robot, any automatically operated machine that
replaces human effort, though it may not
resemble human beings in appearance or perform
functions in a humanlike manner.

By extension, robotics is the engineering


discipline dealing with the design, construction,
and operation of robots.
ARDUINO
Open-source electronic prototyping
platform enabling users to create
interactive electronic objects.
Take Note: Open-source software (OSS) is any computer software that's distributed with its source code
available for modification. That means it usually includes a license for programmers to change the
software in any way they choose: They can fix bugs, improve functions, or adapt the software to suit their
own needs.
ARDUINO
What is the Arduino Uno? 
Arduino Uno is a microcontroller board based on the ATmega328P (datasheet).It has
14 digital input/output pins (of which 6 can be used as PWM outputs), 6 analog inputs,
a 16 MHz quartz crystal, a USB connection, a power jack, an ICSP header and a reset
button. It contains everything needed to support the microcontroller; simply connect it
to a computer with a USB cable or power it with an AC-to-DC adapter or battery to get
started. You can tinker with your UNO without worrying too much about doing
something wrong.

The worst-case scenario is that you would have to replace the chip and start again :)
Arduino Uno Specification
•Microcontroller: ATmega328P 

•Operating Voltage: 5V 

•Input Voltage (recommended): 7-12V 

•Input Voltage (limit): 6-20V 

•Digital I/O Pins: 14 (of which 6 provide PWM output) 

•PWM Digital I/O Pins: 6 

•Analog Input Pins: 6 

•DC Current per I/O Pin: 20 mA 

•DC current for 3.3V Pin: 50 mA 

Take Note: Pulse width modulation (PWM), or pulse-duration modulation (PDM), is a method of reducing the
average power delivered by an electrical signal, by effectively chopping it up into discrete parts.
Arduino Uno Specification
•Flash Memory: 32 KB (ATmega328P) of which 0.5 KB used by bootloader

•SRAM: 2 KB (ATmega328P)

•EEPROM: 1 KB (ATmega328P)

•Clock Speed: 16 MHz

•LED_BUILTIN: 13

•Length: 68.6 mm 

•Width: 58.4 mm 

•Weight: 25 g 

Take Note: A bootloader is software that is responsible for booting a computer. When a computer is turned off,
its software‍—‌including operating systems, application code, and data‍—‌remains stored on non-volatile memory.
ARDUINO BOARD
Analog vs Digital
 An analog signal is one whose value continually
varies over time.

 A digital (or discrete) signal is one with a value at a


specified interval of time
INSTALLATION
Visit the link below and
watch the procedures
how to install Arduino software
in your PC.

https://www.youtube.com/watch?v=tAo7vSktP5E
END
THANK YOU!!!

You might also like