mirror of
https://github.com/koreader/koreader
synced 2024-10-31 21:20:20 +00:00
27 lines
565 B
Lua
27 lines
565 B
Lua
local Generic = require("device/generic/device")
|
|
local logger = require("logger")
|
|
|
|
local function yes() return true end
|
|
local function no() return false end
|
|
|
|
local Device = Generic:new{
|
|
model = "dummy",
|
|
hasKeyboard = no,
|
|
hasKeys = no,
|
|
isTouchDevice = no,
|
|
needsScreenRefreshAfterResume = no,
|
|
hasColorScreen = yes,
|
|
hasEinkScreen = no,
|
|
}
|
|
|
|
function Device:init()
|
|
self.screen = require("ffi/framebuffer_SDL2_0"):new{
|
|
dummy = true,
|
|
device = self,
|
|
debug = logger.dbg,
|
|
}
|
|
Generic.init(self)
|
|
end
|
|
|
|
return Device
|