I'm trying to read the sensor values from the Myoware muscle sensor using the Atmega328p microcontroller. I've done tests before and they were successful. However, after a while of having the circuit connected and not using the sensor, I've come back to read values again but now I'm not getting any useful readings.
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(A3); // read the input on analog pin 3 and store in sensorValue
Serial.println(sensorValue);
delay (100);
}
void setup() {
Serial.begin(9600);
}
void loop() {
int sensorValue = analogRead(A3); // read the input on analog pin 3 and store in sensorValue
Serial.println(sensorValue);
delay (100);
}