Done!
Developer: c.s.park (11)
Price: Free
Score: 5,030 Gold
Rankings: 0 
Comments: 0 Add a comment
Lists: 1 + 0
Points: 0 + 0 ¡
+1 Points

Description

arduino_wifi_pcs
After mounting the Wi-Fi module on the Arduino board, operating this app on the mobile phone to connect the Wi-Fi communication between the mobile phone and Arduino, pressing the 10 buttons provided on the mobile phone to recognize the pressing of the button on the Arduino to perform the desired operation. app that allows
- Single button: 10

(Data sent to Arduino when each button is pressed)
Button 1: ‘0’ (hexadecimal 30) Button 2: ‘1’ (hexadecimal 31)
Button 3: ‘2’ (hexadecimal 32) Button 4: ‘3’ (hexadecimal 33)
Button 5: ‘4’ (hexadecimal 34) Button 6: ‘5’ (hexadecimal 35)
Button 7: ‘6’ (hexadecimal 36) Button 8: ‘7’ (hexadecimal 37)
Button 9: ‘8’ (hexadecimal 38) Button 10: ‘9’ (hexadecimal 39)

(Example of program in Arduino)
LED connected to digital port 5 of Arduino turns on when button 1 is pressed once, and turns off when pressed again. (Toggle action)

///// Controlling LEDs via Wi-Fi
Include SoftwareSerial.h in the first part.
SoftwareSerial esp8266(2,3);

void setup()
{
Serial. begin(9600);
esp8266.begin(9600); // baud rate of esp
pinMode(5, OUTPUT);
digitalWrite(, LOW);

sendData("AT+RST\r\n",2000); // module reset
sendData("AT+CWMODE=2\r\n",1000); // set as AP (access point)
sendData("AT+CIFSR\r\n",1000); // get ip address
sendData("AT+CIPMUX=1\r\n",1000); // set to multiple connections
sendData("AT+CIPSERVER=1,80\r\n",1000); // server on port 80
}

void loop()
{
if(esp8266.available()) // if esp is sending a message
{
if(esp8266.find("+IPD,"))
{
delay(200); // read all serial data
int connectionId = esp8266.read();
esp8266.find("?");
int Number = esp8266.read();

if(Number==0x30){
if(digitalRead(5)==HIGH) digitalWrite(5, LOW);
else digitalWrite(5, HIGH);
}

// close command
String closeCommand = "AT+CIPCLOSE=";
closeCommand += connectionId; // attach connection id
closeCommand += "\r\n";
sendData(closeCommand,1000); // close connection
}
}
}

String sendData(String command, const int timeout)
{
String response = "";
esp8266.print(command); // send read character to esp8266
long int time = millis();
while( (time+timeout) > millis())
{
while(esp8266.available())
{
// If there is received data in esp, send it serially
char c = esp8266.read(); // read the next character
response+=c;
}
}
return response;
}
more ↓

Screenshots

#1. arduino_wifi_pcs (Android) By: c.s.park
#2. arduino_wifi_pcs (Android) By: c.s.park
#3. arduino_wifi_pcs (Android) By: c.s.park
#4. arduino_wifi_pcs (Android) By: c.s.park
#5. arduino_wifi_pcs (Android) By: c.s.park
#6. arduino_wifi_pcs (Android) By: c.s.park
#7. arduino_wifi_pcs (Android) By: c.s.park
#8. arduino_wifi_pcs (Android) By: c.s.park
#9. arduino_wifi_pcs (Android) By: c.s.park
#10. arduino_wifi_pcs (Android) By: c.s.park
Ad

Price History

  • Current price: Free
  • Minimum: Free
  • Maximum: Free
Track prices

AppAgg Score

Estimated AppAgg Score for  
arduino_wifi_pcs

5,030 Gold

Higher scores usually mean stronger signals on AppAgg.

Based on:  popularity ·  ratings ·  freshness ·  deals ·  store data ·  community signals

Recalculated daily using fresh AppAgg data.

Short URL: Copied!

What's new

  • Version: 1.4.0
  • Last Updated:
  • 2025.11.6 Version 1.4.0 출시. (API 35 적용)

Additional Information

Developer

Lists (1)

Points (0)

0

Rankings (0)

0

Comments (0)

Be the first to comment 

Summary

arduino_wifi_pcsarduino_wifi_pcs Short URL: Copied!
  •  Share
  • Google Play
«arduino_wifi_pcs» is a Education app for Android, developed by «c.s.park». It was first released on and last updated on . This app is currently free. This app has not yet received any ratings on AppAgg. It has been added to 1 public lists and 0 private lists created by users. AppAgg continuously tracks the price history, ratings, and user feedback for «arduino_wifi_pcs». AppAgg does not host applications or distribute software. All trademarks, logos and screenshots belong to their respective owners. Subscribe to this app or follow its RSS feed to get notified about future deals or updates.

Similar

You may also like

Recently viewed

Search operators you can use with AppAgg
Add to AppAgg
AppAgg
Start using AppAgg. It’s Free!
Sign Up
Sign In