Use Apple Airtag instead of Rfid tag - Printable Version +- Logic Machine Forum (https://forum.logicmachine.net) +-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1) +--- Forum: Scripting (https://forum.logicmachine.net/forumdisplay.php?fid=8) +--- Thread: Use Apple Airtag instead of Rfid tag (/showthread.php?tid=4893) |
Use Apple Airtag instead of Rfid tag - gjniewenhuijse - 27.07.2023 Hello, Now i have a LM with an 1-wire rfid reader RF9092L2A-M12-13.56 to read my 13.56mhz rfid tags to do some stuff (open doors / disable alarms). But now i like to use an Airtag to disable my alarm. Is there a reader thats i can use with my LM? or maybe another solution is to use the BLE option in the airtag? Anyone some advice? RE: Use Apple Airtag instead of Rfid tag - Joep - 28.07.2023 (27.07.2023, 14:05)gjniewenhuijse Wrote: Hello, Google is your best friend https://www.google.com/search?q=use+airtag+to+open+door Use Automation on your iPhone and choose NFC tag to create an automation. Next you can get the info of an url. This url should be the remote protocol from your LM where you can write some value to some group address. Also you can use this automation with Siri. RE: Use Apple Airtag instead of Rfid tag - gjniewenhuijse - 30.07.2023 (28.07.2023, 13:55)Joep Wrote:(27.07.2023, 14:05)gjniewenhuijse Wrote: Hello, I know that way to make an automation in IOS. But thats not what i want. I have an airtag with my keys and like to put that in front of a reader thats in my house. RE: Use Apple Airtag instead of Rfid tag - Novodk - 19.09.2023 (27.07.2023, 14:05)gjniewenhuijse Wrote: Hello, I got the same rfid reader as you do, but nothing happens when I connect it to my Reactor IO v2, am I missing something? RE: Use Apple Airtag instead of Rfid tag - admin - 20.09.2023 The reader itself won't be visible in the device list. Only when an RFID is read a temporary device will appear. The ID of this device will contain the read RFID ID. You can poll the device list via a script. Adjust the polling time as needed. Code: require('ow') RE: Use Apple Airtag instead of Rfid tag - Novodk - 20.09.2023 (20.09.2023, 06:07)admin Wrote: The reader itself won't be visible in the device list. Only when an RFID is read a temporary device will appear. The ID of this device will contain the read RFID ID. Thanks a lot, it got me started. Now i got an ID: 01.CE6371690000 And it shows up in the 1-Wire tab, but when i click it it says: "Configuration for this device family is not implemented yet" How do I use that info in combination with Groupaddresses? RE: Use Apple Airtag instead of Rfid tag - admin - 20.09.2023 You need to create a resident script that executes ow.list() every second or so. Then you can perform required action when a device with a given ID is present or not. RE: Use Apple Airtag instead of Rfid tag - Novodk - 20.09.2023 (20.09.2023, 12:51)admin Wrote: You need to create a resident script that executes ow.list() every second or so. Then you can perform required action when a device with a given ID is present or not. A bit out of my comfort zone Do you have any example code, in that direction to get me started? RE: Use Apple Airtag instead of Rfid tag - RomansP - 22.09.2023 (20.09.2023, 15:03)Novodk Wrote:(20.09.2023, 12:51)admin Wrote: You need to create a resident script that executes ow.list() every second or so. Then you can perform required action when a device with a given ID is present or not. Hello Novodk. This is resident script for you. Code: require('ow') RE: Use Apple Airtag instead of Rfid tag - Novodk - 22.09.2023 (22.09.2023, 06:31)RomansP Wrote:(20.09.2023, 15:03)Novodk Wrote:(20.09.2023, 12:51)admin Wrote: You need to create a resident script that executes ow.list() every second or so. Then you can perform required action when a device with a given ID is present or not. Thank you RomansP Is it correct that the script adds the rfid tag ID to a table and after a short time it removes it again? If that is the case, how do I use the information from that table? RE: Use Apple Airtag instead of Rfid tag - RomansP - 25.09.2023 You need to create a group objects that controls your door lock (the group name is 'open' in this example), then add the id (the variable open_lock is for this purposes), then each time you will scan the device it will opens the door. In the same style you can add more different id for different group objects. (After changes do not forget to disable/enable the resident script) Code: require('ow') RE: Use Apple Airtag instead of Rfid tag - gjniewenhuijse - 25.09.2023 please don't steal my topic The original question: Hello, Now i have a LM with an 1-wire rfid reader RF9092L2A-M12-13.56 to read my 13.56mhz rfid tags to do some stuff (open doors / disable alarms). But now i like to use an Airtag to disable my alarm. Is there a reader thats i can use with my LM? or maybe another solution is to use the BLE option in the airtag? Anyone some advice? RE: Use Apple Airtag instead of Rfid tag - admin - 25.09.2023 AirTags have Bluetooth but the address changes constantly for privacy reasons so it's not possible to use this way. There's another solution but it requires having a Mac constantly on to proxy data: https://github.com/MartinPham/FindMySync RE: Use Apple Airtag instead of Rfid tag - Erwin van der Zwart - 27.09.2023 Do we have a LUA function to calculate the MAC when having the IRK (identity resolving key)? |