



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Showing how to build an ammeter with arduino
Typology: Study Guides, Projects, Research
1 / 6
This page cannot be seen from the preview
Don't miss anything!
prinsip
listing program #include <LiquidCrystal.h> LiquidCrystal lcd (7,8,9,10,11,12); void setup() { Serial.begin(9600); lcd.begin(16,2); lcd.clear(); } void loop() { int tegangan0 = analogRead(A0); int tegangan1 = analogRead(A1); int dropteg =(tegangan0 - tegangan1) ; float temp_val = (dropteg*0.00488); float arus = (temp_val/22); Serial.print(arus); lcd.setCursor(0,0); lcd.print("ammeter rinniez "); lcd.setCursor(0,1); lcd.print (arus); lcd.print("A"); delay(1000); }