raDIYo 0.4
pigpio.cpp
1/***************************************************************************
2
3 source::worx PiGPIO
4 Copyright © 2022 c.holzheuer
5 c.holzheuer@sourceworx.org
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12***************************************************************************/
13
14#include <QtGlobal>
15#include <QDebug>
16
17#include <pigpio.h>
18
19PiGPIO::PiGPIO(QObject *parent)
20 : QObject{parent}
21{
22
23}
24
25PiGPIO::~PiGPIO()
26{
27}
28
29
30PiGPIOWidget::PiGPIOWidget( QObject* parent )
31 : QObject( parent )
32{
33}
34
35
36PiGPIOWidget::~PiGPIOWidget()
37{
38}
39
40#ifdef Q_OS_WIN
41PiGPIORotaryDial::PiGPIORotaryDial( QObject* parent )
42 : PiGPIOWidget( parent )
43{
44
45
46}
47
48PiGPIORotaryDial::~PiGPIORotaryDial()
49{
50}
51
52#endif
53
54#ifdef Q_OS_LINUX
55
56#include <cstdint>
57
58PiGPIORotaryDial::PiGPIORotaryDial( QObject* parent )
59 : PiGPIOWidget( parent )
60{
61
62
63}
64
65PiGPIORotaryDial::~PiGPIORotaryDial()
66{
67}
68
102#endif