Migrate plugin timer

This commit is contained in:
Simon Stürz 2017-11-24 22:54:15 +01:00 committed by Michael Zanetti
parent 33a00d19fa
commit 2a6284c403
5 changed files with 1 additions and 43 deletions

34
debian/control vendored
View File

@ -102,21 +102,6 @@ Description: guh.io plugin for denon
This package will install the guh.io plugin for denon This package will install the guh.io plugin for denon
Package: guh-plugin-dollhouse
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
guh-plugins-translations,
Description: guh.io plugin for dollhouse
The guh daemon is a plugin based IoT (Internet of Things) server. The
server works like a translator for devices, things and services and
allows them to interact.
With the powerful rule engine you are able to connect any device available
in the system and create individual scenes and behaviors for your environment.
.
This package will install the guh.io plugin for dollhouse
Package: guh-plugin-elgato Package: guh-plugin-elgato
Architecture: any Architecture: any
Depends: ${shlibs:Depends}, Depends: ${shlibs:Depends},
@ -252,21 +237,6 @@ Description: guh.io plugin for lgsmarttv
This package will install the guh.io plugin for lgsmarttv This package will install the guh.io plugin for lgsmarttv
Package: guh-plugin-lircd
Architecture: any
Depends: ${shlibs:Depends},
${misc:Depends},
guh-plugins-translations,
Description: guh.io plugin for lircd
The guh daemon is a plugin based IoT (Internet of Things) server. The
server works like a translator for devices, things and services and
allows them to interact.
With the powerful rule engine you are able to connect any device available
in the system and create individual scenes and behaviors for your environment.
.
This package will install the guh.io plugin for lircd
Package: guh-plugin-mailnotification Package: guh-plugin-mailnotification
Architecture: any Architecture: any
Depends: ${shlibs:Depends}, Depends: ${shlibs:Depends},
@ -536,8 +506,7 @@ Description: Plugins for guh IoT server - the default plugin collection
Package: guh-plugins-maker Package: guh-plugins-maker
Section: libs Section: libs
Architecture: all Architecture: all
Depends: guh-plugin-lircd, Depends: guh-plugin-commandlauncher,
guh-plugin-commandlauncher,
guh-plugin-udpcommander, guh-plugin-udpcommander,
guh-plugin-tcpcommander, guh-plugin-tcpcommander,
guh-plugin-genericelements, guh-plugin-genericelements,
@ -557,7 +526,6 @@ Package: guh-plugins-merkurboard
Section: libs Section: libs
Architecture: all Architecture: all
Depends: guh-plugin-osdomotics, Depends: guh-plugin-osdomotics,
guh-plugin-dollhouse,
guh-plugin-plantcare, guh-plugin-plantcare,
guh-plugin-ws2812, guh-plugin-ws2812,
guh-plugin-orderbutton, guh-plugin-orderbutton,

View File

@ -1 +0,0 @@
usr/lib/@DEB_HOST_MULTIARCH@/guh/plugins/libguh_deviceplugindollhouse.so

View File

@ -1 +0,0 @@
usr/lib/@DEB_HOST_MULTIARCH@/guh/plugins/libguh_devicepluginlircd.so

View File

@ -62,11 +62,6 @@ DevicePluginGenericElements::DevicePluginGenericElements()
{ {
} }
DeviceManager::HardwareResources DevicePluginGenericElements::requiredHardware() const
{
return DeviceManager::HardwareResourceNone;
}
DeviceManager::DeviceSetupStatus DevicePluginGenericElements::setupDevice(Device *device) DeviceManager::DeviceSetupStatus DevicePluginGenericElements::setupDevice(Device *device)
{ {
// Toggle Button // Toggle Button

View File

@ -34,11 +34,8 @@ class DevicePluginGenericElements : public DevicePlugin
public: public:
explicit DevicePluginGenericElements(); explicit DevicePluginGenericElements();
DeviceManager::HardwareResources requiredHardware() const override;
DeviceManager::DeviceSetupStatus setupDevice(Device *device) override; DeviceManager::DeviceSetupStatus setupDevice(Device *device) override;
public slots: public slots:
DeviceManager::DeviceError executeAction(Device *device, const Action &action) override; DeviceManager::DeviceError executeAction(Device *device, const Action &action) override;