Delete Sensor_Timestamp.h

This commit is contained in:
Stef-aap 2020-04-18 15:52:47 +02:00 committed by GitHub
parent f3741b5e68
commit 344ff51ffe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 36 deletions

View File

@ -1,36 +0,0 @@
// Version 0.2, 29-05-2019, SM
// - Divider toegevoegd
// - JSON_Short_Data toegevoegd (hoeft niet, want SPIFFS det het zelf al !!)
//
// Version 0.1
// - Version number added
#ifndef Sensor_Timestamp_h
#define Sensor_Timestamp_h 0.2
// ***********************************************************************************
// ***********************************************************************************
class _Sensor_Timestamp : public _Sensor_BaseClass {
public:
// ***********************************************************************
// Creators
// ***********************************************************************
_Sensor_Timestamp ( int Divider = 1 ) {
_Divider = Divider ;
Serial.println ( "V" + String ( Sensor_Timestamp_h ) + " Sensor_Timestamp.h" ) ;
}
// ***********************************************************************
// Get all the sampled data as a JSON string
// ***********************************************************************
void Get_JSON_Data () {
//Debug ( "Timestamp" ) ;
JSON_Data += " \"TimeStamp\":" ;
JSON_Data += millis() / _Divider ;
JSON_Data += "," ;
}
private :
int _Divider ;
};
#endif