arduino notes OE
arduino notes OE
1-inexpensive
2-open source in hardware
3-don’t need to external programmer (Burner)
4-programming ease
5-open source in software
6-IDE Software operate on any operating system
disadvantages of ARDUINO
processing power is weaker than the microcontroller
The delay() function allows you to pause the execution of your Arduino program for a
specified period. For that purpose, the method requires you to supply it with a whole number
that specifies how many milliseconds the program should wait.
The serial monitor is the 'tether' between the computer and your Arduino - it lets you send and
receive text messages, handy for debugging and also controlling the Arduino from a
keyboard! For example, you will be able to send commands from your computer to turn on
LEDs.
A sensor is a device that measures physical input from its environment and converts it into
data that can be interpreted by either a human or a machine
The Arduino Integrated Development Environment - or Arduino Software (IDE) - contains a text
editor for writing code, a message area, a text console, a toolbar with buttons for common
functions and a series of menus. It connects to the Arduino hardware to upload programs and
communicate with them.
Reads the value from the specified analog pin. Arduino boards contain a multichannel, 10-bit
analog to digital converter. This means that it will map input voltages between 0 and the
operating voltage(5V or 3.3V) into integer values between 0 and 1023.