arduino details

15
ARDUINO HIGHBOT

Transcript of arduino details

ARDUINO HIGHBOT

KNOW YOUR ARDUINO

INSTALLING THE IDE

CONNECTING ARDUINO TO YOUR PC

PRECAUTIONS!

Check twice for correct voltage rating for all peripherals and Arduino kit before making connections.

Make ground connections properly for all peripherals.

Check your code, pin configurations and pin mode before connecting.

Cut the power of Bluetooth module when burning code into Arduino.

Cut the external battery power when burning the code.

HELLO BLINK

INTERFACE A BUTTON

IF – ELSE #AKA-THE ARTIFICIAL INTELLIGENCE

ANALOG OUTPUT

Analog output is enabled by Digital to Analog

Converters inside microcontroller.

It maps 0 – 5 into digital value of 0 -255.

ANALOG READ

Analog read is enabled by analog to digital

Converters (ADC) inside microcontroller.

It maps 0 - 5v into digital value of 0 – 1023.

FOR LOOP

ARRAY

SWITCH CASE

SERIAL COMMUNICATION

Baud rate sets the rate of communication.

Serial.available() checks whether serial comm. is

Established or not.

Serial.println(“hello world”);

Simply prints the message.

THANK YOU