| #include <sensores.h> |
| #include <LPC214x.h> |
| #include <stdio.h> |
| int main (int argc, char **argv) { |
| char buffer[100]; |
| unsigned int x; |
| float temperature,humidity; |
| adcInit0_6(); |
| for(;;){ |
| sht75_read(&temperature, &humidity); |
| x = adcRead0_6(); |
| } |
| return 0; |
| } |