What is programming? Make an algorithm to do something in a specific language programming. – Algorithm: a procedure or formula for solving a problem.

Slides:



Advertisements
Similar presentations
Sensing and Control.
Advertisements

Ohm’s Law.
Dr. Andreas Kunz © 10/2004 inspire icvr BASICS OF ELECTRONICS.
New Human Computer Interfaces Amnon Dekel HUJI – CSE, Spring 2007 Class 3 March
What is Electricity? Electricity is the flow of moving electrons. When the electrons flow it is called an electrical current.
Electric Circuits and Power Page 706. Ohm’s Law Resistance is equal to the voltage divided by the current. Resistance = Voltage Current Ohms ( ) = Volts.
Use Ohm’s Law to solve the following equations.
Electricity Foundations of Physics. Electricity The movement of charge from one place to another Requires energy to move the charge Also requires conductors.
Copyright © 2008 Pearson Education, Inc., publishing as Pearson Addison-Wesley Electricity Physics 102 Goderya Chapter(s): 22 and 23 Learning Outcomes:
Ohm’s Law The most important fundamental law in electronics is Ohm’s law, which relates voltage, current, and resistance. Georg Simon Ohm ( ) studied.
Current, Voltage, and Resistance in a circuit
Resistance in Electrical Systems
Electricity. whether two charges attract or repel depends on whether they have the same or opposite sign unit of measurement for charge is the coulomb.
Circuits & Electronics
Electrical Energy - Moving electrons in a path is electricity
4.3 Notes Resistance in Electrical Systems. Properties of Materials Conductors Have a large ability to conduct electric current They contain many free.
Electrical Current Mr. Fleming.
Arduino 101 Instructors: Ted Markson / Jim Sweeney.
4.2.3B Electrical Power What About Watts?. Power Law Moving electrons (current) requires ENERGY How much energy gets used depends on: Strength of push.
ELECTRICAL COMPONENTS and CIRCUITS Instrumental Analysis II CTEC 1345.
Review & BS2 Safety By Ilya Zarankin. What is Current? A flow of electrically charged particles Carried by small negatively-charged particles, called.
Electric Circuits. Potential Electric Potential is just like gravitational potential It depends on –The distance from the source –The amount of charge.
Electricity. Electric Current The net movement of electric charges in a single direction Electrons in a material (metal wire) are in constant motion in.
Electric Current. Electric Potential Electrons in a circuit have potential energy –The energy is related to the force exerted by an electric field –The.
describes the relationship between current, voltage, and resistance greater the voltage across a device with resistance, the greater the current through.
13.2 & Current Definition: Flow of electric charge How many electrons pass a given point each second Water Analogy: Rate at which water flows Units:
Ohm’s Law Calculating Current, Voltage, and Resistance.
1 Chapter 20 Review activity! Fun in B208!.  A. Unit of energy  B. Unit of charge  C. Unit of current  D. Unit of voltage. 2 What is a coulomb?
 Electrical circuit: a closed loop where charged particles flow  Electrical current: a flow of charged particles (e - )  Direct current (DC): a flow.
Electricity. whether two charges attract or repel depends on whether they have the same or opposite sign unit of measurement for charge is the coulomb.
Electrical Current and Circuits How Electricity Gets To Where It Is Going.
Amperes, Volts and Ohms. We use different units to measure different things: We use different units to measure different things: Time – minutes Time –
Ohm’s Law Notes JAN 7. Vocabulary current : how quickly the electrons are flowing through the circuit; units: amperes (A) voltage : the electric potential.
Bdps 2 Lecture 2. Circuits and Ohm's Law For resistive circuits.
CSE 341 Project : Ultrasonic Radar PRESENTED BY: NAME : AKIFA TASNEEM ID : SECTION: 02 1.
IAT 267 Introduction to Technological Systems 1 Week 2 Workshop Basics of Electronic Circuits.
Prototyping with Microcontrollers and Sensors. Overview Objective Background Information Problem Statement Materials Procedure Assignment Closing.
What is Arduino? It's an open source electronics prototyping platform: Open source: resources that can be used, redistributed or rewritten free of charge,
Having fun with code, using Arduino in a middle school CS classroom
Current Electricity.
ROBOTICS.
Michael Rahaim, PhD Candidate Multimedia Communications Lab
Scrolling LCD using Arduino.
Prototyping with Microcontrollers and Sensors
Recall that when two conducting objects at different potentials are connected by a conducting wire, charge flows from the object at a higher potential.
Get Your Project Started with Arduino
Arduino Development for Beginners
Electricity - Current.
Unit 3 – Fundamentals of Electronics Examination Specifications
Unit 3 – Fundamentals of Electronics Examination Specifications
ARDUINO     What is an Arduino? Features 14 Digital I/O pins 6 Analogue inputs 6 PWM pins USB serial 16MHz Clock speed 32KB Flash memory 2KB SRAM.
Electricity & Magnetism
Electric Current.
Welcome to Digital Electronics using the Arduino Board
Banyule Coding Club: Learn Arduino Richard Counsel Malcolm Macleod Watsonia Library - June 2018 Reference materials here ->
Basic Electrical Calculations
Electric Current.
Electrical Current & Circuits
Modified by Mr. Wanninkhof
Arduino Workshop University of Jordan.
Current and Resistance
CTY SAR FCPS Shawn Lupoli, Elliot Tan
Arduino Workshop University of Jordan.
Current Electricity Unlike static electricity, in current electricity there is a continuous flow of electrons along a path. This passage of electric current.
Ohm’s Law & Circuits Chapter 7.2 & 7.3.
Announcement Ohm’s law video is due at midnight Makeup lab today
Electric Current Chapter 34.
Introduction to Arduino
Arduino Board.
Arduino म्हणजे काय?.
Presentation transcript:

What is programming? Make an algorithm to do something in a specific language programming. – Algorithm: a procedure or formula for solving a problem. – Programming language: artificial language designed tocommunicate instructions to a machine. It also involves the process of designing, writing, testing, debugging, and maintaining the source code of a computer program.

What is Arduino? It's an open source electronics prototyping platform: – Open source: resources that can be used, redistributed or rewritten free of charge, often software or hardware. – Electronics: technology which makes use of the controlled motion of electrons through different media. – Prototyping: an original form that can serve as a basis or standard for other things. – Platform: hardware architecture with software framework on which other software can run.

The Arduino board is like a small computer that can be programmed as many times as needed. As a computer, it provides I/O interaction, through digital (inputand output) and analog input pins. – Digital: discrete and finit, described in two states: 1/0, ON/OFF. – Analog: continuous, can have infinite number of values. The sketch made with the Arduino IDE is loaded to the board and stored in the microcontroller.

Breakdown of a Arduino(Uno) board

What is Scratch? It's an open source and educational software focused mainly for children, designed by the Lifelong Kindergarten group at MIT, and implemented in Smalltalk (Squeak). The programming instructions are pieces that have to be stick to each other in an order to form blocks and make a coherent program, just like a puzzle.

What is S4A? Scratch for Arduino (S4A) is a modified version of Scratch ready for communication with Arduino boards. An Arduino sketch (S4AFirmware) has to be loaded to the board to work properly with S4A.

Pin mapping in S4A Digital read: digital pins 2 and 3. Digital write: digital pins 10, 11 and 13. Analog read: analog pins 0-5. Analog write: digital pins 5, 6 and 9. Servo control: – digital pins 4, 7 (continuous rotation). – 8 and 12 (standard).

Basic electronics: Ohm's Law Electricity if the flow of energy (electrons) through a conductive material. Voltage (V): is the measure of electrical potential, measured in Volts (V). Current (I): is the amount of flow through a conductive material, measured in Amperes or Amps (A). Resistance (R): is the material's opposition to the flow of electric current, measured in Ohms (Ω).

Quick comparison: Blink Comparison of a simple program that blinks a LED connected to pin 13 on Arduino and in S4A. We can appreciate the differences between the form and syntax of programming languages in both cases: