From 28abbc7602bead007a6ab850d3e21d048d2ad5b4 Mon Sep 17 00:00:00 2001 From: Alex Taujenis Date: Mon, 8 Jun 2020 13:59:46 -0600 Subject: [PATCH] Support all architectures, add LICENSE file, update license & copyright notices, bump version --- LICENSE | 21 +++++++++++++++++++ README.md | 4 ++-- .../basic_serial_protocol.ino | 5 ++--- .../led_serial_protocol.ino | 5 ++--- .../servo_serial_protocol.ino | 5 ++--- library.properties | 4 ++-- src/RBD_SerialManager.cpp | 5 ++--- src/RBD_SerialManager.h | 5 ++--- 8 files changed, 35 insertions(+), 19 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7ededbc --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2015 Alex Taujenis + +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/README.md b/README.md index 467e291..9db7691 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Arduino Serial Manager Library v1.0.0-alpha.3 +# Arduino Serial Manager Library v1.0.0 A simple interface for serial communication. * [Documentation](http://robotsbigdata.com/docs-arduino-serial-manager.html) @@ -9,4 +9,4 @@ A simple interface for serial communication. \**Please include your Arduino make/model and IDE version when reporting an issue with this library.* # License -This code is available under the [MIT License](http://opensource.org/licenses/mit-license.php). \ No newline at end of file +Copyright (c) 2015 Alex Taujenis - MIT License diff --git a/examples/basic_serial_protocol/basic_serial_protocol.ino b/examples/basic_serial_protocol/basic_serial_protocol.ino index 71c02ab..c1ee331 100644 --- a/examples/basic_serial_protocol/basic_serial_protocol.ino +++ b/examples/basic_serial_protocol/basic_serial_protocol.ino @@ -1,7 +1,6 @@ -// Arduino RBD Serial Manager Library v1.0.0-alpha.3 Example - Quickly define and consume an event-based serial protocol. +// Arduino RBD Serial Manager Library v1.0.0 Example - Quickly define and consume an event-based serial protocol. // https://github.com/alextaujenis/RBD_SerialManager -// Copyright 2016 Alex Taujenis -// MIT License +// Copyright (c) 2015 Alex Taujenis - MIT License #include // https://github.com/alextaujenis/RBD_SerialManager diff --git a/examples/led_serial_protocol/led_serial_protocol.ino b/examples/led_serial_protocol/led_serial_protocol.ino index 9018022..a3021ba 100644 --- a/examples/led_serial_protocol/led_serial_protocol.ino +++ b/examples/led_serial_protocol/led_serial_protocol.ino @@ -1,7 +1,6 @@ -// Arduino RBD Serial Manager Library v1.0.0-alpha.3 Example - Control the built-in Arduino led with serial commands: on off pwm,255 +// Arduino RBD Serial Manager Library v1.0.0 Example - Control the built-in Arduino led with serial commands: on off pwm,255 // https://github.com/alextaujenis/RBD_SerialManager -// Copyright 2016 Alex Taujenis -// MIT License +// Copyright (c) 2015 Alex Taujenis - MIT License #include // https://github.com/alextaujenis/RBD_Timer #include // https://github.com/alextaujenis/RBD_Light diff --git a/examples/servo_serial_protocol/servo_serial_protocol.ino b/examples/servo_serial_protocol/servo_serial_protocol.ino index b91ec8c..61d17fa 100644 --- a/examples/servo_serial_protocol/servo_serial_protocol.ino +++ b/examples/servo_serial_protocol/servo_serial_protocol.ino @@ -1,7 +1,6 @@ -// Arduino RBD Serial Manager Library v1.0.0-alpha.3 Example - Control the rotation of a servo with serial commands: up down move,90 +// Arduino RBD Serial Manager Library v1.0.0 Example - Control the rotation of a servo with serial commands: up down move,90 // https://github.com/alextaujenis/RBD_SerialManager -// Copyright 2016 Alex Taujenis -// MIT License +// Copyright (c) 2015 Alex Taujenis - MIT License #include // https://github.com/alextaujenis/RBD_Servo #include // https://github.com/alextaujenis/RBD_SerialManager diff --git a/library.properties b/library.properties index 6a90744..9f53b65 100644 --- a/library.properties +++ b/library.properties @@ -1,9 +1,9 @@ name=RBD_SerialManager -version=1.0.0-alpha.3 +version=1.0.0 author=Alex Taujenis maintainer=Alex Taujenis sentence=A simple interface for serial communication. paragraph=A simple interface for serial communication. category=Communication url=https://github.com/alextaujenis/RBD_SerialManager -architectures=avr \ No newline at end of file +architectures=* diff --git a/src/RBD_SerialManager.cpp b/src/RBD_SerialManager.cpp index 2b6e77e..9c884c3 100644 --- a/src/RBD_SerialManager.cpp +++ b/src/RBD_SerialManager.cpp @@ -1,7 +1,6 @@ -// Arduino RBD Serial Manager Library v1.0.0-alpha.3 - A simple interface for serial communication. +// Arduino RBD Serial Manager Library v1.0.0 - A simple interface for serial communication. // https://github.com/alextaujenis/RBD_SerialManager -// Copyright 2016 Alex Taujenis -// MIT License +// Copyright (c) 2015 Alex Taujenis - MIT License #include #include // https://github.com/alextaujenis/RBD_SerialManager diff --git a/src/RBD_SerialManager.h b/src/RBD_SerialManager.h index 0056f31..1fd9089 100644 --- a/src/RBD_SerialManager.h +++ b/src/RBD_SerialManager.h @@ -1,7 +1,6 @@ -// Arduino RBD Serial Manager Library v1.0.0-alpha.3 - A simple interface for serial communication. +// Arduino RBD Serial Manager Library v1.0.0 - A simple interface for serial communication. // https://github.com/alextaujenis/RBD_SerialManager -// Copyright 2016 Alex Taujenis -// MIT License +// Copyright (c) 2015 Alex Taujenis - MIT License #ifndef RBD_SERIAL_MANAGER #define RBD_SERIAL_MANAGER