Skip to content

Commit 73552fd

Browse files
committed
official release
1 parent 2b91aba commit 73552fd

File tree

15 files changed

+533
-494
lines changed

15 files changed

+533
-494
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
**/.vscode
2+
**/build
23
examples/RUI3-AT-P2P-ESP32-SLEEP-PIO

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Release Notes
22

3+
## V1.0.1 official release
4+
- Feeling confident it will work
5+
- Updated examples
6+
- Serial for debug output in class initiation is optional, defaults to Serial
7+
38
## V0.0.5 update examples
49
- Remove references to RAKwireless WisBlock modules from the examples
510
- add Adafruit ESP32 Feather to PIO examples

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,18 @@ The library provides a RUI3 class, which allows communication with RUI3 based Wi
6363
## Construct a new RUI3 object
6464
A simplified constructor taking only a Stream ({Software/Hardware}Serial) object.
6565
The serial port should already be initialised when initialising this library.
66-
66+
Serial is used for debug output: host MCU <==> debug console
67+
6768
```cpp
68-
RUI3(Stream &serial1, Stream &serial);
69+
RUI3(Stream &serial1, Stream &serial = Serial);
6970
```
7071
### Parameters:
7172
@param serial1 Serial for communication with RUI3 module: WisDuo <==> host MCU
72-
@param serial Serial for debug: host MCU <==> debug console
73+
@param serial Serial for debug: host MCU <==> debug console -- Defaults to Serial
7374
7475
### Usage:
7576
```cpp
76-
RUI3 wisduo(Serial1, Serial);
77+
RUI3 wisduo(Serial1);
7778
```
7879
7980

examples/RUI3-AT-ABP-PIO/platformio.ini

Lines changed: 17 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,23 +8,28 @@
88
; Please visit documentation for the other options and examples
99
; https://docs.platformio.org/page/projectconf.html
1010

11-
; [env:wiscore_rak11200]
12-
; platform = espressif32
13-
; board = wiscore_rak11200
14-
; framework = arduino
15-
; lib_deps =
16-
; beegee-tokyo/RUI3-Arduino-Library
11+
[env:wiscore_rak11200]
12+
platform = espressif32
13+
board = wiscore_rak11200
14+
framework = arduino
15+
lib_deps =
16+
beegee-tokyo/RUI3-Arduino-Library
17+
build_flags =
18+
-DUSE_WB_IO2=1 ; Required for WisBlock Base Board
19+
-DDEBUG_MODE=1 ; Set to 1 to enable library debug output
1720

1821
; [env:wiscore_rak4631]
1922
; platform = nordicnrf52
2023
; board = wiscore_rak4631
2124
; framework = arduino
2225
; lib_deps =
2326
; beegee-tokyo/RUI3-Arduino-Library
27+
; build_flags =
28+
; -DUSE_WB_IO2=1 ; Required for WisBlock Base Board
2429

25-
[env:featheresp32]
26-
platform = espressif32
27-
board = featheresp32
28-
framework = arduino
29-
lib_deps =
30-
beegee-tokyo/RUI3-Arduino-Library
30+
; [env:featheresp32]
31+
; platform = espressif32
32+
; board = featheresp32
33+
; framework = arduino
34+
; lib_deps =
35+
; beegee-tokyo/RUI3-Arduino-Library

0 commit comments

Comments
 (0)