FanLedCtrl/include/controller.h
2024-11-28 21:58:52 +01:00

19 lines
435 B
C

/**
* @file controller.h
* @author Ollo
* @brief
* @version 0.1
* @date 2024-11-28
*
* @copyright Copyright (c) 2024
*
*/
#ifndef FANLEDCTL_PINS
#define FANLEDCTL_PINS
#define FAN_PIN 12 /**< Output Pin, controlling FAN speed via PWM */
#define SIGNAL_PIN 13 /**< Input Pin, reading current FANs RPM*/
#define GPIO_DS18B20 D7 /**< One-Wire used for Dallas temperature sensor */
#endif /* End FANLEDCTL_PINS */