๐Ÿ˜Ž ๊ณต๋ถ€ํ•˜๋Š” ์ง•์ง•์•ŒํŒŒ์นด๋Š” ์ฒ˜์Œ์ด์ง€?

[UNO R4 WIFI example] WiFi Web Server LED Blink ๋ณธ๋ฌธ

๐Ÿ‘ฉ‍๐Ÿ’ป IoT (Embedded)/Arduino

[UNO R4 WIFI example] WiFi Web Server LED Blink

์ง•์ง•์•ŒํŒŒ์นด 2023. 11. 28. 15:01
728x90
๋ฐ˜์‘ํ˜•

< ๋ณธ ๋ธ”๋กœ๊ทธ๋Š” ARDUINO docs ์„ ์ฐธ๊ณ ํ•ด์„œ ๊ณต๋ถ€ํ•˜๋ฉฐ ์ž‘์„ฑํ•˜์˜€์Šต๋‹ˆ๋‹ค :-) >

 

โญ Arduino UNO R4 WiFi

Wi-Fi ๋„คํŠธ์›Œํฌ์— ์—ฐ๊ฒฐํ•˜๊ณ  ๋„คํŠธ์›Œํฌ ์ž‘์—…์„ ์ˆ˜ํ–‰ํ•  ์ˆ˜ ์žˆ๋Š” ESP32-S3 ๋ชจ๋“ˆ์ด ๋‚ด์žฅ๋˜์–ด ์žˆ์Œ

HTTPS, MQTT, UDP๋ฅผ ํฌํ•จํ•œ ํ”„๋กœํ† ์ฝœ์ด ํ…Œ์ŠคํŠธ๋˜๊ณ  ์ง€์›๋จ

WiFiS3 Arduino UNO R4 Core ์™€ ํ•จ๊ป˜ ์ œ๊ณต๋˜๋Š” ๋ผ์ด๋ธŒ๋Ÿฌ๋ฆฌ

 

โญ WiFi Web Server LED Blink

๐ŸŒณ SSID, PASSWORD ๋กœ์ปฌ Wi-Fi ๋„คํŠธ์›Œํฌ์šฉ

๋„คํŠธ์›Œํฌ์™€ ๋น„๋ฐ€๋ฒˆํ˜ธ๋ฅผ ๋ณ„๋„์˜ ํŒŒ์ผ (ํ—ค๋”) ์— ์ €์žฅํ•˜์—ฌ ์ •๋ณด ๋ณดํ˜ธํ•˜๊ธฐ

//arduino_secrets.h header file
#define SECRET_SSID "yournetwork"
#define SECRET_PASS "yourpassword"

 

๐ŸŒณ UART

UART ํ†ต์‹ ์ด๋ž€ Serial ํ†ต์‹ ์œผ๋กœ, ๋ฐ์ดํ„ฐ ์ „์†ก ํ˜น์€ ์ˆ˜์‹  ํ•€์ด ํ•˜๋‚˜์ธ ํ†ต์‹ 

ํ•œ๋ฒˆ์— 1byte์”ฉ ๋ณด๋‚ด๋ฉฐ, ๊ฐ bit๋Š” ์ฐจ๋ก€(์ง๋ ฌ)๋กœ ์ „์†ก

MCU (ex. arduino)์—์„œ ๋งŽ์ด ์“ฐ์ด๋Š” ๋ฐฉ์‹์ด๋ฉฐ, TX (๋ฐ์ดํ„ฐ๋ฅผ ๋ณด๋‚ด๋Š” ํ•€)์™€ RX (๋ฐ์ดํ„ฐ๋ฅผ ๋ฐ›๋Š” ํ•€)์ด ์กด์žฌ

๋ฐ์ดํ„ฐ ์ˆ˜์‹ ๋ถ€๊ณผ ์†ก์‹ ๋ถ€๋ผ๋ฆฌ TX๋Š” Transmitter(์†ก์‹ ๋ถ€), RX๋Š” Receiver(์ˆ˜์‹ ๋ถ€) ๋Š” ๊ต์ฐจํ•ด์„œ ์—ฐ๊ฒฐํ•ด์•ผ ํ•œ๋‹ค.

UART๋Š” Start bit (GND , 0)์œผ๋กœ ์‹œ์ž‘ํ•˜๊ณ , ๊ทธ ๋’ค 8๊ฐœ์˜ Data bit , ๊ทธ๋ฆฌ๊ณ  Stop bit (VCC , 1)๋กœ ๋๋‚œ๋‹ค

๋”ฐ๋ผ์„œ ํ•œ๋ฒˆ์— 10๊ฐœ์˜ bit๋ฅผ ์ „์†กํ•˜๊ณ  ๋ฐ›๋Š”๊ฒŒ ์ผ๋ฐ˜์ 

 

๐ŸŒณ CODE

/*
  WiFi Web Server LED Blink

  A simple web server that lets you blink an LED via the web.
  This sketch will print the IP address of your WiFi module (once connected)
  to the Serial Monitor. From there, you can open that address in a web browser
  to turn on and off the LED_BUILTIN.

  If the IP address of your board is yourAddress:
  http://yourAddress/H turns the LED on
  http://yourAddress/L turns it off

  This example is written for a network using WPA encryption. For
  WEP or WPA, change the WiFi.begin() call accordingly.

  Circuit:
  * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and Uno WiFi Rev.2)
  * LED attached to pin 9

  created 25 Nov 2012
  by Tom Igoe

  Find the full UNO R4 WiFi Network documentation here:
  https://docs.arduino.cc/tutorials/uno-r4-wifi/wifi-examples#simple-webserver
 */

#include "WiFiS3.h"

//#include "arduino_secrets.h" 

#define SECRET_SSID "class924"
#define SECRET_PASS "kosta90009"
///////please enter your sensitive data in the Secret tab/arduino_secrets.h
char ssid[] = SECRET_SSID;        // your network SSID (name)
char pass[] = SECRET_PASS;    // your network password (use for WPA, or use as key for WEP)
int keyIndex = 0;                 // your network key index number (needed only for WEP)

int led =  LED_BUILTIN;
int status = WL_IDLE_STATUS;
WiFiServer server(80);

void setup() {
  Serial.begin(9600);      // initialize serial communication
  pinMode(led, OUTPUT);      // set the LED pin mode

  // check for the WiFi module:
  if (WiFi.status() == WL_NO_MODULE) {
    Serial.println("Communication with WiFi module failed!");
    // don't continue
    while (true);
  }

  // WiFi.firmwareVersion() : ๋ชจ๋“ˆ์—์„œ ์‹คํ–‰ ์ค‘์ธ ํŽŒ์›จ์–ด ๋ฒ„์ „์„ ๋ฌธ์ž์—ด๋กœ ๋ฐ˜ํ™˜
  String fv = WiFi.firmwareVersion();
  if (fv < WIFI_FIRMWARE_LATEST_VERSION) {
    Serial.println("Please upgrade the firmware");
  }

  // attempt to connect to WiFi network:
  while (status != WL_CONNECTED) {
    Serial.print("Attempting to connect to Network named: ");
    Serial.println(ssid);                   // print the network name (SSID);

    // Connect to WPA/WPA2 network. Change this line if using open or WEP network:
    status = WiFi.begin(ssid, pass);
    // wait 10 seconds for connection:
    delay(5000);
  }

// by default the local IP address
  // you can override it with the following:
  // ๊ณ ์ • IP ์ฃผ์†Œ๋ฅผ ๊ตฌ์„ฑ, WiFi ์‰ด๋“œ์˜ DNS, ๊ฒŒ์ดํŠธ์›จ์ด ๋ฐ ์„œ๋ธŒ๋„ท ์ฃผ์†Œ๋ฅผ ๋ณ€๊ฒฝ
  // WiFi.config(IPAddress(192,168,0,34));

  server.begin();                           // start the web server on port 80
  printWifiStatus();                        // you're connected now, so print out the status
}


void loop() {
  WiFiClient client = server.available();   // listen for incoming clients

  if (client) {                             // if you get a client,
    Serial.println("new client");           // print a message out the serial port
    String currentLine = "";                // make a String to hold incoming data from the client
    while (client.connected()) {            // loop while the client's connected
      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 to the serial monitor
        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();

            // the content of the HTTP response follows the header:
            client.print("<p style=\"font-size:7vw;\">Click <a href=\"/H\">here</a> turn the LED on<br></p>");
            client.print("<p style=\"font-size:7vw;\">Click <a href=\"/L\">here</a> turn the LED off<br></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
        }

        // Check to see if the client request was "GET /H" or "GET /L":
        if (currentLine.endsWith("GET /H")) {
          digitalWrite(LED_BUILTIN, HIGH);               // GET /H turns the LED on
        }
        if (currentLine.endsWith("GET /L")) {
          digitalWrite(LED_BUILTIN, LOW);                // GET /L turns the LED off
        }
      }
      
    }
    // close the connection:
    client.stop();
    Serial.println("client disconnected");
  }
}

void printWifiStatus() {
  // print the SSID of the network you're attached to:
  Serial.print("SSID: ");
  Serial.println(WiFi.SSID());

  // print your board's IP address:
  // WiFi.localIP() : WiFi ์‰ด๋“œ์˜ IP ์ฃผ์†Œ
  IPAddress ip = WiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);

  // print the received signal strength:
  long rssi = WiFi.RSSI();
  Serial.print("signal strength (RSSI):");
  Serial.print(rssi);
  Serial.println(" dBm");
  // print where to go in a browser:
  Serial.print("To see this page in action, open a browser to http://");
  Serial.println(ip);
}

728x90
๋ฐ˜์‘ํ˜•
Comments