Postman 与 Arduino 的通信

Communication between Postman and Arduino

我计划从服务器向我的 Arduino Uno WiFi Rev2 发送一个 POST 请求。更准确地说,当服务器发送此请求时,由 Arduino 控制的伺服电机应该开始移动。现在,我正在使用 Postman 尝试连接 Arduino,但无法正常工作。所以首先我使用我的智能手机作为热点将 Arduino 连接到 WiFi。这个应该是单位的IP地址吧?

然后我尝试向该 IP 发送 POST 请求,但它不起作用。我也不确定应该使用哪个端口号,所以我一直在尝试使用标准端口号(80、4430 等)。

我做错了什么,我应该如何处理?

编辑:这是我的代码。

#include <SPI.h>
#include <Servo.h>
#include <WiFiNINA.h>


char ssid[]       = "MyNetwork";  // The network SSID
char pass[]       = "testtest"; // The network password

int status        = WL_IDLE_STATUS; // The Wifi radio's connection status
Servo servo_9; // Initializes the servomotor

WiFiServer server(80); // Server socket
//WiFiClient client;
WiFiClient client = server.available();


void setup() {
  // Connects the servomotor to pin 9
  servo_9.attach(9, 500, 2500);
  
  // Initialize serial and wait for port to open:
  Serial.begin(9600);
  while (!Serial) {
    ; // Wait for serial port to connect. Needed for native USB port only
  }

  enable_WiFi();
  connect_WiFi();

  server.begin();
  printCurrentNet();
  printWifiData();
}


void loop() {
  // Check the network connection once every 10 seconds:
  delay(10000);

  client = server.available();
  if(client){
    printWEB();
  }
}


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

  // Check if the latest Firmware version is installed
  String fv = WiFi.firmwareVersion();
  if (fv < WIFI_FIRMWARE_LATEST_VERSION) {
    Serial.println("Please upgrade the firmware");
  }
}


void connect_WiFi(){
  // Attempt to connect to Wifi network:
  while (status != WL_CONNECTED) {
    Serial.print("Attempting to connect to WPA SSID: ");
    Serial.println(ssid);
    // Connect to WPA/WPA2 network:
    status = WiFi.begin(ssid, pass);
    // Wait 10 seconds for connection:
    delay(10000);
  }

  // Now the arduino is connected, so print out the data:
  Serial.print("You're connected to the network: ");
  Serial.println();  
}


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

  // Print the MAC address of the router you're attached to:
  byte bssid[6];
  WiFi.BSSID(bssid);
  Serial.print("BSSID: ");
  printMacAddress(bssid);

  // Print the received signal strength:
  long rssi = WiFi.RSSI();
  Serial.print("Signal strength (RSSI): ");
  Serial.println(rssi);

  // Print the encryption type:
  byte encryption = WiFi.encryptionType();
  Serial.print("Encryption Type: ");
  Serial.println(encryption, HEX);
  Serial.println();
}


void printWifiData() {
  Serial.println("Your board's IP and MAC address: ");
  // Print your board's IP address:
  IPAddress ip = WiFi.localIP();
  Serial.print("IP Address: ");
  Serial.println(ip);

  // Print your MAC address:
  byte mac[6];
  WiFi.macAddress(mac);
  Serial.print("MAC address: ");
  printMacAddress(mac);
  Serial.println();
}


// Find the MAC adress for your Arduino board
void printMacAddress(byte mac[]) {
  for (int i = 5; i >= 0; i--) {
    if (mac[i] < 16) {
      Serial.print("0");
    }
    Serial.print(mac[i], HEX);
    if (i > 0) {
      Serial.print(":");
    }
  }
  Serial.println();
}


void printWEB() {

  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 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 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
        }
      }
    }
    // close the connection:
    client.stop();
    Serial.println("client disconnected");
  }
}


void servomotorGate(){
  int position = 0;
  for (position = 0; position <= 90; position += 1) {
    servo_9.write(position);
    Serial.println("Opening the gate");
  }
  delay(5000); // Wait for 5000 millisecond(s)
  for (position = 90; position >= 0; position -= 1) {
    servo_9.write(position);
    Serial.println("Closing the gate");
  }
}

我添加了服务器客户端来监听连接。但是,我无法使用 Postman 连接到我的 IP 地址的主要原因是我试图从我的 phone 获取 WiFi 作为热点。我猜想使用热点时端口转发有问题。最后,我通过连接到普通的路由器WiFi网络解决了这个问题。