04-01-2017, 01:18 AM | #181 |
Going Viral
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
|
You where careful but correct.
The mouse and keyboard technical details have not changed much since when the PS2 "standard" was introduced. The connectors have changed, and some are wireless connections, but everything "speaks" PS2 coding regardless of the connection media. (Well, HP may still be different, but then who cares?) |
04-18-2017, 01:19 PM | #182 |
Guru
Posts: 645
Karma: 1888888
Join Date: Jun 2009
Device: prs-505, Kindle Keyboard 3g, PW3
|
zxczxc,
I'm almost done with a kernel module that can make the usb hot swappable. and wanted to get your ideas. In the KindleLazy, you open both event 2 and event3 ( kbd and mouse ). One option in my module could make both of those events available at the same device, or split them into kbd/mouse devices. Anyone have thoughts on that? |
Advert | |
|
04-20-2017, 11:22 AM | #183 | |
Addict
Posts: 229
Karma: 136002
Join Date: Apr 2013
Device: PW
|
Quote:
Ideally I just would just want to check for a specific button press, and not care about what device it is coming from. So I'm not sure what to tell you with regards to your module, maybe I misunderstand something, sorry. Hot swappable would be great Thanks for your work! |
|
04-20-2017, 10:00 PM | #184 |
Guru
Posts: 645
Karma: 1888888
Join Date: Jun 2009
Device: prs-505, Kindle Keyboard 3g, PW3
|
Hot swappable kernal module
OK, here is the simplest version I have made, I'm not entirely happy with it, but it's time to put it out into the world.
Usage should be in the form: Code:
insmod hid.ko 2>&1 sleep 1 insmod usbhid.ko 2>&1 sleep 1 insmod mousedev.ko 2>&1 # ( I have no idea why, but like you saw, if I don't use this we often get the device disconnecting and reconnecting repeatedly sleep 1 insmod mdcbug.ko 2>&1 sleep 1 killall kindlelazy > /dev/null 2>&1 sleep 3 ./kindlelazy & You will need to change kindlelazy to use this device. Maybe you could make the device part of the configuration. I do plan on changing this module considerably in the future though, this name is not well though out, just my initials. I'm thinking of something like 'evhot' to mimic 'evdev'. Can you give this a test, changing your source code to open device /dev/mdcdev instead of inputs 2 and 3. Current limitations: The device can only be opened by one application. ( So you cannot read it in kindlelazy, and tail it from the command line ). It has a very basic device filter - anythign with eh left mouse button, or the "enter" key. Device does not support most ioctl calls, so it cannot be used by evtest or Xorg, it can only be read. Long term plans: My long term plan for this module would be for it: To work on any linux device. Be opened by any number of applications. Provide multiple /dev/somethng_mouse, something_kbd, something_all devices. So that like Xorg can open jsut the keyboard part. For this, I will need to implement all of the ioctl calls, and provide a list of events that I can actually support. Edit: When I put the device to sleep running a copy of kindlelazy that just showed all the events, the device crashed on wakeup. Do not use this yet. Edit2: I have uploaded a new version that does not open the touchscreen of the power button. It will only register for certain mice ( must have a left button ) and certain keyboards ( must have an ENTER key ) now. Tested again, and no crash on reboot. I had it just write all the events to a file, the following 4 test cases worked. ( of cource including the test case of leaving it unplugged ) Plug in, suspend, wakeup, Plug in, unplug, suspend, wakeup, plug in. Plug in, suspend, unplug, wakeup, plug in. Plug in, suspend, unplug, plug in, wakeup. zxczxc, if you get the change, can you give me the output of evtest /dev/input2 and evtest /dev/input3 on your presenter. If it registers as a mouse and keyboard, but it doesn't have an enter key, I wonder which keys it lists. Last edited by coplate; 04-21-2017 at 12:41 AM. |
04-24-2017, 03:38 PM | #185 |
Junior Member
Posts: 2
Karma: 10
Join Date: Apr 2017
Device: kindle PW3
|
Only if i could do jailbreak!
|
Advert | |
|
07-12-2017, 07:33 PM | #186 |
First Mate
Posts: 5
Karma: 10
Join Date: Jan 2017
Device: Paperwhite 3, Keyboard (retired)
|
I've been having a bit of a weird problem with KindleLazy under firmware 5.8.9.2. Everything works as expected with the screen right side up. with it upside down, the pages do not turn and the previous page button instead cycles the progress meter at the bottom of the page through off, location, time left, etc.
Of course, now that I go to repeat it and look at the logs, it's resolved itself. I'll export them if and when it happens again. Last edited by vespoid; 07-12-2017 at 08:40 PM. |
08-23-2017, 11:50 AM | #187 |
Connoisseur
Posts: 98
Karma: 10
Join Date: Oct 2014
Device: kindle pw3
|
what kind of controller u use ? i think the controllers for power point aren't really comfortable to use on bed
|
08-24-2017, 06:28 PM | #188 |
Grand Sorcerer
Posts: 8,515
Karma: 64095689
Join Date: Jan 2008
Location: Harrisburg outskirts
Device: Palms, K1-4s, iPads, iPhones, KV, KO1
|
This software is written for a controller which is specified in the first post. Dunno if other controllers will work with it.
|
08-25-2017, 05:15 AM | #189 |
Connoisseur
Posts: 98
Karma: 10
Join Date: Oct 2014
Device: kindle pw3
|
the key are just the up down of the keyboard (or right left)
|
09-05-2017, 01:40 AM | #191 |
Connoisseur
Posts: 98
Karma: 10
Join Date: Oct 2014
Device: kindle pw3
|
i noticed a battery drain (like 50% in a single day)
the drain is from the usb power or from the app? |
09-05-2017, 11:48 AM | #192 | |
Going Viral
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
|
Quote:
If you dig into this thread a bit, I think you will find where at least some people used a powered hub rather than pull power from the Kindle. If your giving a presentation of greater than 24 hours, do not send me an invite - I need at least regular beer breaks (or whatever). Other than that - I would recommend that you re-charge both yourself and the Kindle every 32 hours of non-stop reading. Last edited by knc1; 09-05-2017 at 11:52 AM. |
|
11-10-2017, 10:52 AM | #193 |
Addict
Posts: 393
Karma: 123456
Join Date: Feb 2009
Location: Central US
Device: k1 - KAO2, ipads, h2o, KA1, inkBOOK, T80s, Mars, Nova Pro
|
Is there a chance KindleLazy will work on the KOA2? Does it have usbotg?
|
11-10-2017, 12:38 PM | #194 |
Going Viral
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
|
|
11-10-2017, 01:08 PM | #195 |
Addict
Posts: 393
Karma: 123456
Join Date: Feb 2009
Location: Central US
Device: k1 - KAO2, ipads, h2o, KA1, inkBOOK, T80s, Mars, Nova Pro
|
I know. I got one yesterday that has a good screen and 5.9.0.5.1 I've done everything preparatory to the JB but it occurred to me last night that there may be no reason for this model to have usbotg and it may not, in which case, KindleLazy won't work. Bluetooth doesn't look promising at the moment for a remote page turner, but of course I hope that will change. Nicer not to have the receiver sticking out for usb. If it doesn't have usbotg, I would consider returning it. The remote page turner is very important to me. I do love the screen, though.
|
Tags |
remote, remote control |
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Aura HD Brightness control too bright | cefarix | Kobo Reader | 7 | 05-04-2014 03:28 PM |
Advanced Automatic Brightness and Wifi Control | hieronymos | Kobo Tablets | 2 | 12-02-2011 10:51 AM |
hardware backlight control for brightness? | bells | Apple Devices | 3 | 10-26-2011 12:39 PM |
remote control? | shawn | Sony Reader | 2 | 10-10-2007 01:02 PM |
Remote Control | ecm | Which one should I buy? | 5 | 03-20-2007 01:08 AM |