Untuk mengaktifkan WebREPL tuliskan kode berikut pada box REPL 

import webrepl_setup

Setelah aktif, WebREPL dapat diakses dari jaringan. Seting akses ke device dapat dilihat pada file webrepl_cfg.py 

Setelah itu untuk menghubungkan device ke jaringan lokal, harus dilakukan pengeditan file boot.py

def do_connect(ssid, pwd):

    import network

    sta_if = network.WLAN(network.STA_IF)

    if not sta_if.isconnected():

        print('connecting to network...')

        sta_if.active(True)

        sta_if.connect(ssid, pwd)

        while not sta_if.isconnected():

            pass

    print('network config:', sta_if.ifconfig())

 

# This file is executed on every boot (including wake-boot from deepsleep)

#import esp

#esp.osdebug(None)

 

# Attempt to connect to WiFi network

do_connect('your_ssid', 'your_password')

 

import webrepl

webrepl.start()


Kemudian, pada jendela REPL, ketikkan repl.

Pencet tombol Ctrl-D untuk me-restart device.


Tutorial 1

Link tutorial