Skip to content

Commit

Permalink
Add lemp13-b
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed May 17, 2024
1 parent 012632d commit e77c813
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/app/ec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,14 @@ impl EcComponent {
"L140MU" => "system76/lemp10".to_string(),
"L140PU" => "system76/lemp11".to_string(),
"L140AU" => "system76/lemp12".to_string(),
"L2x0TU" => "system76/lemp13".to_string(),
"L2x0TU" => {
// If the EC version starts with 1.07. then this is the original keyboard
if self.version.starts_with("1.07.") {
"system76/lemp13".to_string()
} else {
"system76/lemp13-b".to_string()
}
},
"N130ZU" => "system76/galp3-c".to_string(),
"N140CU" => "system76/galp4".to_string(),
"N150ZU" => "system76/darp5".to_string(),
Expand Down

0 comments on commit e77c813

Please sign in to comment.