1
0
mirror of https://github.com/AR2000AR/openComputers_codes.git synced 2025-09-08 06:31:14 +02:00
Files
openComputers_codes/definitions/component/os_carwriter.d.lua
2023-02-01 21:16:58 +01:00

19 lines
518 B
Lua

---@meta
---@class ComponentOsCardWriter : Component
local os_cardwriter = {}
---writes data to an magnetic/rfid card, 3rd parameter sets the card to readonly
---@param data string
---@param displayName string
---@param locked boolean
---@param color colors
---@return boolean cardWritten
function os_cardwriter.write(data, displayName, locked, color) end
---flashes data to an eeprom
---@param data string
---@param title string
---@param writelock boolean
function os_cardwriter.flash(data, title, writelock) end