Our website uses necessary cookies to enable basic functions and optional cookies to help us to enhance your user experience. Learn more about our cookie policy by clicking "Learn More".
Accept All Only Necessary Cookies
Iot Servo Slider आइकन

1 by Incatdible


Aug 18, 2018

Iot Servo Slider के बारे में

एप्लिकेशन पर स्लाइडर के माध्यम से इमदादी नियंत्रित करने के लिए

This app used to control the servo from iot device that run arduino ide, for example nodeMCU, Wemos, ESP8266.

Below the code for the arduino:

#include

#include

#include

#include

Servo servo;

const char* ssid = "WIFI_SSID"; // Enter Your wifi SSID here

const char* password = "WIFI_PASSWORD"; // Enter Your Wifi Password Here

ESP8266WebServer server(80);

//The function we want to call

void slider(){

// Serial.println(server.args()); //to known number of parameter

// Serial.println(server.argName(i)); //Get the name of the parameter

Serial.println(server.arg(0)); //Print value receive

int val = server.arg(0).toInt(); //Servo write only read integer

servo.write(val);

}

//The function if no function found

void handleNotFound(){

String message = "File Not Found\n\n";

message += "URI: ";

message += server.uri();

message += "\nMethod: ";

message += (server.method() == HTTP_GET)?"GET":"POST";

message += "\nArguments: ";

message += server.args();

message += "\n";

for (uint8_t i=0; i message += " " + server.argName(i) + ": " + server.arg(i) + "\n";

}

server.send(404, "text/plain", message);

}

void setup() {

Serial.begin(115200);

WiFi.begin(ssid, password);

Serial.println("");

// Wait for connection

while (WiFi.status() != WL_CONNECTED) {

delay(500);

Serial.print(".");

}

Serial.println("");

Serial.print("Connected to ");

Serial.println(ssid);

Serial.print("IP address: ");

Serial.println(WiFi.localIP());

if (MDNS.begin("esp8266")) {

Serial.println("MDNS responder started");

}

//Set the option when we put at url

//the slider function will be called

server.on("/Slider",slider);

//When input the IP address on url

server.on("/", [](){

server.send(200, "text/plain", "this works as well");

});

server.onNotFound(handleNotFound);

server.begin();

Serial.println("HTTP server started");

servo.attach(D3);

}

void loop() {

server.handleClient();

}

नवीनतम संस्करण 1 में नया क्या है

Last updated on Aug 18, 2018

Minor bug fixes and improvements. Install or update to the newest version to check it out!

अनुवाद लोड हो रहा है...

अतिरिक्त ऐप जानकारी

नवीनतम संस्करण

निवेदन Iot Servo Slider अपडेट 1

द्वारा डाली गई

โบ๊ท' น้อย

Android ज़रूरी है

Android 4.0+

अधिक दिखाएं

Iot Servo Slider स्क्रीनशॉट

टिप्पणी लोड हो रहा है...
भाषाओं
APKPure की सदस्यता लें
सर्वश्रेष्ठ एंड्रॉइड गेम और ऐप्स के शुरुआती रिलीज, समाचार और गाइड तक पहुंचने वाले पहले व्यक्ति बनें।
जी नहीं, धन्यवाद
साइन अप करें
सफलतापूर्वक सब्सक्राइब!
अब आप APKPure की सदस्यता ले रहे हैं।
APKPure की सदस्यता लें
सर्वश्रेष्ठ एंड्रॉइड गेम और ऐप्स के शुरुआती रिलीज, समाचार और गाइड तक पहुंचने वाले पहले व्यक्ति बनें।
जी नहीं, धन्यवाद
साइन अप करें
सफलता!
अब आप हमारे न्यूज़लेटर की सदस्यता ले चुके हैं।