Hallo,
ich habe mir letztens ein Arduino Nano zugelegt und möchte damit Strom messen.
Dazu habe ich mir den Stromsensor ACS712 20A Range Modul Current Sensor gekauft.
Allerdings komme ich nun mit der Programmierung nicht ganz klar.
Das hier ist mein ProgrammCode bisher. An mein ADC ist noch ein LCD dran, auf dem die Werte ausgegeben werden sollen.
#include <LiquidCrystal.h>
// initialize the library with the numbers of the interface pins
LiquidCrystal lcd(12, 11 , 10, 7, 6, 5, 4);
/*
ReadAnalogVoltage
Reads an analog input on pin 0, converts it to voltage, and prints the result to the serial monitor.
Attach the center pin of a potentiometer to pin A0, and the outside pins to +5V and ground.
This example code is in the public domain.
*/
// the setup routine runs once when you press reset:
void setup() {
// initialize serial communication at 9600 bits per second:
Serial.begin(9600);
}
// the loop routine runs over and over again forever:
void loop() {
// read the input on analog pin 0:
int sensorValue = analogRead(A0);
// Convert the analog reading (which goes from 0 - 1023) to a voltage (0 - 5V):
float voltage = (sensorValue-511) * (5.0 / 1024.0 );
// print out the value you read:
lcd.begin(16, 2);
// Print a message to the LCD.
lcd.print(voltage);
lcd.setCursor(0, 1);
}
Im Moment wird mir die Voltzahl ausgegeben.
Wie gehe ich nun weiter vor, damit mir auch der Strom angezeigt wird? Bzw wie rechnet man das um?
Der ADC kann Ströme von -20 bis 20 A messen.
Schon mal vielen lieben Dank im Voraus,
Merve Can