mirror of
https://github.com/anklimov/lighthub
synced 2026-05-02 04:05:10 +00:00
26 lines
507 B
C++
26 lines
507 B
C++
|
|
#pragma once
|
|
#include "options.h"
|
|
#ifndef PWM_DISABLE
|
|
|
|
#include <abstractout.h>
|
|
#include <item.h>
|
|
#include "colorchannel.h"
|
|
|
|
class out_pwm : public colorChannel {
|
|
public:
|
|
|
|
// out_pwm():numChannels(0){};
|
|
int Setup() override;
|
|
int Stop() override;
|
|
|
|
|
|
int getChanType() override;
|
|
//int Ctrl(itemCmd cmd, char* subItem=NULL) override;
|
|
int PixelCtrl(itemCmd cmd, char* subItem=NULL, bool show=true, bool authorized = false ) override;
|
|
|
|
//protected:
|
|
// short numChannels;
|
|
};
|
|
#endif
|