Anda di halaman 1dari 2

Matematika diskrit untuk teknik komputer

JOB SHEET
AKUISISI DATA SINYAL KONTINYU
DENGAN
RESOLUSI ADC 10BIT

1. TUJUAN
a. Memahami proses konversi sinyal kontinyu menjadi data diskrit

2. TEORI
a. SAMPLING AND HOLD
b. ADC

3. RANGKAIAN PERCOBAAN

Listing program

The code reads the voltage on analogPin and displays it.


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); // read the input pin
Serial.println(val); // debug value
}

4. ALAT
a. Multimeter

5. BAHAN
a. Board peripheral interface chip with ADC (ARDUINO BOARD)
b. Power suplay / battery
c. Software IDE ARDUINO
d. PC
e. Potensio
f. Kabel

Created by Supriadi
Matematika diskrit untuk teknik komputer

6. LANGKAH KERJA
a. …
b. …
c. …
d. …
e. …
f. …
g. …

7. HASIL DAN PEMBAHASAN


a. Tabel hasil pengukuran
b. Perhitungan dan analisa

8. KESIMPULAN

Created by Supriadi

Anda mungkin juga menyukai