Skip to content

jayaras/esp8266-nfc-reader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 

Repository files navigation

esp8266-nfc-reader

Background

This was originally written with inspiration from https://shawnrk.github.io/songblocks/ but without the overhead of a pi. I've since updated this code to run with the homie 2.0 spec homie-esp8266 code and published here.

Compiling

You need the Arduino development environment for this. Plus the PM532 lib from https://github.com/Seeed-Studio/PN532. Apparently the Adafruit flavor of the PM532 lib does not support i2c on esp8266 so we have to jump through a couple hoops to make this go.

Tested and working hardware

Todo

  • Thinking of adding some feedback mechanism such as haptic, neopixel or led options.
  • Need to publish the glue between this code and sonos.
  • come up with some example automations for Home Asssistant for fun.
  • photo/video of the final build (wood enclosure with wood sound blocks).

MQTT Messages after touching and removing a translink.ca Compass card.


homie/legacy-songblock/rfid/uid 04905042763f80
homie/legacy-songblock/rfid/present true
homie/legacy-songblock/rfid/uid (null)
homie/legacy-songblock/rfid/present false
homie/legacy-songblock/rfid/previous_uid 04905042763f80

Sonos Controller

Assign a song to each tag/card/whatever. https://github.com/jayaras/sonos-agent

Home Assistant Exmaples

Binary sensor from a card being present or not.

binary_sensor:
  - platform: mqtt
    state_topic: "homie/rfid-reader/rfid/present"
    payload_on: "true"
    payload_off: "true"
    availability_topic: "homie/rfid-reader/$online"

Unlock your door with a specific uid from a card. (This begs for a proper MQTT RFID Device so you could look up based on a user).

alias: "rfid unlcok front door"
trigger:
  - platform: mqtt
    topic: "homie/rfid-reader/rfid/uid"
    payload: "04905042763f80"
action:
  service: lock.unlock
  data:
    entity_id: lock.front_door_2

Releases

No releases published

Packages

No packages published

Languages