FanLedCtrl/include/controller.h

22 lines
495 B
C
Raw Normal View History

/**
* @file controller.h
* @author Ollo
* @brief
* @version 0.1
* @date 2024-11-28
*
* @copyright Copyright (c) 2024
*
*/
#ifndef FANLEDCTL_PINS
#define FANLEDCTL_PINS
2024-11-29 20:05:07 +01:00
#define FAN_PIN D6 /**< Output Pin, controlling FAN speed via PWM */
#define SIGNAL_PIN D7 /**< Input Pin, reading current FANs RPM*/
2024-11-28 21:58:52 +01:00
2024-11-29 20:05:07 +01:00
#define GPIO_DS18B20 D2 /**< One-Wire used for Dallas temperature sensor */
2024-11-29 22:59:58 +01:00
#define GPIO_WS2812_PIN1 D3
#define WS2812_LEDS1 1
#endif /* End FANLEDCTL_PINS */