Skip to content

Commit 286e034

Browse files
committed
VSCP framework v1.2.0 integrated and copyright year updated.
1 parent 1b653a4 commit 286e034

File tree

121 files changed

+2056
-121
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

121 files changed

+2056
-121
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.0
2+
3+
- Update to VSCP framework v1.2.0, please see the ![changelog](https://github.com/BlueAndi/vscp-framework/releases/tag/v1.2.0) there.
4+
15
## 1.1.0
26

37
- Update to VSCP framework v1.1.0, please see the ![changelog](https://github.com/BlueAndi/vscp-framework/releases/tag/v1.1.0) there.

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014 - 2020, Andreas Merkle
3+
Copyright (c) 2014 - 2021, Andreas Merkle
44
http://www.blue-andi.de
55
vscp@blue-andi.de
66

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,7 @@ You will find the type defines here:
156156
```
157157
src/framework/events/vscp_evt_alarm.h
158158
src/framework/events/vscp_evt_aol.h
159+
src/framework/events/vscp_evt_configuration.h
159160
src/framework/events/vscp_evt_control.h
160161
src/framework/events/vscp_evt_data.h
161162
src/framework/events/vscp_evt_diagnostic.h

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vscp-arduino",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"keywords": "vscp, arduino-library, vscp-arduino, automation, home automation",
55
"description": "Very Simple Control Procotol (VSCP) Level 1 Library for the arduino IDE.",
66
"repository": {

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=VSCP
2-
version=1.1.0
2+
version=1.2.0
33
author=Andreas Merkle
44
maintainer=Andreas Merkle <vscp@blue-andi.de>
55
sentence=Very Simple Control Protocol L1 framework for all Arduino boards.

mdf_template.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
The MIT License (MIT)
66
7-
Copyright (c) 2014 - 2020, Andreas Merkle
7+
Copyright (c) 2014 - 2021, Andreas Merkle
88
http://www.blue-andi.de
99
vscp@blue-andi.de
1010

src/DigInDebounce.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* The MIT License (MIT)
22
*
3-
* Copyright (c) 2014 - 2020, Andreas Merkle
3+
* Copyright (c) 2014 - 2021, Andreas Merkle
44
* http://www.blue-andi.de
55
* vscp@blue-andi.de
66
*

src/SwTimer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* The MIT License (MIT)
22
*
3-
* Copyright (c) 2014 - 2020, Andreas Merkle
3+
* Copyright (c) 2014 - 2021, Andreas Merkle
44
* http://www.blue-andi.de
55
* vscp@blue-andi.de
66
*

src/VSCP.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* The MIT License (MIT)
22
*
3-
* Copyright (c) 2014 - 2020, Andreas Merkle
3+
* Copyright (c) 2014 - 2021, Andreas Merkle
44
* http://www.blue-andi.de
55
* vscp@blue-andi.de
66
*

src/framework/core/vscp_class_l1.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* The MIT License (MIT)
22
*
3-
* Copyright (c) 2014 - 2020, Andreas Merkle
3+
* Copyright (c) 2014 - 2021, Andreas Merkle
44
* http://www.blue-andi.de
55
* vscp@blue-andi.de
66
*
@@ -122,6 +122,9 @@ extern "C"
122122
/** VSCP level 1 class: IR Remote i/f */
123123
#define VSCP_CLASS_L1_IR 110
124124

125+
/** VSCP level 1 class: Configuration */
126+
#define VSCP_CLASS_L1_CONFIGURATION 120
127+
125128
/** VSCP level 1 class: Position (GPS) */
126129
#define VSCP_CLASS_L1_GNSS 206
127130

0 commit comments

Comments
 (0)