【IoT】Wifiを使って自宅のファンヒーターをコントロールしてみた。その3
- 2020/03/16 07:53
サーボコントロールに挑戦。
ファンヒーターのスイッチをリレーを使って電気的に制御しても良かったんだけど、汎用性を考えてあえて、アナログ式にサーボで「スイッチを押す」を採用。
サンプルスケッチ
#include <Servo.h>Servo myservo; // create servo object to control a servo// twelve servo objects can be created on most boardsint pos = 0; // variable to store the servo positionvoid setup() {myservo.attach(9); // attaches the servo on pin 9 to the servo object}void loop() {for (pos = 0; pos <= 180; pos += 1) { // goes from 0 degrees to 180 degrees// in steps of 1 degreemyservo.write(pos); // tell servo to go to position in variable 'pos'delay(15); // waits 15ms for the servo to reach the position}for (pos = 180; pos >= 0; pos -= 1) { // goes from 180 degrees to 0 degreesmyservo.write(pos); // tell servo to go to position in variable 'pos'delay(15); // waits 15ms for the servo to reach the position}}
無事に動作確認できました。
つづく