Merge PR #22: Update license text and add SPDX identifier

This commit is contained in:
jenkins 2025-12-02 10:39:56 +01:00
commit 618858454b
21 changed files with 249 additions and 312 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*.pro.user *.pro.user
.crossbuilder/* .crossbuilder/*
build/

1
COPYING Symbolic link
View File

@ -0,0 +1 @@
LICENSE.GPL3

1
COPYING.LESSER Symbolic link
View File

@ -0,0 +1 @@
LICENSE.LGPL3

View File

@ -1,2 +1,19 @@
Repository for the nymea energy experience plugin. # nymea-experience-plugin-energy
This repository contains the nymea experience plugin that exposes
energy-related functionality to nymea. It provides the manager
implementation, JSON APIs and helper utilities used by the nymea
runtime to collect, log and expose energy data.
Alongside the plugin, the repository ships the reusable `libnymea-energy`
library that provides the abstract energy manager interfaces and helper
types for external plugins.
## License
The nymea experience plugin sources are licensed under the terms of the
GNU General Public License version 3 or (at your option) any later
version. The shared `libnymea-energy` library is licensed under the GNU
Lesser General Public License version 3 or (at your option) any later
version. Refer to the included `LICENSE.GPL3`, `LICENSE.LGPL3` and the
SPDX headers inside the source files for the complete text.

View File

@ -1,12 +1,12 @@
Source: nymea-experience-plugin-energy Source: nymea-experience-plugin-energy
Section: utils Section: utils
Priority: optional Priority: optional
Maintainer: nymea GmbH <developer@nymea.io> Maintainer: chargebyte austria GmbH <contact@nymea.io>
Standards-Version: 4.6.0 Standards-Version: 4.6.0
Homepage: https://nymea.io Homepage: https://nymea.io
Build-Depends: debhelper (>= 9.0.0), Build-Depends: debhelper,
dpkg-dev (>= 1.16.1~), dpkg-dev,
libnymea-dev (>= 0.17), libnymea-dev,
nymea-dev-tools:native, nymea-dev-tools:native,
qt5-qmake, qt5-qmake,
qtbase5-dev, qtbase5-dev,
@ -42,4 +42,3 @@ Depends: ${shlibs:Depends},
${misc:Depends}, ${misc:Depends},
libnymea-energy (= ${binary:Version}), libnymea-energy (= ${binary:Version}),
Description: Library for nymea expergy experience plugins - Development files Description: Library for nymea expergy experience plugins - Development files

View File

@ -1,27 +1,30 @@
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-experience-plugin-energy Upstream-Name: nymea-experience-plugin-energy
Upstream-Contact: nymea GmbH <contact@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: http://www.github.com/nymea/nymea-experience-plugin-energy Download: http://www.github.com/nymea/nymea-experience-plugin-energy
Source: https://github.com/nymea/nymea-experience-plugin-energy.git Source: https://github.com/nymea/nymea-experience-plugin-energy.git
License: GPL-3 License: GPL-3+
On Debian systems, the complete text of the GNU General On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL-3'. Public License can be found in `/usr/share/common-licenses/GPL-3'.
License: LGPL-3 License: LGPL-3+
On Debian systems, the complete text of the GNU Lesser General On Debian systems, the complete text of the GNU Lesser General
Public License can be found in `/usr/share/common-licenses/LGPL-3'. Public License can be found in `/usr/share/common-licenses/LGPL-3'.
Files: debian/* Files: debian/*
License: GPL-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>
Files: plugin/* Files: plugin/*
License: GPL-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>
Files: libnymea-energy/* Files: libnymea-energy/*
License: LGPL-3 License: LGPL-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>

View File

@ -1,7 +1,7 @@
Source: nymea-experience-plugin-energy Source: nymea-experience-plugin-energy
Section: utils Section: utils
Priority: optional Priority: optional
Maintainer: nymea GmbH <developer@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
Build-Depends: debhelper, Build-Depends: debhelper,
@ -21,6 +21,7 @@ Description: nymea experiece plugin for energy related use cases
This nymea experience adds the support energy related use This nymea experience adds the support energy related use
caes to nymea. caes to nymea.
Package: libnymea-energy Package: libnymea-energy
Section: libs Section: libs
Architecture: any Architecture: any
@ -31,6 +32,7 @@ Description: Library for nymea energy experience plugins
This library is used by plugins loaded by the nymea This library is used by plugins loaded by the nymea
energy experience. energy experience.
Package: libnymea-energy-dev Package: libnymea-energy-dev
Section: libdevel Section: libdevel
Architecture: any Architecture: any
@ -39,4 +41,3 @@ Depends: ${shlibs:Depends},
${misc:Depends}, ${misc:Depends},
libnymea-energy (= ${binary:Version}), libnymea-energy (= ${binary:Version}),
Description: Library for nymea expergy experience plugins - Development files Description: Library for nymea expergy experience plugins - Development files

View File

@ -1,30 +1,24 @@
// SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
@ -58,4 +52,3 @@ void EnergyPlugin::initPlugin(EnergyManager *energyManager, ThingManager *thingM
init(); init();
} }

View File

@ -1,30 +1,24 @@
// SPDX-License-Identifier: LGPL-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 libnymea-energy.
* 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 * libnymea-energy is free software: you can redistribute it and/or
* Alternatively, this project may be redistributed and/or modified under the * modify it under the terms of the GNU Lesser General Public License
* terms of the GNU Lesser General Public License as published by the Free * as published by the Free Software Foundation, either version 3
* Software Foundation; version 3. This project is distributed in the hope that * of the License, or (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 * libnymea-energy is distributed in the hope that it will be useful,
* Lesser General Public License for more details. * 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 * You should have received a copy of the GNU Lesser General Public License
* along with this project. If not, see <https://www.gnu.org/licenses/>. * along with libnymea-energy. If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under
* contact@nymea.io or see our FAQ/Licensing Information on
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
@ -353,4 +347,3 @@ void EnergyManagerImpl::logDumpConsumers()
} }
} }

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */

View File

@ -1,30 +1,24 @@
// 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-experience-plugin-energy.
* 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 General Public License Usage * nymea-experience-plugin-energy 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 General Public License as published by the Free Software * the Free Software Foundation, either version 3 of the License, or
* Foundation, GNU version 3. This project is distributed in the hope that it * (at your option) any later version.
* 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-experience-plugin-energy is distributed in the hope that it will be useful,
* 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-experience-plugin-energy. If not, see <https://www.gnu.org/licenses/>.
* https://nymea.io/license/faq
* *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */