Home  /  Education Apps  / arduino_wifi_pcs on Windows Pc

arduino_wifi_pcs on Windows Pc

Developed By: c.s.park

License: Free

Rating: 5,0/5 - 1 votes

Last Updated: April 23, 2024

Download on Windows PC

Compatible with Windows 10/11 PC & Laptop

App Details

Version 1.1.0
Size 1.6 MB
Release Date November 13, 24
Category Education Apps

App Permissions:
Allows applications to open network sockets. [see more (4)]

What's New:
2022.11.18 Version 1.1 출시. minSDK : 26에서 24로 변경 [see more]

Description from Developer:
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 1... [read more]

App preview ([see all 16 screenshots])

App preview

About this app

On this page you can download arduino_wifi_pcs and install on Windows PC. arduino_wifi_pcs is free Education app, developed by c.s.park. Latest version of arduino_wifi_pcs is 1.1.0, was released on 2024-11-13 (updated on 2024-04-23). Estimated number of the downloads is more than 10. Overall rating of arduino_wifi_pcs is 5,0. Generally most of the top apps on Android Store have rating of 4+. This app had been rated by 1 users, 1 users had rated it 5*, 1 users had rated it 1*.

How to install arduino_wifi_pcs on Windows?

Instruction on how to install arduino_wifi_pcs on Windows 10 Windows 11 PC & Laptop

In this post, I am going to show you how to install arduino_wifi_pcs on Windows PC by using Android App Player such as BlueStacks, LDPlayer, Nox, KOPlayer, ...

Before you start, you will need to download the APK/XAPK installer file, you can find download button on top of this page. Save it to easy-to-find location.

[Note] You can also download older versions of this app on bottom of this page.

Below you will find a detailed step-by-step guide, but I want to give you a fast overview of how it works. All you need is an emulator that will emulate an Android device on your Windows PC and then you can install applications and use it - you see you're playing it on Android, but this runs not on a smartphone or tablet, it runs on a PC.

If this doesn't work on your PC, or you cannot install, comment here and we will help you!

Step By Step Guide To Install arduino_wifi_pcs using BlueStacks

  1. Download and Install BlueStacks at: https://www.bluestacks.com. The installation procedure is quite simple. After successful installation, open the Bluestacks emulator. It may take some time to load the Bluestacks app initially. Once it is opened, you should be able to see the Home screen of Bluestacks.
  2. Open the APK/XAPK file: Double-click the APK/XAPK file to launch BlueStacks and install the application. If your APK/XAPK file doesn't automatically open BlueStacks, right-click on it and select Open with... Browse to the BlueStacks. You can also drag-and-drop the APK/XAPK file onto the BlueStacks home screen
  3. Once installed, click "arduino_wifi_pcs" icon on the home screen to start using, it'll work like a charm :D

[Note 1] For better performance and compatibility, choose BlueStacks 5 Nougat 64-bit read more

[Note 2] about Bluetooth: At the moment, support for Bluetooth is not available on BlueStacks. Hence, apps that require control of Bluetooth may not work on BlueStacks.

How to install arduino_wifi_pcs on Windows PC using NoxPlayer

  1. Download & Install NoxPlayer at: https://www.bignox.com. The installation is easy to carry out.
  2. Drag the APK/XAPK file to the NoxPlayer interface and drop it to install
  3. The installation process will take place quickly. After successful installation, you can find "arduino_wifi_pcs" on the home screen of NoxPlayer, just click to open it.

Discussion

(*) is required

Download older versions

Other versions available: 1.1.0.

Download arduino_wifi_pcs 1.1.0 on Windows PC – 1.6 MB

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;
}
2022.11.18 Version 1.1 출시. minSDK : 26에서 24로 변경
Allows applications to open network sockets.
Allows applications to access information about networks.
Allows applications to access information about Wi-Fi networks.
Allows applications to change Wi-Fi connectivity state.