Skip to content

Commit

Permalink
Support all architectures, add LICENSE file, update license & copyrig…
Browse files Browse the repository at this point in the history
…ht notices, bump version
  • Loading branch information
alextaujenis committed Jun 8, 2020
1 parent 7a903a2 commit 28abbc7
Show file tree
Hide file tree
Showing 8 changed files with 35 additions and 19 deletions.
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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).
Copyright (c) 2015 Alex Taujenis - MIT License
5 changes: 2 additions & 3 deletions examples/basic_serial_protocol/basic_serial_protocol.ino
Original file line number Diff line number Diff line change
@@ -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 <RBD_SerialManager.h> // https://github.com/alextaujenis/RBD_SerialManager

Expand Down
5 changes: 2 additions & 3 deletions examples/led_serial_protocol/led_serial_protocol.ino
Original file line number Diff line number Diff line change
@@ -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 <RBD_Timer.h> // https://github.com/alextaujenis/RBD_Timer
#include <RBD_Light.h> // https://github.com/alextaujenis/RBD_Light
Expand Down
5 changes: 2 additions & 3 deletions examples/servo_serial_protocol/servo_serial_protocol.ino
Original file line number Diff line number Diff line change
@@ -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 <RBD_Servo.h> // https://github.com/alextaujenis/RBD_Servo
#include <RBD_SerialManager.h> // https://github.com/alextaujenis/RBD_SerialManager
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=RBD_SerialManager
version=1.0.0-alpha.3
version=1.0.0
author=Alex Taujenis <[email protected]>
maintainer=Alex Taujenis <[email protected]>
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
architectures=*
5 changes: 2 additions & 3 deletions src/RBD_SerialManager.cpp
Original file line number Diff line number Diff line change
@@ -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 <Arduino.h>
#include <RBD_SerialManager.h> // https://github.com/alextaujenis/RBD_SerialManager
Expand Down
5 changes: 2 additions & 3 deletions src/RBD_SerialManager.h
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 28abbc7

Please sign in to comment.