Skip to content

Commit 3468bdb

Browse files
authored
Remove Boox Go7 from EDP driver and add support for Hisense Touch Lite (#562)
* Moved Boox Go7 From ONYX SDK to ONYX ADB With Onyx SDK driver, it only takes about 10% of the "Brightness/Warm Slider Bar" to reach 100% brightness/Warm on the Boox Go7 device. With ONYX ADB it takes advantage of the entire "Brightness/Warm Slider Bar" making the changes more gradual and pleasing. I did not notice this on my first PR. * Added Onyx Boox PALMA to Onyx ADB (Lights) @QQRush Reported Onyx Boox Palma lights working with ONYX ADB Driver koreader/koreader#8482 (comment) * Removed ONYX Book GO7 From Onyx/Qualcomm EDP Due to intermittent black screen when device awakes from sleep. I was able to duplicate the issue consistently when the EDP driver was assigned to Onyx/Qualcomm even if it did work on the developer Test Page. See: koreader/koreader#8482 (comment) * Added Hisense Touch Lite Support REF# koreader/koreader#8482 (comment) * Added Hisense Touch Lite Support REF# koreader/koreader#8482 (comment)
1 parent 473ccd5 commit 3468bdb

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

app/src/main/java/org/koreader/launcher/device/DeviceInfo.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ object DeviceInfo {
5757
ENERGY,
5858
FIDIBOOK,
5959
HANVON_960,
60+
HISENSE_TOUCH_LITE,
6061
HYREAD_GAZE_NOTE,
6162
HYREAD_GAZE_NOTE_CC,
6263
HYREAD_MINI6,
@@ -270,6 +271,10 @@ object DeviceInfo {
270271
BRAND == "freescale" && PRODUCT == "evk_6sl_eink"
271272
-> Id.HANVON_960
272273

274+
// Hisense Touch Lite
275+
BRAND == "hisense" && MODEL == "hitv205n"
276+
-> Id.HISENSE_TOUCH_LITE
277+
273278
// Hyread Gaze Note
274279
MANUFACTURER == "hyread" && MODEL == "r08p"
275280
-> Id.HYREAD_GAZE_NOTE

app/src/main/java/org/koreader/launcher/device/EPDFactory.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ object EPDFactory {
9797
DeviceInfo.Id.ONYX_GO_103,
9898
DeviceInfo.Id.ONYX_GO_COLOR7,
9999
DeviceInfo.Id.ONYX_GO6,
100-
DeviceInfo.Id.ONYX_GO7,
101100
DeviceInfo.Id.ONYX_KON_TIKI2,
102101
DeviceInfo.Id.ONYX_LEAF,
103102
DeviceInfo.Id.ONYX_LEAF2,

app/src/main/java/org/koreader/launcher/device/LightsFactory.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ object LightsFactory {
9494
logController("TolinoNTX")
9595
TolinoNtxController()
9696
}
97+
DeviceInfo.Id.HISENSE_TOUCH_LITE,
9798
DeviceInfo.Id.TOLINO_PAGE2,
9899
-> {
99100
logController("TolinoNTXNoWarmth")

0 commit comments

Comments
 (0)