Skip to content

Commit d4f5b67

Browse files
committed
Clarify license
Fixes #6
1 parent 8d03ca1 commit d4f5b67

File tree

9 files changed

+68
-58
lines changed

9 files changed

+68
-58
lines changed

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2015 Jon Black
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

MenuSystem.cpp

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/*
2-
MenuSystem.h - Library for creating menu structures.
3-
Created by Jon Black, August 8th 2011.
4-
Released into the public domain.
5-
6-
License: LGPL 3
7-
*/
2+
* Copyright (c) 2015 arduino-menusystem
3+
* Licensed under the MIT license (see LICENSE)
4+
*/
85

96
#include "MenuSystem.h"
107

MenuSystem.h

+3-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
/*
2-
MenuSystem.h - Library for creating menu structures.
3-
Created by Jon Black, August 8th 2011.
4-
Released into the public domain.
5-
6-
License: LGPL 3
7-
*/
2+
* Copyright (c) 2015 arduino-menusystem
3+
* Licensed under the MIT license (see LICENSE)
4+
*/
85

96
#ifndef MENUSYSTEM_H
107
#define MENUSYSTEM_H

examples/current_item/current_item.ino

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
/*
2-
current_item.ino - Example code using the menu system library.
3-
4-
This example shows only the current menu item.
5-
6-
Created by Jon Black, May 25th 2012.
7-
Released into the public domain.
8-
9-
License: GPL 3
10-
*/
2+
* current_item.ino - Example code using the menu system library.
3+
*
4+
* This example shows only the current menu item.
5+
*
6+
* Copyright (c) 2015 arduino-menusystem
7+
* Licensed under the MIT license (see LICENSE)
8+
*/
119

1210
#include <MenuSystem.h>
1311

examples/current_menu/current_menu.ino

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
/*
2-
current_menu.ino - Example code using the menu system library.
3-
4-
This example shows all items in the current menu.
5-
6-
Created by Jon Black, May 25th 2012.
7-
Released into the public domain.
8-
9-
License: GPL 3
10-
*/
2+
* current_menu.ino - Example code using the menu system library.
3+
*
4+
* This example shows all items in the current menu.
5+
*
6+
* Copyright (c) 2015 arduino-menusystem
7+
* Licensed under the MIT license (see LICENSE)
8+
*/
119

1210
#include <MenuSystem.h>
1311

examples/lcd_advanced_nav/lcd_advanced_nav.ino

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
LCDAdvancedNav.ino - Example code using the menu system library
3-
and a lcd 16x2 display (controled over serial).
4-
5-
Created by Niesteszeck, Dec 8th 2013.
6-
Released into the public domain.
7-
8-
License: GPL 3
2+
* lcd_advanced_nav.ino - Example code using the menu system library
3+
*
4+
* This example shows using the menu system with a 16x2 LCD display
5+
* (controled over serial).
6+
*
7+
* Copyright (c) 2015 arduino-menusystem
8+
* Licensed under the MIT license (see LICENSE)
99
*/
1010

1111
#include <MenuSystem.h>

examples/lcd_nav/lcd_nav.ino

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
LCDNav.ino - Example code using the menu system library
3-
and a lcd 16x2 display (controled over serial).
4-
5-
Created by Niesteszeck, Dec 1th 2013.
6-
Released into the public domain.
7-
8-
License: GPL 3
2+
* lcd_nav.ino - Example code using the menu system library
3+
*
4+
* This example shows using the menu system with a 16x2 LCD display
5+
* (controled over serial).
6+
*
7+
* Copyright (c) 2015 arduino-menusystem
8+
* Licensed under the MIT license (see LICENSE)
99
*/
1010

1111
#include <MenuSystem.h>

examples/lcd_nav_keypad/lcd_nav_keypad.ino

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
2-
LCDNav.ino - Example code using the menu system library
3-
and a lcd 16x2 display (controled over serial).
4-
5-
Created by Niesteszeck, Dec 1th 2013.
6-
Released into the public domain.
7-
8-
License: GPL 3
2+
* lcd_nav_keypad.ino - Example code using the menu system library
3+
*
4+
* This example shows using the menu system with a 16x2 LCD display and keypad
5+
* (controled over serial).
6+
*
7+
* Copyright (c) 2015 arduino-menusystem
8+
* Licensed under the MIT license (see LICENSE)
99
*/
1010

1111
#include <MenuSystem.h>

examples/serial_nav/serial_nav.ino

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
/*
2-
SerialNav.ino - Example code using the menu system library
3-
that use serial to display the menu.
4-
5-
Created by Niesteszeck, Dec 1th 2013.
6-
Released into the public domain.
7-
8-
License: GPL 3
2+
* serial_nav.ino - Example code using the menu system library
3+
*
4+
* This example shows the menu system being controlled over the serial port.
5+
*
6+
* Copyright (c) 2015 arduino-menusystem
7+
* Licensed under the MIT license (see LICENSE)
98
*/
109

1110
#include <MenuSystem.h>

0 commit comments

Comments
 (0)