Hello sir, good day! I did an experiment yesterday about drying fish. I used soil moisture sensor to measure the moisture content of fish. But have no luck, when my samples (fish) were dried, the moisture content should be 75% or less but the sensor read 150% and above. .i dont know the reason sir. Here's my code:
void setup(){
Serial.begin(9600);
}
void loop(){
int moisture = analogRead(0);
Serial.print(moisture);
Serial.println();
}