Vous êtes sur la page 1sur 6

Analog I/O

Input / Ouput analog pada breadboard arduino ada 6 pengalamatnya 0 5

analogRead(pin)
membaca nilai pin analog yang memiliki resolusi 10-bit. Fungsi ini hanya dapat bekerja pada analog pin
(0-5). Hasil dari pembacaan berupa nilai integer dengan range 0 sampai 1023.
Value = analogRead(pin);

// mengset value sama dengan nilai analog pin

analogWrite(pin, value)
mengirimkan nilai analog pada pin analog.
analogWrite(pin, value);

// menulis ke pin analog

analogWrite()
Description
Writes an analog value (PWM wave) to a pin. Can be used to light a
LED at varying brightnesses or drive a motor at various speeds.
After a call to analogWrite(), the pin will generate a steady square
wave of the specified duty cycle until the next call to analogWrite() (or
a call to digitalRead() or digitalWrite() on the same pin). The frequency
of the PWM signal on most pins is approximately 490 Hz. On the
Uno and similar boards, pins 5 and 6 have a frequency of
approximately 980 Hz. Pins 3 and 11 on the Leonardo also run at
980 Hz.
On most Arduino boards (those with
the ATmega168 or ATmega328), this function works on pins 3, 5, 6,
9, 10, and 11. On the Arduino Mega, it works on pins 2 - 13 and 44

- 46. Older Arduino boards with an ATmega8 only support


analogWrite() on pins 9, 10, and 11.
The Arduino Due supports analogWrite() on pins 2 through 13, plus
pins DAC0 and DAC1. Unlike the PWM pins, DAC0 andDAC1 are
Digital to Analog converters, and act as true analog outputs.
You do not need to call pinMode() to set the pin as an output before
calling analogWrite().
The analogWrite function has nothing to do with the analog pins or
the analogRead function.
Syntax
analogWrite(pin, value)
Parameters
pin: the pin to write to.
value: the duty cycle: between 0 (always off) and 255 (always on).
Returns
nothing
Notes and Known Issues
The PWM outputs generated on pins 5 and 6 will have higher-thanexpected duty cycles. This is because of interactions with the
millis() and delay() functions, which share the same internal timer
used to generate those PWM outputs. This will be noticed mostly on
low duty-cycle settings (e.g 0 - 10) and may result in a value of 0
not fully turning off the output on pins 5 and 6.

Example
Sets the output to the LED proportional to the value read from the
potentiometer.

int ledPin = 9;

// LED connected to digital pin 9

int analogPin = 3;

// potentiometer connected to analog pin 3

int val = 0;

// variable to store the read value

void setup()
{
pinMode(ledPin, OUTPUT);

// sets the pin as output

void loop()
{
val = analogRead(analogPin);

// read the input pin

analogWrite(ledPin, val / 4); // analogRead values go from 0


to 1023, analogWrite values from 0 to 255
}
[Get Code]

deskripsi
Menulis nilai analog (gelombang PWM) ke pin. Dapat digunakan untuk menyalakan LED di berbagai brightnesses
atau drive motor pada berbagai kecepatan. Setelah panggilan untuk analogWrite (), pin akan menghasilkan

gelombang persegi stabil siklus tertentu sampai panggilan berikutnya ke analogWrite () (atau panggilan untuk
digitalRead () atau digitalWrite () pada pin yang sama). Frekuensi sinyal PWM pada kebanyakan pin adalah sekitar
490 Hz. Pada Uno dan mirip papan, pin 5 dan 6 memiliki frekuensi sekitar 980 Hz. Pin 3 dan 11 pada Leonardo juga
dijalankan pada 980 Hz.
Pada kebanyakan papan Arduino (orang-orang dengan ATmega168 atau ATmega328), fungsi ini bekerja pada pin 3,
5, 6, 9, 10, dan 11. Pada Arduino Mega bekerja pada pin 2-13 dan 44 - 46. Lebih tua Arduino papan dengan
ATmega8 hanya mendukung analogWrite () pada pin 9, 10, dan 11.
Arduino Due mendukung analogWrite () pada pin 2 sampai 13, ditambah pin DAC0 dan DAC1. Berbeda dengan pin
PWM, DAC0 dan DAC1 adalah Digital untuk konverter analog, dan bertindak output analog sebagai benar.
Anda tidak perlu memanggil pinMode () untuk mengatur pin sebagai output sebelum memanggil analogWrite ().
Fungsi analogWrite tidak ada hubungannya dengan pin analog atau fungsi analogRead.

analogRead()
Description
Reads the value from the specified analog pin. The Arduino board
contains a 6 channel (8 channels on the Mini and Nano, 16 on the
Mega), 10-bit analog to digital converter. This means that it will
map input voltages between 0 and 5 volts into integer values
between 0 and 1023. This yields a resolution between readings
of: 5 volts / 1024 units or, .0049 volts (4.9 mV) per unit. The
input range and resolution can be changed
using analogReference().
It takes about 100 microseconds (0.0001 s) to read an analog
input, so the maximum reading rate is about 10,000 times a
second.
Membaca nilai dari pin analog yang ditentukan. Arduino papan
berisi 6 channel (8 saluran pada Mini dan Nano, 16 di Mega), 10-

bit analog ke digital. Ini berarti bahwa itu akan memetakan


tegangan masukan antara 0 dan 5 volt menjadi nilai integer
antara 0 dan 1023. Ini menghasilkan resolusi antara pembacaan:
5 volt / 1024 unit atau, 0,0049 volt (4,9 mV) per unit. Rentang
input dan resolusi dapat diubah dengan menggunakan
analogReference ().
Dibutuhkan sekitar 100 mikrodetik (0,0001 s) untuk membaca
input analog, sehingga tingkat membaca maksimum adalah
sekitar 10.000 kali per detik.
Syntax
analogRead(pin)
Parameters
pin: the number of the analog input pin to read from (0 to 5 on
most boards, 0 to 7 on the Mini and Nano, 0 to 15 on the Mega)
Returns
int (0 to 1023)
Note
If the analog input pin is not connected to anything, the value
returned by analogRead() will fluctuate based on a number of

factors (e.g. the values of the other analog inputs, how close your
hand is to the board, etc.).
Example

int analogPin = 3;
// potentiometer wiper (middle terminal)
connected to analog pin 3
// outside leads to ground and +5V
int val = 0;

// variable to store the value read

void setup()
{
Serial.begin(9600);

//

setup serial

void loop()
{
val = analogRead(analogPin);
Serial.println(val);
}

// read the input pin


// debug value

Vous aimerez peut-être aussi