Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > PocketBook

Notices

Reply
 
Thread Tools Search this Thread
Old 05-28-2010, 04:45 PM   #16
JimMcLaren
Addict
JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.JimMcLaren ought to be getting tired of karma fortunes by now.
 
JimMcLaren's Avatar
 
Posts: 260
Karma: 1014230
Join Date: Jan 2010
Device: Onyx Boox T68, Kobo Aura HD, Pocketbook 302, Pocketbook 912, Nook HD+
Quote:
Originally Posted by Schnitzelbrain View Post
Not really shure but afaik poterm is for 301/360 ONLY.
Can someone state this correct, if not just forget my post.
You may be right but the operating system is the same on both. Many of the applications that work on the 360 also run on the 302. The difference is the interface. Since the 302 is a touch screen, the buttons are different (no dpad) and the internal virtual keyboard is different many apps don't work. But a skilled linux programmer should be able to modify them to work on the 302. I'm not a member of that group unfortunately. Might have to become one.
JimMcLaren is offline   Reply With Quote
Old 05-28-2010, 05:33 PM   #17
kacir
Wizard
kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.
 
kacir's Avatar
 
Posts: 3,462
Karma: 10484861
Join Date: May 2006
Device: PocketBook 360, before it was Sony Reader, cassiopeia A-20
Quote:
Originally Posted by Schnitzelbrain View Post
Not really shure but afaik poterm is for 301/360 ONLY.
Can someone state this correct, if not just forget my post.
poterm requires that you press OK buton to open the virtual keyboard for command input. PB302 has no OK button.
So, poterm might work, you just have no means of interaction with it.
"Porting" it to the PB302 *might* be as easy as assigning a different button to the function of opening the virtual keyboard. So a programmer that made the poterm *might* be able to make necessary changes in a few minutes.
kacir is offline   Reply With Quote
Advert
Old 05-30-2010, 08:12 AM   #18
adbosch
Addict
adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.
 
Posts: 299
Karma: 511516
Join Date: Jun 2004
Device: Kobo Forma; Pocketbook Color 633
Can one easily write e.g. a review on a 302 and export it for further processing in e.g. Word?
adbosch is offline   Reply With Quote
Old 05-30-2010, 12:53 PM   #19
kacir
Wizard
kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.
 
kacir's Avatar
 
Posts: 3,462
Karma: 10484861
Join Date: May 2006
Device: PocketBook 360, before it was Sony Reader, cassiopeia A-20
Quote:
Originally Posted by adbosch View Post
Can one easily write e.g. a review on a 302 and export it for further processing in e.g. Word?
Not at the moment.
kacir is offline   Reply With Quote
Old 05-30-2010, 10:23 PM   #20
brainycat
PocketBook 302 FTW!
brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.
 
brainycat's Avatar
 
Posts: 141
Karma: 398
Join Date: Oct 2009
Location: Seattle
Device: Pocketbook 302, upgraded from PRS-600
Quote:
Originally Posted by kacir View Post
poterm requires that you press OK buton to open the virtual keyboard for command input. PB302 has no OK button.
from poterm.cpp:
Code:
70                  case KEY_OK:
71                      OpenKeyboard(term->prompt(), kbuffer, KBUFFER_LEN, 0, keyboard_entry);
72                      term->setHeightNoKbd(iv_msgtop());
73                      term->redrawAll();
74                      break;
And from inkview.h:
Code:
173  #define KEY_BACK 0x1b
174  #define KEY_DELETE 0x08
175  #define KEY_OK 0x0a
176  #define KEY_UP 0x11
177  #define KEY_DOWN 0x12
178  #define KEY_LEFT 0x13
179  #define KEY_RIGHT 0x14
180  #define KEY_MINUS 0x15
181  #define KEY_PLUS 0x16
182  #define KEY_MENU 0x17
183  #define KEY_MUSIC 0x1e
184  #define KEY_POWER 0x01
185  #define KEY_PREV 0x18
186  #define KEY_NEXT 0x19
187  #define KEY_PREV2 0x1c
188  #define KEY_NEXT2 0x1d
189  
190  #define KEY_0 0x30
191  #define KEY_1 0x31
192  #define KEY_2 0x32
193  #define KEY_3 0x33
194  #define KEY_4 0x34
195  #define KEY_5 0x35
196  #define KEY_6 0x36
197  #define KEY_7 0x37
198  #define KEY_8 0x38
199  #define KEY_9 0x39
So if anyone knows what the KEY_* definitions are for the pb302, it is a trivial matter of replacing poterm.cpp:70 'KEY_OK' with 'KEY_(new key definition)' and recompiling.
brainycat is offline   Reply With Quote
Advert
Old 05-31-2010, 10:05 AM   #21
adbosch
Addict
adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.
 
Posts: 299
Karma: 511516
Join Date: Jun 2004
Device: Kobo Forma; Pocketbook Color 633
Quote:
Originally Posted by kacir View Post
Not at the moment.
Do you mean this feature (long note-making, e.g. articles or reviews) will be implemented?
adbosch is offline   Reply With Quote
Old 05-31-2010, 10:14 AM   #22
kacir
Wizard
kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.kacir ought to be getting tired of karma fortunes by now.
 
kacir's Avatar
 
Posts: 3,462
Karma: 10484861
Join Date: May 2006
Device: PocketBook 360, before it was Sony Reader, cassiopeia A-20
Quote:
Originally Posted by adbosch View Post
Do you mean this feature (long note-making, e.g. articles or reviews) will be implemented?
Well, to be sure you would have to ask developers.

There is potential. Touch display, hardware fast enough to implement it, there is even Software Development Kit available for free to anyone that would like to develop such application.
kacir is offline   Reply With Quote
Old 05-31-2010, 01:07 PM   #23
mtravellerh
book creator
mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.
 
mtravellerh's Avatar
 
Posts: 9,657
Karma: 3856660
Join Date: Oct 2008
Location: Luxembourg
Device: Kindle Scribe
Quote:
Originally Posted by kacir View Post
Well, to be sure you would have to ask developers.

There is potential. Touch display, hardware fast enough to implement it, there is even Software Development Kit available for free to anyone that would like to develop such application.
There will be writer edition with a writer program and a bluetooth keyboard. As far as I know, you will also be able to buy software and/or hardware separately.
mtravellerh is offline   Reply With Quote
Old 06-01-2010, 02:53 AM   #24
adbosch
Addict
adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.adbosch ought to be getting tired of karma fortunes by now.
 
Posts: 299
Karma: 511516
Join Date: Jun 2004
Device: Kobo Forma; Pocketbook Color 633
Quote:
Originally Posted by mtravellerh View Post
There will be writer edition with a writer program and a bluetooth keyboard. As far as I know, you will also be able to buy software and/or hardware separately.

In order to decide if I will buy the 302 I want to make sure this writing (with touch screen keyboard) software will be available as well as reasonable internet access (e.g. wikipedia queries and the like). As soon as I can be sure about these 2 points I will order the device.
Though it would be nice to know a date of availability also
adbosch is offline   Reply With Quote
Old 06-01-2010, 03:32 AM   #25
mtravellerh
book creator
mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.
 
mtravellerh's Avatar
 
Posts: 9,657
Karma: 3856660
Join Date: Oct 2008
Location: Luxembourg
Device: Kindle Scribe
Quote:
Originally Posted by adbosch View Post

In order to decide if I will buy the 302 I want to make sure this writing (with touch screen keyboard) software will be available as well as reasonable internet access (e.g. wikipedia queries and the like). As soon as I can be sure about these 2 points I will order the device.
Though it would be nice to know a date of availability also
The wikipedia queries work fine with our new webkit browser
mtravellerh is offline   Reply With Quote
Old 06-01-2010, 08:14 PM   #26
aruangra
Connoisseur
aruangra has learned how to read e-booksaruangra has learned how to read e-booksaruangra has learned how to read e-booksaruangra has learned how to read e-booksaruangra has learned how to read e-booksaruangra has learned how to read e-booksaruangra has learned how to read e-books
 
Posts: 83
Karma: 888
Join Date: May 2010
Device: Nook Touch, iPad1, iPad2, iPod Touch 4G, Pixel Qi
I am sold by this feature. I do want an e-ink device for writing articles. Will it be a firmware update for the 302 or a completely new hardware model?


Quote:
Originally Posted by mtravellerh View Post
There will be writer edition with a writer program and a bluetooth keyboard. As far as I know, you will also be able to buy software and/or hardware separately.
aruangra is offline   Reply With Quote
Old 06-01-2010, 09:00 PM   #27
tvpupsik
Addict
tvpupsik will become famous soon enoughtvpupsik will become famous soon enoughtvpupsik will become famous soon enoughtvpupsik will become famous soon enoughtvpupsik will become famous soon enoughtvpupsik will become famous soon enough
 
tvpupsik's Avatar
 
Posts: 203
Karma: 502
Join Date: Mar 2010
Location: St. Louis, MO
Device: PB 360, PB 602, PB IQ
Quote:
Originally Posted by aruangra View Post
I am sold by this feature. I do want an e-ink device for writing articles. Will it be a firmware update for the 302 or a completely new hardware model?
I would say that it will be a firmware update, but I leave it to mtravellerh to confirm firmly
tvpupsik is offline   Reply With Quote
Old 06-02-2010, 05:55 AM   #28
mtravellerh
book creator
mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.
 
mtravellerh's Avatar
 
Posts: 9,657
Karma: 3856660
Join Date: Oct 2008
Location: Luxembourg
Device: Kindle Scribe
Quote:
Originally Posted by tvpupsik View Post
I would say that it will be a firmware update, but I leave it to mtravellerh to confirm firmly
Yes, that will be a firmware update. There will be a Bluetooth keyboard available as accessory, too
mtravellerh is offline   Reply With Quote
Old 06-02-2010, 05:16 PM   #29
brainycat
PocketBook 302 FTW!
brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.brainycat has a complete set of Star Wars action figures.
 
brainycat's Avatar
 
Posts: 141
Karma: 398
Join Date: Oct 2009
Location: Seattle
Device: Pocketbook 302, upgraded from PRS-600
Mtravellerh, are you saying that my Freedom BT Kboard should work with 15.2???

(he asked, hopefully)
brainycat is offline   Reply With Quote
Old 06-03-2010, 03:21 AM   #30
mtravellerh
book creator
mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.mtravellerh ought to be getting tired of karma fortunes by now.
 
mtravellerh's Avatar
 
Posts: 9,657
Karma: 3856660
Join Date: Oct 2008
Location: Luxembourg
Device: Kindle Scribe
Depends on the driver, I guess. I'd say, try it out and let us know. Our keyboard will be low priced, anyway.
mtravellerh is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Initial thoughts on the 650 Cheeseandpickles Sony Reader 1 09-20-2010 11:44 AM
Pocketbook 302 prusaks PocketBook 9 08-10-2010 05:32 PM
Initial thoughts on BeBook Neo HarryT BeBook 47 05-03-2010 07:45 AM
Got my Cybook - initial thoughts lithprinter Bookeen 60 12-01-2008 12:11 PM
New Reader - initial thoughts Elfwreck Sony Reader 11 11-24-2008 01:56 AM


All times are GMT -4. The time now is 04:03 AM.


MobileRead.com is a privately owned, operated and funded community.