Open joeyklee opened 8 years ago
Also if you want to check the data from the memory card:
datFile = '/Volumes/NO NAME/160818/16081864.DAT'
checkData = function(fpath){
data = read.csv(fpath, header=F)
colnames(data) = c('date','time','gpsFix','gpsQuality','latitude','longitude','speed','elev','gpsSat','t_therm','hum_dht22','t_dht22','iramb','irobj')
data$time = strptime(data$time, format='%H:%M:%OS')
par(mfrow=c(2,2))
# temperature of humidiyt sensor
plot(data$time, data$t_dht22, col="blue", main="temp - dht22")
# temperature of thermocouple
plot(data$time, data$t_therm, col="red", main="temp - thermo" )
# plot ir sensor
plot(data$time, data$iramb, col="green", main="ir amb")
plot(data$time, data$irobj, col="purple", main="ir obj ")
par(mfrow=c(1,1))
}
checkData(datFile);
Checking Data
a sample looks like this:
gps antennae
in the case that it came off when removing the microsd card.