blob: 68e2a0f011e28f20a7264dc04f4475dcbce8fb00 (
plain)
1
2
3
4
5
6
7
8
9
|
local yard_id = "IP"
if event.punch then
local notifications = "-- Notify --\n"
local ref = S.yards[yard_id].notify
for fc in pairs(ref) do
notifications = notifications..fc.." \n"
end
digiline_send("notify_lcd",notifications)
end
|