1
0

Fixed typo and completed information in Wiring section in README.md

This commit is contained in:
BlueFox 2024-09-15 19:47:55 +00:00
parent 61603f087b
commit 16a927d848

View File

@ -1,6 +1,6 @@
# micropython-rp2-rs485-examples
## Whats this?
## What's this?
This is a small collection of some programs I wrote to test the functionality of
some cheap TTL-UART to RS485 converters, written in [MicroPython](https://micropython.org/)
@ -28,21 +28,27 @@ For the (simple) send and receive programs, theres just to devices with MicroPyt
Just wire two MicroPython devices as shown below (obviously connect different converters to the different microcontrollers ;)
| Converter | Pin on converter | Pin on Pi Pico<sup>1</sup> |
| ----------------------------------------- | -------------------- | --------------------------- |
| TTL-UART to RS485 converter 1 | DI (driver in) | GP0 (UART0 TX) |
| TTL-UART to RS485 converter 1 | RO (receiver out) | GP1 (UART0 RX) |
| TTL-UART to RS485 converter 1 | DE (driver enable) | GP2 (set HIGH/LOW) |
| TTL-UART to RS485 converter 1 | RE (receiver enable) | GP2 (set HIGH/LOW) |
| TTL-UART to RS485 converter 2<sup>2</sup> | DI (driver in) | GP4 (UART1 TX) |
| TTL-UART to RS485 converter 2<sup>2</sup> | RO (receiver out) | GP5 (UART1 RX) |
| TTL-UART to RS485 converter 2<sup>2</sup> | DE (driver enable) | GP3 (set HIGH/LOW) |
| TTL-UART to RS485 converter 2<sup>2</sup> | RE (receiver enable) | GP3 (set HIGH/LOW) |
| Converter | Pin on converter | Pin on Pi Pico<sup>1</sup> |
| ----------------------------------------- | -------------------------------- | --------------------------- |
| TTL-UART to RS485 converter 1 | VCC | 3v3 Out |
| TTL-UART to RS485 converter 1 | GND | GND |
| TTL-UART to RS485 converter 1 | DI (driver in) | GP0 (UART0 TX) |
| TTL-UART to RS485 converter 1 | RO (receiver out) | GP1 (UART0 RX) |
| TTL-UART to RS485 converter 1 | DE<sup>3</sup> (driver enable) | GP2 (set HIGH/LOW) |
| TTL-UART to RS485 converter 1 | RE<sup>3</sup> (receiver enable) | GP2 (set HIGH/LOW) |
| TTL-UART to RS485 converter 2<sup>2</sup> | VCC | 3v3 Out |
| TTL-UART to RS485 converter 2<sup>2</sup> | GND | GND |
| TTL-UART to RS485 converter 2<sup>2</sup> | DI (driver in) | GP4 (UART1 TX) |
| TTL-UART to RS485 converter 2<sup>2</sup> | RO (receiver out) | GP5 (UART1 RX) |
| TTL-UART to RS485 converter 2<sup>2</sup> | DE<sup>3</sup> (driver enable) | GP3 (set HIGH/LOW) |
| TTL-UART to RS485 converter 2<sup>2</sup> | RE<sup>3</sup> (receiver enable) | GP3 (set HIGH/LOW) |
[<sup>1</sup>] as I used the Pico, adjust for your favourite microcontroller (but don't forget also changing the pinout in the programs as well1)
[<sup>2</sup>] only needed for the ping pong example
[<sup>3</sup>] as the driver/receiver enable pins respond at opposite logic levels (receive enable turns on receiver output when LOW, while driver enable enables driver output when set HIGH), they can be shortened together and be controlled by only one pin on our microcontroller
Then, connecting the A+, B- and GND wires of the respective converters together (converter 1 of μC1 to converter 1 of μC2, converter 2 of μC1 to converter 2 of μC2), you've just created a simple RS485 bus! Now upload the scripts to both microcontrollers and try what you want to try!
Example wiring on a breadboard, one Pico backed with WaveShares HAT, the other one connected to two MAX485 breakout boards: