raspberrypi_io.h 344 B

1234567891011121314151617181920212223
  1. /*
  2. * raspberrypi_io.h
  3. *
  4. * Created on: 23.06.2014
  5. * Author: root
  6. */
  7. #ifndef RASPBERRYPI_IO_H_
  8. #define RASPBERRYPI_IO_H_
  9. #include <wiringPi.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include "string.h"
  14. int readTemp(float *temp);
  15. int writePin(_Bool state, int pin);
  16. int initIO();
  17. #endif /* RASPBERRYPI_IO_H_ */