mirror of
https://github.com/DCC-EX/CommandStation-EX.git
synced 2024-11-23 08:06:13 +01:00
5269177f2e
NOTE: the ones in MemStream are not mine!
21 lines
421 B
C++
21 lines
421 B
C++
/*!
|
|
* @file PWMServoDriver.h
|
|
*
|
|
* Used to set servo positions on an I2C bus with 1 or more PCA96685 boards.
|
|
*/
|
|
#ifndef PWMServoDriver_H
|
|
#define PWMServoDriver_H
|
|
|
|
|
|
class PWMServoDriver {
|
|
public:
|
|
static void setServo(byte servoNum, uint16_t pos);
|
|
|
|
private:
|
|
static byte setupFlags;
|
|
static void setup(int board);
|
|
static void writeRegister(uint8_t i2caddr,uint8_t hardwareRegister, uint8_t d);
|
|
};
|
|
|
|
#endif
|