The following is the process of monitoring the serial port of the Arduino using a mobile. If you are new to PHPoC Shield for Arduino, do step by step.
Connect the shield to your Arduino.
Insert a USB Wi-Fi dongle to the shield.
Connect the Arduino to your PC with a USB cable.
Run Arduino IDE on your PC.
Write a sketch below
void setup(){
Serial.begin(9600);
}
void loop(){
Serial.println("Hello PHPoC Shield for Arduino!");
delay(1000);
}
Upload the sketch to your Arduino.
With your mobile, connect to the wireless network starting with "phpoc_".
Run a web browser once it is properly connected to the wireless LAN.
Connect to the shield by entering "192.168.0.1" in the address bar.
Select "Web Serial Monitor" on the main page.
Press the "Connect" button.
Once the connection is established, you can monitor the serial port of Arduino.