project specific settings

This commit is contained in:
2021-05-01 23:56:59 +02:00
parent 733494a902
commit e050166805
5 changed files with 18 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
#ifndef __CONFIG_H__
#define __CONFIG_H__
#endif

View File

@@ -59,6 +59,10 @@
#include "dht22.h"
dht22 dht;
// Configuration, see file config.h.example and rename to config.h. Project specific, do not add to git!
#include "config.h"
#define RH_BUF_LEN 11
uint8_t rh_buf[RH_BUF_LEN] = {0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};