mirror of
https://gitlab.com/asus-linux/asusctl.git
synced 2026-02-06 00:15:04 +01:00
Laptop profiles, refactor multizone
- Start differentiating between models using the 0x1866 USB device - Refactor how to send multizone over dbus, and how to write it (write 4 packets before writing SET/APPLY) - Begin implementing profiles per board_name
This commit is contained in:
@@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
### Changed
|
### Changed
|
||||||
- Start differentiating between models using the 0x1866 USB device
|
- Start differentiating between models using the 0x1866 USB device
|
||||||
- Refactor how to send multizone over dbus
|
- Refactor how to send multizone over dbus, and how to write it (write 4 packets before writing SET/APPLY)
|
||||||
|
- Begin implementing profiles per board_name
|
||||||
|
|
||||||
## [0.9.6] - 2020-22-05
|
## [0.9.6] - 2020-22-05
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -80,7 +80,11 @@ fn choose_1866_device() -> LaptopBase {
|
|||||||
BuiltInModeByte::Rainbow,
|
BuiltInModeByte::Rainbow,
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
_ => panic!("Unsupported laptop: {}, please request support at https://github.com/flukejones/rog-core", board_name),
|
"GA401" => {
|
||||||
|
// Has no RGB control
|
||||||
|
info!("Found GA401 series");
|
||||||
|
}
|
||||||
|
_ => panic!("Unsupported laptop: {}, please request support at\nhttps://github.com/flukejones/rog-core", board_name),
|
||||||
}
|
}
|
||||||
laptop
|
laptop
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user