When I started playing with home automation I purchased this pack of 50 NFC215 Round Cards this are tags that can hold up to 540 bytes of data, which is enough for short messages like web links, personal information sharing, wifi credentials sharing, etc. in this opportunity I wanted to used them as a way to toggle the living room lights.
At first I wanted the NFC tag to be programmed to send a simple UDP message to a specific IP (my home automation server running on a Raspberry Pi 4), but it turns out that the standard for NFC actions that can be programmed is very limited to just open web links, create a new contact on a phone, or add new Wifi credentials. in order make this there are software that allows you to program tons of actions like sending UDP packets, turn on bluetooth, turn on the phone’s flashlight, etc. The only catch is that the reading phone needs to have installed the software that interprets the action, the good thing is that, the software (NFC Tools Pro) does this in a clever way, when adding a custom action it actually creates 2 actions in the NFC tag: one to visit the link of the software google play page for download, and if the phone already have the app, it will just execute the action, so I am ok with this then.
What I ended up doing is sending a POST request to my Raspberry Pi with a unique id that describes the position of this NFC tag, therefore, the actual action of turning on the lights is later decided by the central Raspberryi Pi, the NFC tag only sends the message with it’s ID, this allows me to configure and alter the final action easily without having to re-program the NFC tag.
The POST messgage is later captured by an instance of Node-RED
Which takes the payload and filters the id
(in the case of the sofa the id
would be living_room_nfc_tag_sofa_right_arm
) and assign an action, for now
all the nfc tags that I have around are for toggling the living room lights
group created on Home Assistant, but you can
see how this can be used for other stuff like playing music, turn on the coffee
machine, the air conditioner, drop more food to a pet bowl, send an MQTT
message, or even triggering any linux command.