Skip to content

Commit 54c31c8

Browse files
committed
update library.json
1 parent c0b83c3 commit 54c31c8

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

AsyncAnalog.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: AsyncAnalog.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.1.1
4+
// VERSION: 0.1.2
55
// DATE: 2018-09-05
66
// PURPOSE: async version of analogRead, prevent blocking wait
77
//
@@ -11,6 +11,7 @@
1111
// HISTORY:
1212
// 0.1.0 2018-09-05 initial version, based upon analogRead()
1313
// 0.1.1 2020-03-26 minor refactor
14+
// 0.1.2 2020-05-27 update library.json
1415
//
1516

1617
#include "AsyncAnalog.h"

AsyncAnalog.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
//
33
// FILE: AsyncAnalog.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.1.1
5+
// VERSION: 0.1.2
66
// DATE: 2018-09-05
77
// PURPOSE: async version of analogRead
88
// URL: https://github.com/RobTillaart/AsyncAnalog
99
//
1010

1111
#if !defined(ARDUINO_ARCH_AVR)
12-
#error “AsyncAnalog library 0.1.1 only supports boards with an AVR processor .”
12+
#error “AsyncAnalog library 0.1.2 only supports boards with an AVR processor .”
1313
#endif
1414
// (ARDUINO_ARCH_SAM) future
1515

@@ -18,7 +18,7 @@
1818
#include "wiring_private.h"
1919
#include "pins_arduino.h"
2020

21-
#define ASYNCANALOG_LIB_VERSION "0.1.1"
21+
#define ASYNCANALOG_LIB_VERSION "0.1.2"
2222

2323
class AsyncAnalog
2424
{

library.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,7 @@
1515
"type": "git",
1616
"url": "https://github.com/RobTillaart/AsyncAnalog.git"
1717
},
18-
"version":"0.1.1",
18+
"version":"0.1.2",
1919
"frameworks": "arduino",
20-
"platforms": "*",
21-
"export": {
22-
"include": "AsyncAnalog"
23-
}
20+
"platforms": "*"
2421
}

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncAnalog
2-
version=0.1.1
2+
version=0.1.2
33
author=Rob Tillaart <rob.tillaart@gmail.com>
44
maintainer=Rob Tillaart <rob.tillaart@gmail.com>
55
sentence=Arduino Library for async reading of an analog pin

0 commit comments

Comments
 (0)