#include <LiquidCrystal.h>
int pwm = 0;
int setamps = 0;
int measamps = 0;
int volts = 0;
float rshunt = 1 * 8184;
LiquidCrystal lcd(5, 6, 7, 8, 9, 10);
void setup() {
analogReference(EXTERNAL); // Use 1.250V reference for AREF
pinMode();
}
void loop() {
measamps = analogRead(A0) / rshunt; // measures the current
setamps = analogRead(A1) / ;
}