From 79e33d7d8cada7136eb3448e7dd46344541f21ca Mon Sep 17 00:00:00 2001 From: Kirk Benell Date: Wed, 13 Nov 2024 16:54:55 -0700 Subject: [PATCH] moved to an MIT license --- CMakeLists.txt | 5 +++++ LICENSE.md | 27 +++++++++++++++++++++++++ flux_sdk_import.cmake | 5 +++++ fuse_id/dl_build_conf.py | 6 +++++- fuse_id/dl_fuseid.py | 9 ++++----- fuse_id/sfe_dl_fuseid/__init__.py | 6 +++++- fuse_id/sfe_dl_fuseid/_dl_fuseid_.conf | 9 ++++----- fuse_id/sfe_dl_fuseid/dl_fuseid.py | 10 ++++----- fuse_id/sfe_dl_fuseid/dl_log.py | 10 ++++----- fuse_id/sfe_dl_fuseid/dl_prefs.py | 10 ++++----- fuse_id/sfe_dl_fuseid/dl_version.py | 10 ++++----- sfeDataLoggerIoT/sfeDLBoard.h | 8 +++----- sfeDataLoggerIoT/sfeDLButton.cpp | 8 +++----- sfeDataLoggerIoT/sfeDLButton.h | 8 +++----- sfeDataLoggerIoT/sfeDLCommands.h | 8 +++----- sfeDataLoggerIoT/sfeDLDisplay.h | 8 +++----- sfeDataLoggerIoT/sfeDLGrBattery.h | 8 +++----- sfeDataLoggerIoT/sfeDLGrWiFi.h | 8 +++----- sfeDataLoggerIoT/sfeDLGraphx.h | 8 +++----- sfeDataLoggerIoT/sfeDLLed.cpp | 8 +++----- sfeDataLoggerIoT/sfeDLLed.h | 8 +++----- sfeDataLoggerIoT/sfeDLMode.cpp | 8 +++----- sfeDataLoggerIoT/sfeDLMode.h | 8 +++----- sfeDataLoggerIoT/sfeDLSystemOp.h | 8 +++----- sfeDataLoggerIoT/sfeDLVersion.h | 8 +++----- sfeDataLoggerIoT/sfeDLWebServer.cpp | 8 +++----- sfeDataLoggerIoT/sfeDLWebServer.h | 8 +++----- sfeDataLoggerIoT/sfeDataLogger.cpp | 8 +++----- sfeDataLoggerIoT/sfeDataLogger.h | 12 +++++------ sfeDataLoggerIoT/sfeDataLoggerAbout.cpp | 8 +++----- sfeDataLoggerIoT/sfeDataLoggerIoT.ino | 8 +++----- sfeDataLoggerIoT/sfeDataLoggerProps.cpp | 8 +++----- sfeDataLoggerIoT/sfeDataLoggerSetup.cpp | 8 +++----- 33 files changed, 143 insertions(+), 144 deletions(-) create mode 100644 LICENSE.md diff --git a/CMakeLists.txt b/CMakeLists.txt index 26b864f..ef06194 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,3 +1,8 @@ +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# cmake_minimum_required(VERSION 3.13) # set project name - setting language to NONE disables the default compiler checks diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..7edbb5f --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,27 @@ +SparkFun Data Logger License Information +============================ + +Code +-------- + +MIT License + +Copyright (c) 2022-24 SparkFun Electronics + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/flux_sdk_import.cmake b/flux_sdk_import.cmake index 252cad1..a53d9f7 100644 --- a/flux_sdk_import.cmake +++ b/flux_sdk_import.cmake @@ -1,3 +1,8 @@ +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # ################################################################################################## # include/import file for the flux-sdk cmake system # ################################################################################################## diff --git a/fuse_id/dl_build_conf.py b/fuse_id/dl_build_conf.py index 56bf7ad..fb33cd7 100755 --- a/fuse_id/dl_build_conf.py +++ b/fuse_id/dl_build_conf.py @@ -1,5 +1,9 @@ #!/usr/bin/env python - +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# import os import sys import datetime diff --git a/fuse_id/dl_fuseid.py b/fuse_id/dl_fuseid.py index 0e6bc26..b27e1ce 100755 --- a/fuse_id/dl_fuseid.py +++ b/fuse_id/dl_fuseid.py @@ -2,11 +2,10 @@ #-------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT # #-------------------------------------------------------------------------------- diff --git a/fuse_id/sfe_dl_fuseid/__init__.py b/fuse_id/sfe_dl_fuseid/__init__.py index ccb9704..853fd3b 100644 --- a/fuse_id/sfe_dl_fuseid/__init__.py +++ b/fuse_id/sfe_dl_fuseid/__init__.py @@ -1,5 +1,9 @@ - +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # just import the entry point method from .dl_fuseid import dl_fuseid diff --git a/fuse_id/sfe_dl_fuseid/_dl_fuseid_.conf b/fuse_id/sfe_dl_fuseid/_dl_fuseid_.conf index 6e73346..fecba69 100644 --- a/fuse_id/sfe_dl_fuseid/_dl_fuseid_.conf +++ b/fuse_id/sfe_dl_fuseid/_dl_fuseid_.conf @@ -1,10 +1,9 @@ #-------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT # #-------------------------------------------------------------------------------- diff --git a/fuse_id/sfe_dl_fuseid/dl_fuseid.py b/fuse_id/sfe_dl_fuseid/dl_fuseid.py index 635ab5c..405aa7c 100644 --- a/fuse_id/sfe_dl_fuseid/dl_fuseid.py +++ b/fuse_id/sfe_dl_fuseid/dl_fuseid.py @@ -2,11 +2,11 @@ # #--------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # #--------------------------------------------------------------------------------- # diff --git a/fuse_id/sfe_dl_fuseid/dl_log.py b/fuse_id/sfe_dl_fuseid/dl_log.py index a5bf13b..fffd56e 100644 --- a/fuse_id/sfe_dl_fuseid/dl_log.py +++ b/fuse_id/sfe_dl_fuseid/dl_log.py @@ -1,10 +1,10 @@ #-------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # #-------------------------------------------------------------------------------- diff --git a/fuse_id/sfe_dl_fuseid/dl_prefs.py b/fuse_id/sfe_dl_fuseid/dl_prefs.py index c84d3b2..7b57874 100644 --- a/fuse_id/sfe_dl_fuseid/dl_prefs.py +++ b/fuse_id/sfe_dl_fuseid/dl_prefs.py @@ -2,11 +2,11 @@ #-------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # #-------------------------------------------------------------------------------- diff --git a/fuse_id/sfe_dl_fuseid/dl_version.py b/fuse_id/sfe_dl_fuseid/dl_version.py index f7d8592..adf4120 100644 --- a/fuse_id/sfe_dl_fuseid/dl_version.py +++ b/fuse_id/sfe_dl_fuseid/dl_version.py @@ -2,11 +2,11 @@ #-------------------------------------------------------------------------------- # -# Copyright (c) 2022-2023, SparkFun Electronics Inc. All rights reserved. -# This software includes information which is proprietary to and a -# trade secret of SparkFun Electronics Inc. It is not to be disclosed -# to anyone outside of this organization. Reproduction by any means -# whatsoever is prohibited without express written permission. +# +# Copyright (c) 2022-2024, SparkFun Electronics Inc. +# +# SPDX-License-Identifier: MIT +# # #-------------------------------------------------------------------------------- VERSION = "0.5.0" diff --git a/sfeDataLoggerIoT/sfeDLBoard.h b/sfeDataLoggerIoT/sfeDLBoard.h index 287e90c..167c047 100644 --- a/sfeDataLoggerIoT/sfeDLBoard.h +++ b/sfeDataLoggerIoT/sfeDLBoard.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLButton.cpp b/sfeDataLoggerIoT/sfeDLButton.cpp index e018344..e656624 100644 --- a/sfeDataLoggerIoT/sfeDLButton.cpp +++ b/sfeDataLoggerIoT/sfeDLButton.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLButton.h b/sfeDataLoggerIoT/sfeDLButton.h index 92bf22a..86d5c33 100644 --- a/sfeDataLoggerIoT/sfeDLButton.h +++ b/sfeDataLoggerIoT/sfeDLButton.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLCommands.h b/sfeDataLoggerIoT/sfeDLCommands.h index df5e9ba..d789543 100644 --- a/sfeDataLoggerIoT/sfeDLCommands.h +++ b/sfeDataLoggerIoT/sfeDLCommands.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLDisplay.h b/sfeDataLoggerIoT/sfeDLDisplay.h index e920649..50e2ec1 100644 --- a/sfeDataLoggerIoT/sfeDLDisplay.h +++ b/sfeDataLoggerIoT/sfeDLDisplay.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLGrBattery.h b/sfeDataLoggerIoT/sfeDLGrBattery.h index 5515602..2053bf2 100644 --- a/sfeDataLoggerIoT/sfeDLGrBattery.h +++ b/sfeDataLoggerIoT/sfeDLGrBattery.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLGrWiFi.h b/sfeDataLoggerIoT/sfeDLGrWiFi.h index 098b768..e78ee7c 100644 --- a/sfeDataLoggerIoT/sfeDLGrWiFi.h +++ b/sfeDataLoggerIoT/sfeDLGrWiFi.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLGraphx.h b/sfeDataLoggerIoT/sfeDLGraphx.h index 7b1a593..79114c6 100644 --- a/sfeDataLoggerIoT/sfeDLGraphx.h +++ b/sfeDataLoggerIoT/sfeDLGraphx.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLLed.cpp b/sfeDataLoggerIoT/sfeDLLed.cpp index f800aa4..3d7ee76 100644 --- a/sfeDataLoggerIoT/sfeDLLed.cpp +++ b/sfeDataLoggerIoT/sfeDLLed.cpp @@ -2,11 +2,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLLed.h b/sfeDataLoggerIoT/sfeDLLed.h index a17ae9c..bfae90e 100644 --- a/sfeDataLoggerIoT/sfeDLLed.h +++ b/sfeDataLoggerIoT/sfeDLLed.h @@ -2,11 +2,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLMode.cpp b/sfeDataLoggerIoT/sfeDLMode.cpp index ad87f97..c4acadf 100644 --- a/sfeDataLoggerIoT/sfeDLMode.cpp +++ b/sfeDataLoggerIoT/sfeDLMode.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLMode.h b/sfeDataLoggerIoT/sfeDLMode.h index b050992..96accee 100644 --- a/sfeDataLoggerIoT/sfeDLMode.h +++ b/sfeDataLoggerIoT/sfeDLMode.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLSystemOp.h b/sfeDataLoggerIoT/sfeDLSystemOp.h index 77117c8..d317ca4 100644 --- a/sfeDataLoggerIoT/sfeDLSystemOp.h +++ b/sfeDataLoggerIoT/sfeDLSystemOp.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLVersion.h b/sfeDataLoggerIoT/sfeDLVersion.h index 590c44f..c31d212 100644 --- a/sfeDataLoggerIoT/sfeDLVersion.h +++ b/sfeDataLoggerIoT/sfeDLVersion.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLWebServer.cpp b/sfeDataLoggerIoT/sfeDLWebServer.cpp index 0424e8e..a797f7c 100644 --- a/sfeDataLoggerIoT/sfeDLWebServer.cpp +++ b/sfeDataLoggerIoT/sfeDLWebServer.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDLWebServer.h b/sfeDataLoggerIoT/sfeDLWebServer.h index b9a3e9f..6bff626 100644 --- a/sfeDataLoggerIoT/sfeDLWebServer.h +++ b/sfeDataLoggerIoT/sfeDLWebServer.h @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDataLogger.cpp b/sfeDataLoggerIoT/sfeDataLogger.cpp index 2a60d45..f011cce 100644 --- a/sfeDataLoggerIoT/sfeDataLogger.cpp +++ b/sfeDataLoggerIoT/sfeDataLogger.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDataLogger.h b/sfeDataLoggerIoT/sfeDataLogger.h index 79239c1..61a7d41 100644 --- a/sfeDataLoggerIoT/sfeDataLogger.h +++ b/sfeDataLoggerIoT/sfeDataLogger.h @@ -1,17 +1,15 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ /* - * Spark Framework demo - logging + * SparkFun Data Logger Application - main header file * */ #pragma once @@ -69,7 +67,7 @@ #include // OLED -//#include +// #include #include "sfeDLButton.h" #include "sfeDLWebServer.h" diff --git a/sfeDataLoggerIoT/sfeDataLoggerAbout.cpp b/sfeDataLoggerIoT/sfeDataLoggerAbout.cpp index d941fd1..53710a6 100644 --- a/sfeDataLoggerIoT/sfeDataLoggerAbout.cpp +++ b/sfeDataLoggerIoT/sfeDataLoggerAbout.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDataLoggerIoT.ino b/sfeDataLoggerIoT/sfeDataLoggerIoT.ino index 7ccbcd9..155bd5d 100644 --- a/sfeDataLoggerIoT/sfeDataLoggerIoT.ino +++ b/sfeDataLoggerIoT/sfeDataLoggerIoT.ino @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDataLoggerProps.cpp b/sfeDataLoggerIoT/sfeDataLoggerProps.cpp index 793c563..b7dec12 100644 --- a/sfeDataLoggerIoT/sfeDataLoggerProps.cpp +++ b/sfeDataLoggerIoT/sfeDataLoggerProps.cpp @@ -1,11 +1,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */ diff --git a/sfeDataLoggerIoT/sfeDataLoggerSetup.cpp b/sfeDataLoggerIoT/sfeDataLoggerSetup.cpp index 2409812..6776ad9 100644 --- a/sfeDataLoggerIoT/sfeDataLoggerSetup.cpp +++ b/sfeDataLoggerIoT/sfeDataLoggerSetup.cpp @@ -2,11 +2,9 @@ /* *--------------------------------------------------------------------------------- * - * Copyright (c) 2022-2024, SparkFun Electronics Inc. All rights reserved. - * This software includes information which is proprietary to and a - * trade secret of SparkFun Electronics Inc. It is not to be disclosed - * to anyone outside of this organization. Reproduction by any means - * whatsoever is prohibited without express written permission. + * Copyright (c) 2022-2024, SparkFun Electronics Inc. + * + * SPDX-License-Identifier: MIT * *--------------------------------------------------------------------------------- */