CM3-Panel-7-poe technical documentation Buy

Configure your CM3-PANEL-7-POE to connect to WiFi network, USB or board adapter 5.8Ghz

This articles explains how to configure our board to connect to our WiFi network. This procedure will work on Linux, Windows and Mac computer.

Insert the Raspbian MicroSD in your PC and open its content.

Using an ASCII editor create a file called /boot/wpa_supplicant.conf with this contents:

ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
country=IT

network={
    ssid="your_SSID"
    psk="your_PSK"
    key_mgmt=WPA-PSK
}

Replace IT with your ISO country code, your_SSID with the name of your wireless access point name and your_PSK with your WiFi password.

Save and reboot your CM3 device with this MicroSD. If you need to change the WiFi access repeat this procedure. Note that after the first boot this file will be deleted.

Check WiFi device

$ lsusb
Bus 001 Device 004: ID 0e8d:7610 MediaTek Inc.

If request after reboot install driver

Driver installation:

https://www.raspberrypi.org/forums/viewtopic.php?t=205240

Insert these commands:

$ sudo mkdir /lib/firmware/mediatek

$ cd /lib/firmware/mediatek

$ sudo wget http://anduin.linuxfromscratch.org/sources/linux-firmware/mediatek/mt7610u.bin

$ sudo modprobe -r mt76x0

$ sudo modprobe mt76x0

$ sudo reboot

$ ifconfig

Example result:

wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.192.109  netmask 255.255.255.0  broadcast 192.168.192.255
        inet6 fe80::ea9:41d4:7ab4:273c  prefixlen 64  scopeid 0x20<link>
        ether 70:f1:1c:28:af:56  txqueuelen 1000  (Ethernet)
        RX packets 44  bytes 15932 (15.5 KiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 28  bytes 4601 (4.4 KiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

Home page CM3-Panel-7-poe technical documentation Buy