Skip to content

Commit 6dc3ac0

Browse files
committed
Remove resistor divider from examples and connections
1 parent fdf5221 commit 6dc3ac0

File tree

6 files changed

+10
-15
lines changed

6 files changed

+10
-15
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ A simple library to interface with RDM6300 RFID reader.
1313
* RDM6300 module with matching antenna.
1414
* 125KHz RFID tags.
1515
* Microcontroller (arduino, esp8266, esp32...).
16-
* Jump-Wires (Resistors of 1K and 2K if you are using 3.3V based microcontroller).
1716

1817
![rdm6300_connections](../master/doc/rdm6300_connections.png "rdm6300_connections")
1918

@@ -26,5 +25,5 @@ A simple RFID to serial reciver example can be found at:
2625
* ```bool update()``` - Updates the internal values by reading from the RDM6300, returns true on tag detection, must be called repeatedly!
2726
* ```uint32_t get_tag_id()``` - Returns the last tag id read by ```update```- can be called only once after ```update```.
2827
* ```bool is_tag_near()``` - Returns whether a tag is currently held near the antenna- can be called many times after ```update```.
29-
## enjoy!
28+
## Enjoy!
3029
A.E.TECH

doc/rdm6300_connections.png

81 KB
Loading

examples/esp8266_hardware_uart/esp8266_hardware_uart.ino

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,13 @@
1616
* | GPIO-01 | TX | | This is TXD0, connect it to GPIO-02 |
1717
* | GPIO-02 | D4 | | This is TXD1, connect it to GPIO-01 |
1818
* | GPIO-03 | RX | | Leave it unconnected for flashing |
19-
* | GPIO-13 | D7 | TX | Via voltage divide / level shifter |
20-
* | | VU (5V) | VCC | |
19+
* | GPIO-13 | D7 | TX | TX level is same 3.3V as esp8266 |
20+
* | | VU (5V) | VCC | The rdm6300 must be powered with 5V |
2121
* | GND | GND | GND | |
2222
*
2323
* * GPIO-01 to GPIO-02 is for debug terminal output.
24-
* * You must divide the TX out of the rdm6300 to the 3.3V levels,
25-
* I used the following resistor divider:
26-
* GND--<2K resistor>--GPIO-13=D7--<1K resistor>--TX(rdm6300).
2724
*
28-
* Arad Eizen (https://github.com/arduino12) 08/05/19.
25+
* Arad Eizen (https://github.com/arduino12) 08/05/19, 09/06/19.
2926
*/
3027

3128
#include <rdm6300.h>

examples/read_to_serial/read_to_serial.ino

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@
22
* A simple example to interface with rdm6300 rfid reader.
33
*
44
* Connect the rdm6300 to VCC=5V, GND=GND, TX=any GPIO (this case GPIO-04)
5-
* Note: for ESP* or other 3.3V based microcontroller,
6-
* you must divide the TX out of the rdm6300 to the 3.3V levels,
7-
* I used the following resistor divider:
8-
* GND--<2K resistor>--GPIO_2--<1K resistor>--TX(rdm6300).
5+
* Note that the rdm6300's TX line is 3.3V level,
6+
* so it's save to use with both AVR* and ESP* microcontrollers.
97
*
10-
* Arad Eizen (https://github.com/arduino12) 23/09/18, 08/05/19.
8+
* Arad Eizen (https://github.com/arduino12) 23/09/18, 08/05/19, 09/06/19.
119
*/
10+
1211
#include <rdm6300.h>
1312

1413
#define RDM6300_RX_PIN 4

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.2",
3+
"version": "1.1.3",
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.2
2+
version=1.1.3
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)