This device can manipulate the Clipboard via the ability to set and get the entries.
This is an example of how to access the device.
local d = require("devices")
local clipboard = d:find("clipboard")
print(clipboard:getClipboardEntries()[1][1].text)
Device name: clipboard
getClipboardEntries():table
This method gets all clipboard entries index by pages and by entry.
setClipboardEntries(entires:table)
This method sets all clipboard entries form the given table.
entries
is a table representing a series of pages containing a series of clipboard entries.