Working roboport power connection.

This commit is contained in:
hal8174 2025-03-25 18:01:23 +01:00
parent a748708998
commit 068297e2c2
5 changed files with 258 additions and 15 deletions

View file

@ -89,6 +89,10 @@ impl Color {
Self::new(0x0f, 0xf0, 0xfc)
}
pub fn yellow() -> Self {
Self::new(0xff, 0xff, 0x00)
}
pub fn gray(l: u8) -> Self {
Self::new(l, l, l)
}