-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a6a90b
commit 64b67c9
Showing
19 changed files
with
536 additions
and
118 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"defaultThemePath":"C:\\Users\\bruno\\Documents\\GitHub\\capellix-lcd\\themes\\notzxt_2\\theme.js","fps":25,"renderAtStartup":false,"startMinimised":false,"startAtLogin":false,"showWarningAlert":true,"rotation":0} | ||
{"defaultThemePath":"C:\\Users\\bruno\\Documents\\GitHub\\capellix-lcd\\themes\\clock\\theme.js","fps":25,"renderAtStartup":false,"startMinimised":false,"startAtLogin":false,"showWarningAlert":true,"rotation":0} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
target | ||
capellix.node | ||
**/node_modules | ||
**/.DS_Store | ||
npm-debug.log* |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
[package] | ||
name = "tt-ultra" | ||
version = "0.1.0" | ||
description = "Native bindings for the Toughliquid Ultra LCD." | ||
authors = ["Bruno St. John"] | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
exclude = ["tt-ultra.node"] | ||
|
||
[lib] | ||
crate-type = ["cdylib"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
hidapi-rusb = "1.3.2" | ||
base64 = "0.21.0" | ||
once_cell = "1.17.1" | ||
|
||
[dependencies.neon] | ||
version = "0.10" | ||
default-features = false | ||
features = ["napi-6"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# capellixv2 | ||
|
||
**capellixv2:** Native bindings for the Capellix LCD rev 2. | ||
|
||
This is an LCD driver as part of the Zefir's Flashy Cooler project. | ||
|
||
It is based on a reverse engineering effort led by me and TheDordo from the SignalRGB team. | ||
|
||
 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "tt-ultra", | ||
"version": "0.1.0", | ||
"description": "Native bindings for the Thermaltake Ultra LCD.", | ||
"main": "tt-ultra.node", | ||
"scripts": { | ||
"build": "cargo-cp-artifact -nc tt-ultra.node -- cargo build --message-format=json-render-diagnostics", | ||
"build-debug": "npm run build --", | ||
"build-release": "npm run build -- --release", | ||
"install": "npm run build-release", | ||
"test": "cargo test" | ||
}, | ||
"author": "Bruno St. John", | ||
"license": "Apache-2.0", | ||
"devDependencies": { | ||
"cargo-cp-artifact": "^0.1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/brunostjohn/zefirs-flashy-cooler.git" | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/brunostjohn/zefirs-flashy-cooler/issues" | ||
}, | ||
"homepage": "https://github.com/brunostjohn/zefirs-flashy-cooler#readme" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
module.exports = { | ||
manifest: { | ||
vendorId: 0x264a, | ||
productId: 0x2328, | ||
deviceName: "Toughliquid Ultra", | ||
width: 480, | ||
height: 480, | ||
maxFps: 30, | ||
supportsStaticHardwareImage: false, | ||
supportHardwareGif: false, | ||
supportBrightnessControl: false, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pub mod constants { | ||
pub const VENDOR_ID: u16 = 0x264a; | ||
pub const PRODUCT_ID: u16 = 0x2328; | ||
pub const IMG_TX: u8 = 0x02; | ||
} |
Oops, something went wrong.