Forum >SKU: SEN0237
ArduinoGeneral

SKU: SEN0237

userHead Account cancelled 2018-11-16 17:35:59 1855 Views1 Replies
Hello,

I am experiencing problems with my SEN0237 sensor. I have it connected to an Arduino UNO and plugged into my computer. The sensor is communicating with my computer; it is outputting data. However, it keeps giving a reading of 'nan' mg/L despite successful calibration. I am using it in air as the instructions say that you can, but continue to get this reading. Any advice on how to troubleshoot this issue would be much appreciated.
2018-12-25 23:30:02 You can run this code to clear the EEPROM to see if it would work.
#include <EEPROM.h>
#define KVALUEADDR 12
void setup(){
for(byte i = 0;i< 16; i++ ){
EEPROM.write(KVALUEADDR+i, 0xFF);
}
}
void loop(){
}
userHeadPic robert.chen