Home › Forums › Other Data Loggers › Arduino datalogger only gives data for last connected sensor › Reply To: Arduino datalogger only gives data for last connected sensor
2021-07-14 at 12:05 PM
#15675
I noticed in a different example file (I think it was e_continuous_measurement) the getResults function used an “R” command instead of the “D” command and that seemed to fix the problem.
I changed
123 |
command += "D"; |
to
123 |
command += "R"; |
and now it’s getting data from all of the sensors. However, I can’t find an “R” command in the 5TM documentation anywhere. Can anyone tell me what the “R” command does?