Skip to content

Commit

Permalink
Update version as 1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
asukiaaa committed Mar 10, 2019
1 parent 8075cc4 commit 9c0623d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ if (someSerial->isSerial_()) {

For Arduino DUE.

```
```c
if (someSerial->isUARTClass()) {
someSerial->println("It is UARTClass");
someSerial->thisUARTClass->println("Direct print to UARTClass");
Expand All @@ -103,7 +103,7 @@ if (someSerial->isUARTClass()) {

For AVR.

```
```c
if (someSerial->isUart()) {
someSerial->println("It is Uart");
someSerial->thisUart->println("Direct print to Uart");
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=SomeSerial
version=1.0.1
version=1.0.2
author=Asuki Kono
maintainer=Asuki Kono
sentence=A library to wrap HardwareSerial, SoftwareSerial or USBAPI Serial_.
Expand Down

0 comments on commit 9c0623d

Please sign in to comment.