Skip to content

Commit 437f47b

Browse files
Version 0.3.0
1 parent 878e7db commit 437f47b

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

CHANGELOG.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
Version 0.3.0
2+
Interrupts code enhancement. EBF_DIRECT_CALL_FROM_ISR compilation flag allowing direct calls from ISRs.
3+
EBF_Seeed_Monochrome_GROVE_16x2_LCD implementation. LCD based on the AiP31068 I2C driver.
4+
Adding GetValue() API to EBF_Led class. All modules data should be self-contained from now on.
5+
EEPROMs burning programs separated to it's own repo: https://github.com/4project-co-il/PlugAndPlay-EEPROMs
6+
Separation of the Plug-n-Play code to a separate library: https://github.com/4project-co-il/PlugAndPlay
7+
18
Version 0.2.0
29
Adding PnP (Plug-and-Play) logic code
310
Adding several PnP devices support

library.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EventBasedFramework",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"keywords": "",
55
"description": "EBF - Event Based Framework for Arduino",
66
"repository": {
@@ -11,13 +11,12 @@
1111
"platforms": "*",
1212
"build": {
1313
"srcDir": ".",
14-
"srcFilter": "+<*> -<examples> -<test> -<src/PlugAndPlay/EEPROMs>",
14+
"srcFilter": "+<*> -<examples> -<test>",
1515
"libArchive": false,
1616
"flags": [
1717
"-I$PROJECT_INCLUDE_DIR",
1818
"-I./src/Core",
19-
"-I./src/Products",
20-
"-I./src/PlugAndPlay"
19+
"-I./src/Products"
2120
]
2221
},
2322
"dependencies": {

library.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
name=EventBasedFramework
2-
version=0.2.0
2+
version=0.3.0
33
author=4Project
44
maintainer=4Project <info@4project.co.il>
55
sentence=EBF - Event Based Framework for Arduino
66
paragraph=EBF adds easy C++ abstraction layers allowing to program based on the events in the system, creating a code close to the real world programmig, using timers, interrupts, message queues and other techniques found in embedded environments.
77
category=Device Control
88
includes=EBF.h
9+
depends=Servo (>=1.2.0)
910
url=https://github.com/4project-co-il/EBF
1011
architectures=*

0 commit comments

Comments
 (0)