#include "arduino_secrets.h" #include #include #include char ssid[] = SECRET_SSID; // network SSID (name) char pass[] = SECRET_PASSWORD; // network password int keyIndex = 0; // network key index number (needed only for WEP) int port = SECRET_PORT; void setup() { Serial.begin(9600); if (!IMU.begin()) { Serial.println("Failed to initialize IMU!"); while (1) ; } if (WiFi.status() == WL_NO_MODULE) { Serial.println("Communication with WiFi module failed!"); while (true) ; } String fv = WiFi.firmwareVersion(); if (fv < WIFI_FIRMWARE_LATEST_VERSION) { Serial.println("Please upgrade the firmware"); } 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 5 seconds for connection: delay(5000); } server.begin(); printWifiStatus(); } void loop() { WiFiClient client = server.available(); if (client) { Serial.println("new client"); String currentLine = ""; while (client.connected()) { if (client.available()) { // Read one character of the client request at a time: char c = client.read(); // If the byte is a newline character: if (c == '\n') { // If currentline has been cleared, the request is finished, but it wasn't a known endpoint, so send a generic response: if (currentLine.length() == 0) { sendResponse(client, "Hello from Arduino RP2040! Valid endpoints are /Temperature/Current/F and /Temperature/Current/C", -99, "invalid"); break; } else currentLine = ""; // If you got a newline, then clear currentLine } else if (c != '\r') // If you got anything else but a carriage return character, add it to the end of the currentLine: currentLine += c; char request_unit = 'X'; if (currentLine.indexOf("GET /Temperature/Current/F") != -1) request_unit = 'F'; if (currentLine.indexOf("GET /Temperature/Current/C") != -1) request_unit = 'C'; if (request_unit == 'F' || request_unit == 'C') { int current_temperature = (request_unit == 'F') ? getTemperature(true) : getTemperature(false); char temp_units[5]; sprintf(temp_units, "°%s", (request_unit == 'F') ? "F" : "C"); char message[50]; sprintf(message, "Current temperature is %d %s", current_temperature, temp_units); sendResponse(client, message, current_temperature, "success"); break; } } } client.stop(); Serial.println("client disconnected"); } } void sendResponse(WiFiClient &client, char message[], int value, char status[]) { // Send a standard HTTP response client.println("HTTP/1.1 200 OK"); client.println("Content-type: application/json"); client.println("Connection: close"); client.println(); // Create a JSON object StaticJsonDocument<200> doc; doc["message"] = message; doc["value"] = value; doc["status"] = status; // Serialize JSON to client serializeJson(doc, client); } 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: 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"); } int getTemperature(bool as_fahrenheit) { if (IMU.temperatureAvailable()) { int temperature_deg = 0; IMU.readTemperature(temperature_deg); if (as_fahrenheit == true) temperature_deg = celsiusToFahrenheit(temperature_deg); return temperature_deg; } else { return -99; } }