I'm using Parallax RFID Read/Write Module - Serial, this datasheet and trying to set module in active mode (LED light goes from GREEN to RED) with python code and then actually read tag. After running testing code, module is still in passive mode (LED stays GREEN)
Connections from reference:
Raspberry PI 4 wiring:
Testing code:
import RPi.GPIO as GPIO
import time
GPIO.setmode(GPIO.BCM)
ENABLE_PIN = 23
SERIAL_PIN = 24
# The reader has an ENABLE pin, which must be LOW to read
GPIO.setup(ENABLE_PIN, GPIO.OUT)
GPIO.setup(SERIAL_PIN, GPIO.IN)
# This just makes a flash of the LED
print('high')
GPIO.output(ENABLE_PIN, GPIO.HIGH)
time.sleep(1)
print('low')
GPIO.output(ENABLE_PIN, GPIO.LOW)
input()
GPIO.cleanup()
Please advice

