0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

【ESP32】【Wi-Fi駆動】悩んだときはサーボモーターに聞いてみよう(ネタ)

Posted at

人生に悩んだときは電子工作に聞こう!

いやー…最近自分の人生に悩んでいます。
生きている意味と言うか、私ってこんな人生で何してんのかな…不幸すぎないか…とか虚無ったり。
話聞いてもらえばいいんだろうけど、私の人生はどうですか?って占い師に聞くのもどうなんだろう…テレビのちいかわ占いを見ても、何かしっくりこない。
要するに他人の意見を聞く余裕もないのだ。そんなことしてるくらいなら何か自分で自己肯定感を上げたい。手を動かしたほうが良いのではないか…
そうだ!自分の手でサーボモーターを使って占いを作ってみよう!それでサーボモーターに聞いてみよう!
そうと決まると手を動かすだけだ!どうなるかな!
そうしてn時間、頭をひねったふりをしてGoogle先生やChatGPT様にアドバイスをもらい、ひたすらコピペ手を動かし続けた。

結果

うん、ヤラセはなかった。
いや、ソースコードを見るとヤラセしかない()けど、そんなことよりも挙動が怪しすぎる。
Wi-Fiを使ってサーボモーターを動かすのがうまくいかないのかな?
サーボモーターは簡単に動かせるんだけど、正直Wi-Fiを使っての制御の方法は理解が怪しいというのは事実です…(ググってコピーしただけなんで…)

昨日の自分より成長することを目標に

とはいえ、自分が作ったものを実際に想定通り動いてくれたのは本当に嬉しい。
スマホから動かしたかったのと、勉強がてらWi-Fiを使ってみたけど、タクトスイッチとかで作ったらもっと動作が安定するのかもしれない。これは要検証だな。
こうして出来ないことが出来るようになると嬉しい。これだから勉強は楽しいし電子工作は辞められない。
ちなみに、インスタのストーリーに投稿してみたら、何も知らない友人にはすごい!と言われて自己肯定感が上がりました。最高!(単純)
もちろん、他人からの承認欲求で自分の気持ちを満たすのではなく、自分の手で自己肯定感を高めるようにしておきましょう。

もし読んでいただいた皆様、なにか私の記事やソースコードなどに不備があると気づきましたら、よろしければ何でもご指摘いただけると幸甚の極みです。
みなさんも良きESP32ライフを!

※ちなみに、リアルの私はそんなに自己肯定感下がっている人間ではありません。この話は99%テキトーです。誤解を招いたらごめんなさい。
ちいかわが好きなのは事実w

ソースコード

#include <WiFi.h>
#include <Servo.h>

const char *ssid = "XXXXXXXXXX"; //SSID
const char *password = "YYYYYYYYYY"; //password

// Set web server port number to 80
WiFiServer server(80);

// Variable to store the HTTP request
String header;

// Auxiliar variables to store the current output state
String servoMotorOutput18State = "off";

// Assign output variables to GPIO pins
const int servoMotorOutput18 = 18;
const int ledOutput32 = 32;

boolean motorMoveFlag = true;

Servo myservo; //Servoオブジェクトを作成

// Current time
unsigned long currentTime = millis();
// Previous time
unsigned long previousTime = 0; 
// Define timeout time in milliseconds (example: 2000ms = 2s)
const long timeoutTime = 2000;

void setup() {

  Serial.begin(115200);

  // Connect to Wi-Fi network with SSID and password
  Serial.print("Connecting to ");
  Serial.println(ssid);
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(500);
    Serial.print(".");
  }
  // Print local IP address and start web server
  Serial.println("");
  Serial.println("WiFi connected.");
  Serial.println("IP address: ");
  Serial.println(WiFi.localIP());
  server.begin();
  
  myservo.attach(servoMotorOutput18);
  pinMode(ledOutput32, OUTPUT);
}

void loop(){
  if(motorMoveFlag){
    Serial.println("動くゾ〜");
    // サーボモーターを0度に戻す
    myservo.write(0); 
    delay(500);
    // サーボモーターを180度まで動かす
    myservo.write(180); 
    delay(500);  
  }
  
  WiFiClient client = server.available();   // Listen for incoming clients

  if(client){                               // If a new client connects,
    currentTime = millis();
    previousTime = currentTime;
    Serial.println("New Client.");          // print a message out in the serial port
    String currentLine = "";                // make a String to hold incoming data from the client
    while (client.connected() && currentTime - previousTime <= timeoutTime) {  // loop while the client's connected
      currentTime = millis();
      if (client.available()) {             // if there's bytes to read from the client,
        char c = client.read();             // read a byte, then
        Serial.write(c);                    // print it out the serial monitor
        header += c;
        if (c == '\n') {                    // if the byte is a newline character
          // if the current line is blank, you got two newline characters in a row.
          // that's the end of the client HTTP request, so send a response:
          if (currentLine.length() == 0) {
            // HTTP headers always start with a response code (e.g. HTTP/1.1 200 OK)
            // and a content-type so the client knows what's coming, then a blank line:
            client.println("HTTP/1.1 200 OK");
            client.println("Content-type:text/html");
            client.println("Connection: close");
            client.println();
        
            
            // turns the GPIOs on and off
            if (header.indexOf("GET /18/on") >= 0) {
              Serial.println("GPIO 18 on");
              servoMotorOutput18State = "on";
              // サーボモーターを0に戻す
              delay(700);
              myservo.write(90); 
              Serial.println("onが押されました");
              // 3度LEDを点灯させる
              digitalWrite(ledOutput32, LOW);
              delay(500);
              digitalWrite(ledOutput32, HIGH);
              delay(700);
              digitalWrite(ledOutput32, LOW);
              delay(300);
              digitalWrite(ledOutput32, HIGH);
              delay(700);
              digitalWrite(ledOutput32, LOW);
              delay(300);
              digitalWrite(ledOutput32, HIGH);
              delay(700);
              digitalWrite(ledOutput32, LOW);
              motorMoveFlag = false;
            } else if (header.indexOf("GET /18/off") >= 0) {
              Serial.println("GPIO 18 off");
              servoMotorOutput18State = "off";
              // サーボモーターを0に戻す
              Serial.println("offが押されました");
              motorMoveFlag = true;
              delay(300);
            }
            
            // Display the HTML web page
            client.println("<!DOCTYPE html><html>");
            client.println("<head><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">");
            client.println("<link rel=\"icon\" href=\"data:,\">");
            // CSS to style the on/off buttons 
            // Feel free to change the background-color and font-size attributes to fit your preferences
            client.println("<style>html { font-family: Helvetica; display: inline-block; margin: 0px auto; text-align: center;}");
            client.println(".button { background-color: #4CAF50; border: none; color: white; padding: 16px 40px;");
            client.println("text-decoration: none; font-size: 30px; margin: 2px; cursor: pointer;}");
            client.println(".button2 {background-color: #555555;}</style></head>");
            
            // Web Page Heading
            client.println("<body><h1>ESP32 Servo Motor LED</h1>");
            
            // Display current state, and ON/OFF buttons for GPIO 18  
            client.println("<p>GPIO 18 - State " + servoMotorOutput18State + "</p>");
            // If the servoMotorOutput18State is off, it displays the ON button       
            if (servoMotorOutput18State=="off") {
              client.println("<p><a href=\"/18/on\"><button class=\"button\">ON</button></a></p>");
            } else {
              client.println("<p><a href=\"/18/off\"><button class=\"button button2\">OFF</button></a></p>");
            } 
                       
            // The HTTP response ends with another blank line
            client.println();
            // Break out of the while loop
            break;
          } else { // if you got a newline, then clear currentLine
            currentLine = "";
          }
        } else if (c != '\r') {  // if you got anything else but a carriage return character,
          currentLine += c;      // add it to the end of the currentLine
        }
      }
    }
    // Clear the header variable
    header = "";
    // Close the connection
    client.stop();
    Serial.println("Client disconnected.");
    Serial.println("");
  }
}

参考リンク

素晴らしい情報をありがとうございます!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?