Torc  0.1
torcpipwmoutput.h
Go to the documentation of this file.
1 #ifndef TORCPIPWMOUTPUT_H
2 #define TORCPIPWMOUTPUT_H
3 
4 // Torc
5 #include "torcpwmoutput.h"
6 
7 #define TORC_HWPWM_PIN 1
8 
10 {
11  Q_OBJECT
12 
13  public:
14  TorcPiPWMOutput(int Pin, const QVariantMap &Details);
16 
17  QStringList GetDescription(void);
18 
19  public slots:
20  void SetValue (double Value);
21 
22  private:
23  int m_pin;
24 };
25 
26 #endif // TORCPIPWMOUTPUT_H
A device to output PWM signals on the Raspberry Pi.
QStringList GetDescription(void)
TorcPiPWMOutput(int Pin, const QVariantMap &Details)
void SetValue(double Value)