Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Capture brain pixels and send simulated touch input.
const pixels = await device.brain.captureScreen((current, total) => { console.log(`${current}/${total}`); }); if (pixels.isErr()) throw pixels.error; console.log(pixels.value.length); const pressed = await device.mockTouch(240, 136, true); if (pressed.isErr()) throw pressed.error; const released = await device.mockTouch(240, 136, false); if (released.isErr()) throw released.error;