eive-obsw/mission/system/objects/CamSwitcher.h
Robin Mueller 47b65a1fa3
All checks were successful
EIVE/eive-obsw/pipeline/pr-develop This commit looks good
create cam switcher, create new PL task
2022-11-10 13:09:31 +01:00

14 lines
360 B
C++

#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);
private:
};
#endif /* MISSION_SYSTEM_OBJECTS_CAMSWITCHER_H_ */