different information
-
Hi,
Could you help me, what the problem is ?
The log and detailed data time-stamps are not some.
LOG:
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)DATA:
2017-12-09 22:00:00 63 1
2017-12-09 22:05:00 63 1
2017-12-09 22:10:00 63 1
2017-12-09 22:15:00 63 1
2017-12-09 22:20:00 63 1
2017-12-09 22:25:00 63 1
2017-12-09 22:30:00 59 0.7
2017-12-09 22:35:00 59 0.7
2017-12-09 22:40:00 59 0.7
2017-12-09 22:45:00 59 0.7
2017-12-09 22:50:00 59 0.7
2017-12-09 22:55:00 59 0.7
2017-12-09 23:00:00 56 0.8
2017-12-09 23:05:00 56 0.8
2017-12-09 23:10:00 56 0.8code:
unsigned long SLEEP_TIME = 900000;
send(msgTemp.set(DHT.temperature, 1));
send(msgHum.set(DHT.humidity, 1));
delay(SLEEP_TIME);The node must send data by 15min, Domonicz receives it by 30min, detailed data contains 5min data.
Does the Domonicz feel 30min gap every 5min ?thanks
Barna
-
Hi,
Could you help me, what the problem is ?
The log and detailed data time-stamps are not some.
LOG:
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)DATA:
2017-12-09 22:00:00 63 1
2017-12-09 22:05:00 63 1
2017-12-09 22:10:00 63 1
2017-12-09 22:15:00 63 1
2017-12-09 22:20:00 63 1
2017-12-09 22:25:00 63 1
2017-12-09 22:30:00 59 0.7
2017-12-09 22:35:00 59 0.7
2017-12-09 22:40:00 59 0.7
2017-12-09 22:45:00 59 0.7
2017-12-09 22:50:00 59 0.7
2017-12-09 22:55:00 59 0.7
2017-12-09 23:00:00 56 0.8
2017-12-09 23:05:00 56 0.8
2017-12-09 23:10:00 56 0.8code:
unsigned long SLEEP_TIME = 900000;
send(msgTemp.set(DHT.temperature, 1));
send(msgHum.set(DHT.humidity, 1));
delay(SLEEP_TIME);The node must send data by 15min, Domonicz receives it by 30min, detailed data contains 5min data.
Does the Domonicz feel 30min gap every 5min ?thanks
Barna
@barna Domoticz always saves the data in 5 minutes summaries, regardless of at which frequency it is actually received.
I'm not sure I understand the part "Domonicz receives it by 30min". Regardless of what is finally stored, you should still see the values in the devices displayed correctly when a new data point arrives.
-
Hi,
Could you help me, what the problem is ?
The log and detailed data time-stamps are not some.
LOG:
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:27:01.131 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)
2017-12-09 22:57:03.681 (mysensor_gate) Temp + Humidity (Udvar)DATA:
2017-12-09 22:00:00 63 1
2017-12-09 22:05:00 63 1
2017-12-09 22:10:00 63 1
2017-12-09 22:15:00 63 1
2017-12-09 22:20:00 63 1
2017-12-09 22:25:00 63 1
2017-12-09 22:30:00 59 0.7
2017-12-09 22:35:00 59 0.7
2017-12-09 22:40:00 59 0.7
2017-12-09 22:45:00 59 0.7
2017-12-09 22:50:00 59 0.7
2017-12-09 22:55:00 59 0.7
2017-12-09 23:00:00 56 0.8
2017-12-09 23:05:00 56 0.8
2017-12-09 23:10:00 56 0.8code:
unsigned long SLEEP_TIME = 900000;
send(msgTemp.set(DHT.temperature, 1));
send(msgHum.set(DHT.humidity, 1));
delay(SLEEP_TIME);The node must send data by 15min, Domonicz receives it by 30min, detailed data contains 5min data.
Does the Domonicz feel 30min gap every 5min ?thanks
Barna
-
#define MY_DEBUG
// Enable and select radio type attached
#define MY_RADIO_NRF24
//#define MY_RADIO_RFM69#include <MySensors.h>
#include <SPI.h>
#include <dht.h>#define CHILD_ID_HUM 14
#define CHILD_ID_TEMP 15
#define HUMIDITY_SENSOR_DIGITAL_PIN 5
unsigned long SLEEP_TIME = 900000; // Sleep time between reads (in milliseconds)
int BATTERY_SENSE_PIN = A0; // select the input pin for the battery sense point
int oldBatteryPcnt = 0;dht DHT;
float lastTemp;
float lastHum;
boolean metric = true;
MyMessage msgHum(CHILD_ID_HUM, V_HUM);
MyMessage msgTemp(CHILD_ID_TEMP, V_TEMP);void presentation()
{
// Send the sketch version information to the gateway
sendSketchInfo("TemperatureAndHumidity DHT21", "1.1");// Register all sensors to gw (they will be created as child devices)
present(CHILD_ID_HUM, S_HUM);
present(CHILD_ID_TEMP, S_TEMP);metric = getControllerConfig().isMetric;
}void setup()
{
Serial.println("DHT TEST PROGRAM ");
Serial.print("LIBRARY VERSION: ");
Serial.println(DHT_LIB_VERSION);// use the 1.1 V internal reference#if defined(AVR_ATmega2560)
analogReference(INTERNAL1V1);
#else
analogReference(INTERNAL);
#endif}
void loop()
{
//-------------------- battery// get the battery Voltage int sensorValue = analogRead(BATTERY_SENSE_PIN);#ifdef MY_DEBUG
Serial.println(sensorValue);
#endifint batteryPcnt = sensorValue / 10;
#ifdef MY_DEBUG
float batteryV = sensorValue * 0.003363075;
Serial.print("Battery Voltage: ");
Serial.print(batteryV);
Serial.println(" V");Serial.print("Battery percent: "); Serial.print(batteryPcnt); Serial.println(" %");#endif
if (oldBatteryPcnt != batteryPcnt) { // Power up radio after sleep sendBatteryLevel(batteryPcnt); oldBatteryPcnt = batteryPcnt; }//-------------------- DHT
// READ DATA Serial.print("DHT21, \t"); int chk = DHT.read21(HUMIDITY_SENSOR_DIGITAL_PIN); switch (chk) { case DHTLIB_OK: Serial.print("OK,\t"); break; case DHTLIB_ERROR_CHECKSUM: Serial.print("Checksum error,\t"); break; case DHTLIB_ERROR_CONNECT: Serial.print("Connect error,\t"); break; case DHTLIB_ERROR_ACK_L: Serial.print("Ack Low error,\t"); break; case DHTLIB_ERROR_ACK_H: Serial.print("Ack High error,\t"); break; default: Serial.print("Unknown error,\t"); break; } // DISPLAY DATA Serial.print(DHT.humidity, 1); Serial.print(",\t"); Serial.println(DHT.temperature, 1); send(msgTemp.set(DHT.temperature, 1)); send(msgHum.set(DHT.humidity, 1));delay(SLEEP_TIME);
} -
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login