eive-obsw/mission/system/objects/CamSwitcher.h

14 lines
360 B
C
Raw Normal View History

2022-11-03 22:59:51 +01:00
#ifndef MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_
#define MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_
#include <fsfw/power/PowerSwitcherComponent.h>
class CamSwitcher : public PowerSwitcherComponent {
public:
CamSwitcher(object_id_t objectId, PowerSwitchIF &pwrSwitcher, power::Switch_t pwrSwitch);
2022-11-03 22:59:51 +01:00
private:
};
#endif /* MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_ */