First Use (Web Serial Monitor)


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.

First Use

  1. Connect the shield to your Arduino.

    connect_to_uno

  2. Insert a USB Wi-Fi dongle to the shield.

    insert_wlan

  3. Connect the Arduino to your PC with a USB cable.

    connect_to_pc

  4. Run Arduino IDE on your PC.

    ide_icon

  5. Write a sketch below

    void setup(){
    Serial.begin(9600);
    }
    
    void loop(){
    Serial.println("Hello PHPoC Shield for Arduino!");
    delay(1000);
    }
  6. Upload the sketch to your Arduino.

    ide_upload

  7. With your mobile, connect to the wireless network starting with "phpoc_".

    connect_wlan

  8. Run a web browser once it is properly connected to the wireless LAN.

    web_browsers

  9. Connect to the shield by entering "192.168.0.1" in the address bar.

    web_connect

  10. Select "Web Serial Monitor" on the main page.

    main_wsm

  11. Press the "Connect" button.

    wsm_connect

  12. Once the connection is established, you can monitor the serial port of Arduino.

    wsm_run