kindle 的睡眠模式要关掉吗?
我刚刚开始kindle开发,想知道是否可以关闭kindle的睡眠模式?或者有没有办法通过按下前面的按钮而不是使用电源按钮来唤醒它(或者对其进行编程以唤醒)?
在这里不寻找任何深入的内容,只需为我指出正确的方向或让我知道是否可能。
I'm just getting into kindle development, and I want to know if it is possible to turn off kindle's sleep mode? Or is there a way to wake it up (or a way to program it to wake up) by pushing the buttons on the front, rather than using the power button?
Not looking for anything to in-depth here, just point me in the right direction or let me know if it is possible.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这里说明了如何更改睡眠超时。这需要 usbNetworking,这需要“越狱”和 usbnetworking hack:两者都可以从 下载这个线程。通过 usbNetworking,您可以在 Kindle 上进行 telnet 或 ssh,它提供了带有 vi 的完整 shell。
关于超时更改的线程并没有说 kindle 文件系统是只读的:要编辑 t1_timeout,您必须首先输入
mntroot rw
。usbNetworking hack 需要进行一些研究;通读 .zip 中包含的 README_FIRST.txt。
永远记住,Kindle 是另一个 Unix,所以还要查看这本精彩的手册:D。
Here it is stated how to change the sleep timeout. This needs usbNetworking, which requires "jailbreak" and the usbnetworking hack: both can be downloaded from this thread. With usbNetworking you can telnet or ssh on your Kindle, which offers a full fledged shell with vi.
The thread about timeout change does not say that the kindle file system is read only: to edit t1_timeout you must first enter
mntroot rw
.The usbNetworking hack requires a bit of research; read through the README_FIRST.txt included in the .zip.
And always remember that the Kindle is yet another Unix, so check also this wonderful handbook :D.