MES MODULE 5 Programming Using Arduino
MES MODULE 5 Programming Using Arduino
(22AML135)
Architecture AVR
Operating Voltage 5V
SRAM 2 KB
EEPROM 1 KB
Architecture AVR
Operating Voltage 5V
SRAM 2 KB
EEPROM 1 KB
Digital output
Digital input and output of Arduino
By default, all Arduino pins are set to inputs. If you want to make
a pin an output, you need to first tell the Arduino how the pin
should be configured.
Digital Input
pushbutton and a pulldown resistor
connected to a digital input pin.
Digital input and output of Arduino
const int LED=9; //The LED is connected to pin 9
const int BUTTON=2; //The Button is connected to pin 2
void setup()
{
pinMode (LED, OUTPUT); //Set the LED pin as an output
pinMode (BUTTON, INPUT); //Set button as input (not required)
}
void loop()
{
if (digitalRead(BUTTON) == LOW)
{
digitalWrite(LED, LOW);
}
else
{
digitalWrite(LED, HIGH);
}
}
Analog input and output of Arduino
Analog and
Digital signals
Converting Analog signal to Digital signal
Atmega328p internal block diagram
Reading Analog Sensors with the
Arduino:analogRead()
Reading a Potentiometer
Reading Analog Sensors with the
Arduino:analogRead()
//Potentiometer Reading Program
const int POT=0; //Pot on analog pin 0
int val = 0; //variable to hold the analog reading from the POT
void setup()
{ Serial Monitor output
Serial.begin(9600);
}
void loop()
{
val = analogRead(POT);
Serial.println(val);
delay(500);
}
Using Analog Sensors
Although potentiometers generate an analog voltage value on a pin, they aren’t really
sensors in the traditional sense. They “sense” your turning of the dial, but that gets boring
pretty quickly. The good news is that all kinds of sensors generate analog output values
corresponding to “real-world” action.
Temperature circuit
Working with Analog Sensors to Sense Temperature
//Temperature Alert!
const int BLED=9; //Blue LED on pin 9
const int GLED=10; //Green LED on pin 10
const int RLED=11; //Red LED on pin 11
const int TEMP=0; //Temp Sensor is on pin A0
const int LOWER_BOUND=139; //Lower Threshold
const int UPPER_BOUND=147; //Upper Threshold
int val = 0; //Variable to hold analog reading
void setup()
{
pinMode (BLED, OUTPUT); //Set Blue LED as Output
pinMode (GLED, OUTPUT); //Set Green LED as Output
pinMode (RLED, OUTPUT); //Set Red LED as Output
}
Working with Analog Sensors to Sense Temperature
void loop()
{ else
val = analogRead(TEMP); {
if (val < LOWER_BOUND) digitalWrite(RLED, LOW);
{ digitalWrite(GLED, HIGH);
digitalWrite(RLED, LOW); digitalWrite(BLED, LOW);
digitalWrite(GLED, LOW); }
digitalWrite(BLED, HIGH); }
}
else if (val > UPPER_BOUND)
{
digitalWrite(RLED, HIGH);
digitalWrite(GLED, LOW);
digitalWrite(BLED, LOW);
}
Working with Analog Sensors to Sense Temperature
Arduino serial communication interface-I2C Bus
I2C is unique in that multiple devices all share the same communication lines: a clock signal (SCL) and a bidirectional
data line used for sending information back and forth between the master and the slaves (SDA).
I2C Hardware Design
Communication Scheme and ID Numbers
The I2C bus allows multiple slave devices to share communication lines with a
single master device. In this chapter, the Arduino acts as the master device.
The bus master is responsible for initiating all communications.
The basic steps for controlling any I2C device are as follows:
1. Set the SS pin low for the device you want to communicate with.
2. Toggle the clock line up and down at a speed less than or equal to the
transmission speed supported by the slave device.
3. For each clock cycle, send 1 bit on the MOSI line, and receive 1 bit on the
MISO line.
4. Continue until transmitting or receiving is complete, and stop toggling
the clock line.
5. Return the SS pin to high state.
Module-5 (Lab Programs-Refer Lab Manual)