기업연계 프로젝트2 15조 팀명: 소도기
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
317 B

5 years ago
  1. #ifndef __STEAM_H_
  2. #define __STEAM_H_
  3. class Steam {
  4. private:
  5. int outputV5;
  6. public:
  7. Steam(int outputPin) : outputV5(outputPin){
  8. pinMode(outputPin, OUTPUT);
  9. }
  10. void On() {
  11. digitalWrite(outputV5,HIGH);
  12. }
  13. void Off() {
  14. digitalWrite(outputV5,LOW);
  15. }
  16. };
  17. #endif