Skip to content
Snippets Groups Projects
Commit 17018c27 authored by Michael DM Dryden's avatar Michael DM Dryden
Browse files

More TCS disconnection detection.

parent ae7d26b6
1 merge request!1Develop
...@@ -139,10 +139,11 @@ void experiment_handler(char command){ ...@@ -139,10 +139,11 @@ void experiment_handler(char command){
if (o1 > 0) { if (o1 > 0) {
if (settings.settings.tcs_enabled > 0){ if (settings.settings.tcs_enabled > 0){
tcs_readvalues(tcs_data); tcs_readvalues(tcs_data);
delay_ms(25);
tcs_readvalues(tcs_data1); // If sensor disconnected, second measurement should be exactly the same (unless 0 or saturated) tcs_readvalues(tcs_data1); // If sensor disconnected, second measurement should be exactly the same (unless 0 or saturated)
if (tcs_data[3] == tcs_data1[3]){ printf("#INFO: TCS0—%u %u %u %u\n\r", tcs_data[0], tcs_data[1], tcs_data[2], tcs_data[3]);
if (!(tcs_data[3] == 0 || tcs_data[3] == 65535)) { printf("#INFO: TCS1—%u %u %u %u\n\r", tcs_data1[0], tcs_data1[1], tcs_data1[2], tcs_data1[3]);
if (tcs_data[0] == tcs_data1[0]){
if (!(tcs_data[0] == 0 || tcs_data[0] == 65535)) {
printf("#ERR: Ambient light sensor seems to be disconnected \n\r"); printf("#ERR: Ambient light sensor seems to be disconnected \n\r");
return; return;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment