Hi there again,
i have the Rasp. Pi3 mod. B with Kit GrovePi+ and im writing with c++.
Seems there is a problem when i try to use the grove_dht_pro & grove_rgb_lcd in
a single programm. The header files override each other so i can only use one
device in a programm.
Do i have a code problem?!?
code goes here ->
#include "grovepi.h"
#include "grove_rgb_lcd.h"
#include "grove_dht_pro.h"
compiler says: “error: ‘DHT’ was not declared in this scope”
… when i rewrite the code 2 thiz:
#include "grovepi.h"
#include "grove_dht_pro.h"
#include "grove_rgb_lcd.h"
then compiler says: “error: ‘LCD’ was not declared in this scope”
thx in advance