My project is about to push the DHT sensor data to MySql. I have included DHT library in Arduino/libraries/DHT. When i compile the program i m getting the following error. I have attached the snapshot of it.
#include <DHT.h>
#include <Ethernet.h>
#include <SPI.h>
byte mac[] = { 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x01 }; // RESERVED MAC ADDRESS
system
July 27, 2015, 9:27am
2
I have attached the snapshot of it.
Why would you attach a picture of some text?
Is there some part of the "file not found" message that is beyond your comprehension?
Apparently, you have not downloaded the DHT library, or you did not install it correctly.
That picture shows, what type of error i am getting while i compile the code.I have downloaded the DHT library from this link http://www.instructables.com/id/PART-1-Send-Arduino-data-to-the-Web-PHP-MySQL-D3js/?ALLSTEPS and i have included those library files in Arduino/Libraries/DHT.
system
July 27, 2015, 10:23am
4
and i have included those library files in Arduino/Libraries/DHT.
The folder name is libraries, not Libraries.
I am sorry i have mistyped the "libraries". Its D:\AE\arduino-1.6.5-r2\libraries\DHT
system
July 27, 2015, 10:51am
6
Its D:\AE\arduino-1.6.5-r2\libraries\DHT
That is NOT where user downloaded libraries go.
In the folder where you store your sketches, you should have a libraries folder. THAT is where user-downloaded libraries go.
Thank You. Its working now.