Skip to content

Commit

Permalink
Merge pull request #14 from cryptofyre/main
Browse files Browse the repository at this point in the history
feat: add support for Kraken Elite (2024) device
  • Loading branch information
brokenmass authored Nov 7, 2024
2 parents 777f6c7 + be06a75 commit df61c12
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,6 @@ class DISPLAY_MODE(IntEnum):
"maxBucketSize": 20 * 1024 * 1024, # 20MB
"supportsLiquidMode": True,
},
# kraken 2023 disabled for now
# {
# "pid": 0x300E,
# "name": "Kraken 2023",
# "resolution": Resolution(240, 240),
# "renderingMode": RENDERING_MODE.RGBA,
# "image": "http://127.0.0.1:30003/images/2023.png",
# "totalBuckets": 1,
# "maxBucketSize": 46 * 1024, # 46KB
# "supportsLiquidMode": False,
# },
{
"pid": 0x300C,
"name": "Kraken Elite",
Expand All @@ -79,6 +68,16 @@ class DISPLAY_MODE(IntEnum):
"maxBucketSize": 20 * 1024 * 1024, # 20MB
"supportsLiquidMode": True,
},
{
"pid": 0x3012,
"name": "Kraken Elite v2",
"resolution": Resolution(640, 640),
"renderingMode": RENDERING_MODE.Q565,
"image": "http://127.0.0.1:30003/images/2023elite.png",
"totalBuckets": 16,
"maxBucketSize": 20 * 1024 * 1024, # 20MB
"supportsLiquidMode": True,
}
]


Expand Down

0 comments on commit df61c12

Please sign in to comment.