You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
12 vuotta sitten
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. /*
  2. * rht03.c:
  3. * Driver for the MaxDetect series sensors
  4. *
  5. * Copyright (c) 2012-2013 Gordon Henderson.
  6. ***********************************************************************
  7. * This file is part of wiringPi:
  8. * https://github.com/WiringPi/WiringPi
  9. *
  10. * wiringPi is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Lesser General Public License as published by
  12. * the Free Software Foundation, either version 3 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * wiringPi is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public License
  21. * along with wiringPi. If not, see <http://www.gnu.org/licenses/>.
  22. ***********************************************************************
  23. */
  24. #include <stdio.h>
  25. #include <wiringPi.h>
  26. #include <maxdetect.h>
  27. #define RHT03_PIN 7
  28. /*
  29. ***********************************************************************
  30. * The main program
  31. ***********************************************************************
  32. */
  33. int main (void)
  34. {
  35. int result, temp, rh ;
  36. int minT, maxT, minRH, maxRH ;
  37. int numGood, numBad ;
  38. wiringPiSetup () ;
  39. piHiPri (55) ;
  40. minT = 1000 ;
  41. maxT = -1000 ;
  42. minRH = 1000 ;
  43. maxRH = -1000 ;
  44. numGood = numBad = 0 ;
  45. for (;;)
  46. {
  47. delay (100) ;
  48. result = readRHT03 (RHT03_PIN, &temp, &rh) ;
  49. if (!result)
  50. {
  51. printf (".") ;
  52. fflush (stdout) ;
  53. ++numBad ;
  54. continue ;
  55. }
  56. ++numGood ;
  57. if (temp < minT) minT = temp ;
  58. if (temp > maxT) maxT = temp ;
  59. if (rh < minRH) minRH = rh ;
  60. if (rh > maxRH) maxRH = rh ;
  61. printf ("\r%6d, %6d: ", numGood, numBad) ;
  62. printf ("Temp: %5.1f, RH: %5.1f%%", temp / 10.0, rh / 10.0) ;
  63. printf (" Max/Min Temp: %5.1f:%5.1f", maxT / 10.0, minT / 10.0) ;
  64. printf (" Max/Min RH: %5.1f:%5.1f", maxRH / 10.0, minRH / 10.0) ;
  65. printf ("\n") ;
  66. }
  67. return 0 ;
  68. }