#define PERIODE_PEMBACAAN_PH 10
struct DataSensor {
int buffer_adc_ph[PERIODE_PEMBACAAN_PH];
} dataSensor;
void setup() {
Serial.begin(9600);
for(unsigned int i=0; i<PERIODE_PEMBACAAN_PH; i++){
Serial.println(dataSensor.buffer_adc_ph[i]);
}
}
void loop() {
// put your main code here, to run repeatedly:
}