fix(#71): device specific sleep and setup images
Some checks failed
tests / ci (push) Has been cancelled

This commit is contained in:
Benjamin Nussbaum 2025-09-24 22:33:21 +02:00
parent 6ae3e023d4
commit 3e5ba47a12
35 changed files with 614 additions and 20 deletions

View file

@ -31,6 +31,10 @@ final class DeviceModel extends Model
return null;
}
if ($this->bit_depth === 3) {
return '2bit';
}
// if higher then 4 return 4bit
if ($this->bit_depth > 4) {
return '4bit';