Skip to content

Commit 6e4028c

Browse files
committed
Update README.md
1 parent 97941f8 commit 6e4028c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A simple library to interface with RDM6300 RFID reader.
66
* Using a single configurable GPIO pin.
77
* Can tell if the tag is still near the antenna.
88
* Both hardware and software uart (serial) support on esp8266.
9-
* Both SoftwareSerial and AltSoftSerial support.
9+
* Both SoftwareSerial and [AltSoftSerial](https://github.com/PaulStoffregen/AltSoftSerial) support.
1010

1111
## Getting Started
1212

@@ -18,11 +18,11 @@ A simple library to interface with RDM6300 RFID reader.
1818
![rdm6300_connections](../master/doc/rdm6300_connections.png "rdm6300_connections")
1919

2020
### Software
21-
A simple RFID to serial reciver example can be found at:
21+
A simple RFID tag reader with textual serial output:
2222
[```examples/read_to_serial/read_to_serial.ino```](examples/read_to_serial/read_to_serial.ino)
2323

2424
#### API
25-
* ```void begin(Stream \*stream)``` - Initialize the object to use the given stream to read from the RDM6300.
25+
* ```void begin(Stream *stream)``` - Initialize the object to use the given stream to read from the RDM6300.
2626
* ```void begin(int rxPin, uint8_t uart_nr=1)``` - Initialize the object to use the given GPIO pin as RX from the RDM6300.
2727
* ```bool update()``` - Updates the internal values by reading from the RDM6300, returns true on tag detection, must be called repeatedly!
2828
* ```uint32_t get_tag_id()``` - Returns the last tag id read by ```update```- can be called only once after ```update```.

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rdm6300",
3-
"version": "1.1.5",
3+
"version": "1.1.6",
44
"keywords": "rdm6300, rfid",
55
"description": "A simple library to interface with rdm6300 rfid reader.",
66
"repository":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Rdm6300
2-
version=1.1.5
2+
version=1.1.6
33
author=Arad Eizen
44
maintainer=Arad Eizen <https://github.com/arduino12>
55
sentence=A simple library to interface with rdm6300 rfid reader.

0 commit comments

Comments
 (0)