Esp8266 Rc522
Tested ESP8266 with RC522 NFC/RFID Reader
RC522 is NFC/RFID reader, and it can be integrated into ESPHOME
-
esphome configuration
# Example configuration entry http_request: output: - platform: esp8266_pwm pin: 5 id: my_buzzer rtttl: output: my_buzzer gain: 0.1 spi: clk_pin: 14 mosi_pin: 13 miso_pin: 12 rc522_spi: cs_pin: 15 on_tag: then: - http_request.send: method: POST url: !secret nfc_tag_call_url verify_ssl: false headers: Content-Type: application/json json: tag: !lambda return x; - rtttl.play: # rtttl: 'siren:d=8,o=5,b=100:d,e,d,e,d,e,d,e' rtttl: 'two_short:d=4,o=5,b=100:16e6,16e6' binary_sensor: - platform: rc522 uid: !secret my_room_card name: "My Room Card" -
Two separate function






