changed from setXState to a more discripive setDeviceStateToX

This commit is contained in:
sirlilpanda
2025-08-29 00:12:44 +12:00
parent aead22a646
commit 0ed9111af3
5 changed files with 26 additions and 17 deletions

View File

@@ -1,7 +1,9 @@
#pragma once
#include "../device.h"
void setLockState(Device_t *device);
void setUnlockState(Device_t *device);
void setDebugState(Device_t *device);
void setOffState(Device_t *device);
// why nothing working?
// each of these are each state
void setDeviceStateToLock(Device_t *device);
void setDeviceStateToUnlock(Device_t *device);
void setDeviceStateToDebug(Device_t *device);
void setDeviceStateToOff(Device_t *device);