Merge PR #780: Update license text and add SPDX identifier
This commit is contained in:
commit
02cd1da2fb
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
*.pro.user
|
*.pro.user
|
||||||
builddir
|
builddir
|
||||||
|
build/
|
||||||
doc/html
|
doc/html
|
||||||
.DS_Store
|
.DS_Store
|
||||||
*/modules/
|
*/modules/
|
||||||
|
|||||||
@ -15,9 +15,6 @@ nymea (/[n'aiːmea:]/ - is an open source IoT edge server. The plug-in based arc
|
|||||||
|
|
||||||
## Getting help
|
## Getting help
|
||||||
|
|
||||||
If you want to present your project or want to share your newest developments you can share it in
|
|
||||||
[Our Forum](https://forum.nymea.io)
|
|
||||||
|
|
||||||
If you are facing any troubles, don't hesitate to reach out for us or the community members, we will be pleased to help you:
|
If you are facing any troubles, don't hesitate to reach out for us or the community members, we will be pleased to help you:
|
||||||
Chat with us on [Telegram](http://t.me/nymeacommunity)
|
Chat with us on [Telegram](http://t.me/nymeacommunity)
|
||||||
|
|
||||||
@ -40,4 +37,4 @@ If you don't have any developer skills at all, still feel free to bring the topi
|
|||||||
|
|
||||||
## License
|
## License
|
||||||
--------------------------------------------
|
--------------------------------------------
|
||||||
> nymea is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 3 of the License.
|
nymea-plugins is licensed under the GNU General Public License version 3 or (at your option) any later version (GPL-3.0-or-later). See the source files or the accompanying license text for details.
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
|
*
|
||||||
|
* This file is part of nymea-plugins.
|
||||||
|
*
|
||||||
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "discovery.h"
|
#include "discovery.h"
|
||||||
|
|
||||||
#include <QUdpSocket>
|
#include <QUdpSocket>
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
|
*
|
||||||
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
|
*
|
||||||
|
* This file is part of nymea-plugins.
|
||||||
|
*
|
||||||
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*
|
||||||
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef DISCOVERY_H
|
#ifndef DISCOVERY_H
|
||||||
#define DISCOVERY_H
|
#define DISCOVERY_H
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
Example reply for HOME and PRO:
|
Example reply for HOME and PRO:
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINANEL_H
|
#ifndef INTEGRATIONPLUGINANEL_H
|
||||||
#define INTEGRATIONPLUGINANEL_H
|
#define INTEGRATIONPLUGINANEL_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "airqualityindex.h"
|
#include "airqualityindex.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef AIRQUALITYINDEX_H
|
#ifndef AIRQUALITYINDEX_H
|
||||||
#define AIRQUALITYINDEX_H
|
#define AIRQUALITYINDEX_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginaqi.h"
|
#include "integrationpluginaqi.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINAQI_H
|
#ifndef INTEGRATIONPLUGINAQI_H
|
||||||
#define INTEGRATIONPLUGINAQI_H
|
#define INTEGRATIONPLUGINAQI_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginavahimonitor.h"
|
#include "integrationpluginavahimonitor.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINAVAHIMONITOR_H
|
#ifndef INTEGRATIONPLUGINAVAHIMONITOR_H
|
||||||
#define INTEGRATIONPLUGINAVAHIMONITOR_H
|
#define INTEGRATIONPLUGINAVAHIMONITOR_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginawattar.h"
|
#include "integrationpluginawattar.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINAWATTAR_H
|
#ifndef INTEGRATIONPLUGINAWATTAR_H
|
||||||
#define INTEGRATIONPLUGINAWATTAR_H
|
#define INTEGRATIONPLUGINAWATTAR_H
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
#
|
||||||
|
# Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
|
# Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
|
#
|
||||||
|
# This file is part of nymea-plugins.
|
||||||
|
#
|
||||||
|
# nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
import nymea
|
import nymea
|
||||||
from bimmer_connected.account import ConnectedDriveAccount
|
from bimmer_connected.account import ConnectedDriveAccount
|
||||||
from bimmer_connected.country_selector import Regions
|
from bimmer_connected.country_selector import Regions
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "bluos.h"
|
#include "bluos.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef BLUOS_H
|
#ifndef BLUOS_H
|
||||||
#define BLUOS_H
|
#define BLUOS_H
|
||||||
|
|||||||
@ -1,33 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
|
|
||||||
#include "integrationpluginbluos.h"
|
#include "integrationpluginbluos.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINBLUOS_H
|
#ifndef INTEGRATIONPLUGINBLUOS_H
|
||||||
#define INTEGRATIONPLUGINBLUOS_H
|
#define INTEGRATIONPLUGINBLUOS_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginbose.h"
|
#include "integrationpluginbose.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINBOSE_H
|
#ifndef INTEGRATIONPLUGINBOSE_H
|
||||||
#define INTEGRATIONPLUGINBOSE_H
|
#define INTEGRATIONPLUGINBOSE_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "soundtouch.h"
|
#include "soundtouch.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef SOUNDTOUCH_H
|
#ifndef SOUNDTOUCH_H
|
||||||
#define SOUNDTOUCH_H
|
#define SOUNDTOUCH_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef SOUNDTOUCHTYPES_H
|
#ifndef SOUNDTOUCHTYPES_H
|
||||||
#define SOUNDTOUCHTYPES_H
|
#define SOUNDTOUCHTYPES_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginbosswerk.h"
|
#include "integrationpluginbosswerk.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINMEROSS_H
|
#ifndef INTEGRATIONPLUGINMEROSS_H
|
||||||
#define INTEGRATIONPLUGINMEROSS_H
|
#define INTEGRATIONPLUGINMEROSS_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugincoinmarketcap.h"
|
#include "integrationplugincoinmarketcap.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINCOINMARKETCAP_H
|
#ifndef INTEGRATIONPLUGINCOINMARKETCAP_H
|
||||||
#define INTEGRATIONPLUGINCOINMARKETCAP_H
|
#define INTEGRATIONPLUGINCOINMARKETCAP_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugincommandlauncher.h"
|
#include "integrationplugincommandlauncher.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINCOMMANDLAUNCHER_H
|
#ifndef INTEGRATIONPLUGINCOMMANDLAUNCHER_H
|
||||||
#define INTEGRATIONPLUGINCOMMANDLAUNCHER_H
|
#define INTEGRATIONPLUGINCOMMANDLAUNCHER_H
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
#
|
||||||
|
# Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
|
# Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
|
#
|
||||||
|
# This file is part of nymea-plugins.
|
||||||
|
#
|
||||||
|
# nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
import nymea
|
import nymea
|
||||||
import time
|
import time
|
||||||
import threading
|
import threading
|
||||||
@ -412,4 +436,4 @@ def thingRemoved(thing):
|
|||||||
logger.log("removeThing called for", thing.name)
|
logger.log("removeThing called for", thing.name)
|
||||||
# Clean up all data related to this thing
|
# Clean up all data related to this thing
|
||||||
if len(myThings()) == 0 and pollTimer is not None:
|
if len(myThings()) == 0 and pollTimer is not None:
|
||||||
pollTimer = None
|
pollTimer = None
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "alarm.h"
|
#include "alarm.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef ALARM_H
|
#ifndef ALARM_H
|
||||||
#define ALARM_H
|
#define ALARM_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "countdown.h"
|
#include "countdown.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef COUNTDOWN_H
|
#ifndef COUNTDOWN_H
|
||||||
#define COUNTDOWN_H
|
#define COUNTDOWN_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugindatetime.h"
|
#include "integrationplugindatetime.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDATETIME_H
|
#ifndef INTEGRATIONPLUGINDATETIME_H
|
||||||
#define INTEGRATIONPLUGINDATETIME_H
|
#define INTEGRATIONPLUGINDATETIME_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
#include "integrationplugindaylightsensor.h"
|
#include "integrationplugindaylightsensor.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDAYLIGHTSENSOR_H
|
#ifndef INTEGRATIONPLUGINDAYLIGHTSENSOR_H
|
||||||
#define INTEGRATIONPLUGINDAYLIGHTSENSOR_H
|
#define INTEGRATIONPLUGINDAYLIGHTSENSOR_H
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Source: nymea-plugins
|
Source: nymea-plugins
|
||||||
Section: utils
|
Section: utils
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: nymea GmbH <contact@nymea.io>
|
Maintainer: chargebyte austria GmbH <contact@nymea.io>
|
||||||
Standards-Version: 4.6.0
|
Standards-Version: 4.6.0
|
||||||
Build-depends: debhelper (>= 0.0.0),
|
Build-depends: debhelper (>= 0.0.0),
|
||||||
libnymea-dev (>= 0.26~),
|
libnymea-dev (>= 0.26~),
|
||||||
|
|||||||
@ -1,14 +1,29 @@
|
|||||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
Upstream-Name: nymea-plugins
|
Upstream-Name: nymea-plugins
|
||||||
Upstream-Contact: nymea GmbH <developer@nymea.io>
|
Upstream-Contact: chargebyte austria GmbH <contact@nymea.io>
|
||||||
Copyright: 2013-2024, nymea GmbH
|
Copyright: 2013-2024, nymea GmbH
|
||||||
|
2024-2025, chargebyte austria GmbH
|
||||||
Download: https://github.com/nymea/nymea-plugins
|
Download: https://github.com/nymea/nymea-plugins
|
||||||
Source: https://github.com/nymea/nymea-plugins.git
|
Source: https://github.com/nymea/nymea-plugins.git
|
||||||
|
|
||||||
License: LGPL-3
|
License: GPL-3+
|
||||||
On Debian systems, the complete text of the GNU Lesser General
|
nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
Public License can be found in `/usr/share/common-licenses/LGPL-3'.
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
.
|
||||||
|
nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
.
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
.
|
||||||
|
On Debian systems, the complete text of the GNU General Public License
|
||||||
|
can be found in `/usr/share/common-licenses/GPL-3'.
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
License: LGPL-3
|
License: GPL-3+
|
||||||
Copyright: 2013-2024, nymea GmbH <contact@nymea.io>
|
Copyright: 2013-2024, nymea GmbH <contact@nymea.io>
|
||||||
|
2024-2025, chargebyte austria GmbH <contact@nymea.io>
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
Source: nymea-plugins
|
Source: nymea-plugins
|
||||||
Section: utils
|
Section: utils
|
||||||
Priority: optional
|
Priority: optional
|
||||||
Maintainer: nymea GmbH <contact@nymea.io>
|
Maintainer: chargebyte austria GmbH <contact@nymea.io>
|
||||||
Standards-Version: 4.7.2
|
Standards-Version: 4.7.2
|
||||||
Homepage: https://nymea.io
|
Homepage: https://nymea.io
|
||||||
Vcs-Git: https://github.com/nymea/nymea-plugins.git
|
Vcs-Git: https://github.com/nymea/nymea-plugins.git
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "avrconnection.h"
|
#include "avrconnection.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef AVRCONNECTION_H
|
#ifndef AVRCONNECTION_H
|
||||||
#define AVRCONNECTION_H
|
#define AVRCONNECTION_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "heos.h"
|
#include "heos.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
38
denon/heos.h
38
denon/heos.h
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef HEOS_H
|
#ifndef HEOS_H
|
||||||
#define HEOS_H
|
#define HEOS_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "heosplayer.h"
|
#include "heosplayer.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef HEOSPLAYER_H
|
#ifndef HEOSPLAYER_H
|
||||||
#define HEOSPLAYER_H
|
#define HEOSPLAYER_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef HEOSTYPES_H
|
#ifndef HEOSTYPES_H
|
||||||
#define HEOSTYPES_H
|
#define HEOSTYPES_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugindenon.h"
|
#include "integrationplugindenon.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDENON_H
|
#ifndef INTEGRATIONPLUGINDENON_H
|
||||||
#define INTEGRATIONPLUGINDENON_H
|
#define INTEGRATIONPLUGINDENON_H
|
||||||
|
|||||||
@ -1,3 +1,27 @@
|
|||||||
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
#
|
||||||
|
# Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
|
# Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
|
#
|
||||||
|
# This file is part of nymea-plugins.
|
||||||
|
#
|
||||||
|
# nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
|
# it under the terms of the GNU General Public License as published by
|
||||||
|
# the Free Software Foundation, either version 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# nymea-plugins is distributed in the hope that it will be useful,
|
||||||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
# General Public License for more details.
|
||||||
|
#
|
||||||
|
# You should have received a copy of the GNU General Public License
|
||||||
|
# along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
#
|
||||||
|
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
|
|
||||||
import nymea
|
import nymea
|
||||||
import board
|
import board
|
||||||
import adafruit_dht
|
import adafruit_dht
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "doorbird.h"
|
#include "doorbird.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef DOORBIRD_H
|
#ifndef DOORBIRD_H
|
||||||
#define DOORBIRD_H
|
#define DOORBIRD_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugindoorbird.h"
|
#include "integrationplugindoorbird.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDOORBIRD_H
|
#ifndef INTEGRATIONPLUGINDOORBIRD_H
|
||||||
#define INTEGRATIONPLUGINDOORBIRD_H
|
#define INTEGRATIONPLUGINDOORBIRD_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugindweetio.h"
|
#include "integrationplugindweetio.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDWEETIO_H
|
#ifndef INTEGRATIONPLUGINDWEETIO_H
|
||||||
#define INTEGRATIONPLUGINDWEETIO_H
|
#define INTEGRATIONPLUGINDWEETIO_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugindynatrace.h"
|
#include "integrationplugindynatrace.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINDYNATRACE_H
|
#ifndef INTEGRATIONPLUGINDYNATRACE_H
|
||||||
#define INTEGRATIONPLUGINDYNATRACE_H
|
#define INTEGRATIONPLUGINDYNATRACE_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "ufo.h"
|
#include "ufo.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef DYNATRACE_UFO_H
|
#ifndef DYNATRACE_UFO_H
|
||||||
#define DYNATRACE_UFO_H
|
#define DYNATRACE_UFO_H
|
||||||
|
|||||||
@ -1,33 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2023, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
|
|
||||||
#include "integrationplugineasee.h"
|
#include "integrationplugineasee.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2023, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINEASEE_H
|
#ifndef INTEGRATIONPLUGINEASEE_H
|
||||||
#define INTEGRATIONPLUGINEASEE_H
|
#define INTEGRATIONPLUGINEASEE_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "signalrconnection.h"
|
#include "signalrconnection.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef SIGNALRCONNECTION_H
|
#ifndef SIGNALRCONNECTION_H
|
||||||
#define SIGNALRCONNECTION_H
|
#define SIGNALRCONNECTION_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "aveabulb.h"
|
#include "aveabulb.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef AVEABULB_H
|
#ifndef AVEABULB_H
|
||||||
#define AVEABULB_H
|
#define AVEABULB_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
----------------------------------------------------------------
|
----------------------------------------------------------------
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINELGATO_H
|
#ifndef INTEGRATIONPLUGINELGATO_H
|
||||||
#define INTEGRATIONPLUGINELGATO_H
|
#define INTEGRATIONPLUGINELGATO_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "eqivabluetooth.h"
|
#include "eqivabluetooth.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef EQIVABLUETOOTH_H
|
#ifndef EQIVABLUETOOTH_H
|
||||||
#define EQIVABLUETOOTH_H
|
#define EQIVABLUETOOTH_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugineq-3.h"
|
#include "integrationplugineq-3.h"
|
||||||
#include "maxcubediscovery.h"
|
#include "maxcubediscovery.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINEQ3_H
|
#ifndef INTEGRATIONPLUGINEQ3_H
|
||||||
#define INTEGRATIONPLUGINEQ3_H
|
#define INTEGRATIONPLUGINEQ3_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "maxcube.h"
|
#include "maxcube.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef MAXCUBE_H
|
#ifndef MAXCUBE_H
|
||||||
#define MAXCUBE_H
|
#define MAXCUBE_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "maxcubediscovery.h"
|
#include "maxcubediscovery.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef MAXCUBEDISCOVERY_H
|
#ifndef MAXCUBEDISCOVERY_H
|
||||||
#define MAXCUBEDISCOVERY_H
|
#define MAXCUBEDISCOVERY_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "maxdevice.h"
|
#include "maxdevice.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef MAXDEVICE_H
|
#ifndef MAXDEVICE_H
|
||||||
#define MAXDEVICE_H
|
#define MAXDEVICE_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "radiatorthermostat.h"
|
#include "radiatorthermostat.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef RADIATORTHERMOSTAT_H
|
#ifndef RADIATORTHERMOSTAT_H
|
||||||
#define RADIATORTHERMOSTAT_H
|
#define RADIATORTHERMOSTAT_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "room.h"
|
#include "room.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
38
eq-3/room.h
38
eq-3/room.h
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef ROOM_H
|
#ifndef ROOM_H
|
||||||
#define ROOM_H
|
#define ROOM_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "wallthermostat.h"
|
#include "wallthermostat.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2020, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef WALLTHERMOSTAT_H
|
#ifndef WALLTHERMOSTAT_H
|
||||||
#define WALLTHERMOSTAT_H
|
#define WALLTHERMOSTAT_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "espsomfyrts.h"
|
#include "espsomfyrts.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef ESPSOMFYRTS_H
|
#ifndef ESPSOMFYRTS_H
|
||||||
#define ESPSOMFYRTS_H
|
#define ESPSOMFYRTS_H
|
||||||
|
|||||||
@ -1,33 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
|
|
||||||
#include "espsomfyrtsdiscovery.h"
|
#include "espsomfyrtsdiscovery.h"
|
||||||
#include "extern-plugininfo.h"
|
#include "extern-plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef ESPSOMFYRTSDISCOVERY_H
|
#ifndef ESPSOMFYRTSDISCOVERY_H
|
||||||
#define ESPSOMFYRTSDISCOVERY_H
|
#define ESPSOMFYRTSDISCOVERY_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginespsomfyrts.h"
|
#include "integrationpluginespsomfyrts.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2024, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINESPSOMFYRTS_H
|
#ifndef INTEGRATIONPLUGINESPSOMFYRTS_H
|
||||||
#define INTEGRATIONPLUGINESPSOMFYRTS_H
|
#define INTEGRATIONPLUGINESPSOMFYRTS_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginespuino.h"
|
#include "integrationpluginespuino.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINESPUINO_H
|
#ifndef INTEGRATIONPLUGINESPUINO_H
|
||||||
#define INTEGRATIONPLUGINESPUINO_H
|
#define INTEGRATIONPLUGINESPUINO_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "evboxport.h"
|
#include "evboxport.h"
|
||||||
|
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2023, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef EVBOXPORT_H
|
#ifndef EVBOXPORT_H
|
||||||
#define EVBOXPORT_H
|
#define EVBOXPORT_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationpluginevbox.h"
|
#include "integrationpluginevbox.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINEVBOX_H
|
#ifndef INTEGRATIONPLUGINEVBOX_H
|
||||||
#define INTEGRATIONPLUGINEVBOX_H
|
#define INTEGRATIONPLUGINEVBOX_H
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#include "integrationplugineverest.h"
|
#include "integrationplugineverest.h"
|
||||||
#include "plugininfo.h"
|
#include "plugininfo.h"
|
||||||
|
|||||||
@ -1,32 +1,26 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||||
*
|
*
|
||||||
* Copyright 2013 - 2025, nymea GmbH
|
* Copyright (C) 2013 - 2024, nymea GmbH
|
||||||
* Contact: contact@nymea.io
|
* Copyright (C) 2024 - 2025, chargebyte austria GmbH
|
||||||
*
|
*
|
||||||
* This file is part of nymea.
|
* This file is part of nymea-plugins.
|
||||||
* This project including source code and documentation is protected by
|
|
||||||
* copyright law, and remains the property of nymea GmbH. All rights, including
|
|
||||||
* reproduction, publication, editing and translation, are reserved. The use of
|
|
||||||
* this project is subject to the terms of a license agreement to be concluded
|
|
||||||
* with nymea GmbH in accordance with the terms of use of nymea GmbH, available
|
|
||||||
* under https://nymea.io/license
|
|
||||||
*
|
*
|
||||||
* GNU Lesser General Public License Usage
|
* nymea-plugins is free software: you can redistribute it and/or modify
|
||||||
* Alternatively, this project may be redistributed and/or modified under the
|
* it under the terms of the GNU General Public License as published by
|
||||||
* terms of the GNU Lesser General Public License as published by the Free
|
* the Free Software Foundation, either version 3 of the License, or
|
||||||
* Software Foundation; version 3. This project is distributed in the hope that
|
* (at your option) any later version.
|
||||||
* it will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
||||||
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
||||||
* Lesser General Public License for more details.
|
|
||||||
*
|
*
|
||||||
* You should have received a copy of the GNU Lesser General Public License
|
* nymea-plugins is distributed in the hope that it will be useful,
|
||||||
* along with this project. If not, see <https://www.gnu.org/licenses/>.
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
*
|
*
|
||||||
* For any further details and any questions please contact us under
|
* You should have received a copy of the GNU General Public License
|
||||||
* contact@nymea.io or see our FAQ/Licensing Information on
|
* along with nymea-plugins. If not, see <https://www.gnu.org/licenses/>.
|
||||||
* https://nymea.io/license/faq
|
|
||||||
*
|
*
|
||||||
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
|
||||||
|
|
||||||
#ifndef INTEGRATIONPLUGINEVEREST_H
|
#ifndef INTEGRATIONPLUGINEVEREST_H
|
||||||
#define INTEGRATIONPLUGINEVEREST_H
|
#define INTEGRATIONPLUGINEVEREST_H
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user