You should post any error messages that you're getting. For sure, your include statements need a # in front of them if what you're showing isn't just a typo. Also, DHTTYPE doesn't name a type, you need to define that with something like,
#define DHTTYPE DHT22; // or DHT11 or DHT21
BTW, why are you using both the Adafruit library and the PietteTech one. You should only need one or the other.
The only error I get is: “error could not compile. please check your code”
My include statements do have a # but it just didn’t show up.
good catch on the #define. I missed that in my copy and paste. I can get the code for the DHT22 to compile (using both libraries). I can also get the code for the hx711 to compile. The problem I have is when I try to combine them together it just give me the could not compile error.
For that reason you should post your code wrapped in a set of these
```cpp
// your code
I've edited your original post accordingly and for mor hints look at
https://community.particle.io/t/forum-tips-and-tricks/3999
---
You also need to state what dev env you are using, how you have imported or included your libraries, what device and system version you are targeting.