diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..84f811b --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,14 @@ +Copyright (C) 2020-2023 Oxan van Leeuwen + +This program 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. + +This program 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 this program. If not, see . diff --git a/components/stream_server/__init__.py b/components/stream_server/__init__.py index 7e01e49..0e16daf 100644 --- a/components/stream_server/__init__.py +++ b/components/stream_server/__init__.py @@ -1,18 +1,3 @@ -# Copyright (C) 2021-2023 Oxan van Leeuwen -# -# This program 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. -# -# This program 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 this program. If not, see . - import esphome.codegen as cg import esphome.config_validation as cv from esphome.components import uart diff --git a/components/stream_server/binary_sensor.py b/components/stream_server/binary_sensor.py index eb0f029..12b43c0 100644 --- a/components/stream_server/binary_sensor.py +++ b/components/stream_server/binary_sensor.py @@ -1,18 +1,3 @@ -# Copyright (C) 2023 Oxan van Leeuwen -# -# This program 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. -# -# This program 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 this program. If not, see . - import esphome.codegen as cg import esphome.config_validation as cv from esphome.components import binary_sensor diff --git a/components/stream_server/sensor.py b/components/stream_server/sensor.py index fc9d8c0..0b6b8a5 100644 --- a/components/stream_server/sensor.py +++ b/components/stream_server/sensor.py @@ -1,18 +1,3 @@ -# Copyright (C) 2023 Oxan van Leeuwen -# -# This program 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. -# -# This program 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 this program. If not, see . - import esphome.codegen as cg import esphome.config_validation as cv from esphome.components import sensor diff --git a/components/stream_server/stream_server.cpp b/components/stream_server/stream_server.cpp index 12d58ef..9e25fc7 100644 --- a/components/stream_server/stream_server.cpp +++ b/components/stream_server/stream_server.cpp @@ -1,19 +1,3 @@ -/* Copyright (C) 2020-2023 Oxan van Leeuwen - * - * This program 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. - * - * This program 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 this program. If not, see . - */ - #include "stream_server.h" #include "esphome/core/helpers.h" diff --git a/components/stream_server/stream_server.h b/components/stream_server/stream_server.h index 94a588e..e657428 100644 --- a/components/stream_server/stream_server.h +++ b/components/stream_server/stream_server.h @@ -1,19 +1,3 @@ -/* Copyright (C) 2020-2023 Oxan van Leeuwen - * - * This program 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. - * - * This program 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 this program. If not, see . - */ - #pragma once #include "esphome/core/component.h"