├── .gitignore ├── README.md ├── docs ├── about.md ├── css │ └── extra.css ├── diy │ ├── index.md │ ├── serial.md │ ├── src │ │ ├── find-serial-port.png │ │ ├── firewall.png │ │ ├── gl.inet_10.jpg │ │ ├── mechanical.png │ │ ├── menuconfig.png │ │ ├── opencase1.jpg │ │ ├── opencase2.jpg │ │ ├── pcb.jpg │ │ ├── putty.png │ │ ├── putty1.png │ │ ├── qrcode.png │ │ ├── serial.jpg │ │ ├── tftpd-install.png │ │ ├── tftpd-status.png │ │ ├── uboot_failsafe.png │ │ └── uboot_flashing.png │ └── uboot.md ├── domino │ ├── common │ │ ├── weaved.html │ │ └── weaved.md │ ├── hardware │ │ ├── core.html │ │ ├── core.md │ │ ├── index.html │ │ ├── index.md │ │ ├── pi.html │ │ ├── qi.html │ │ └── src │ │ │ ├── Domino-Core-Pinout.pdf │ │ │ ├── Domino-Pi-Pinout.pdf │ │ │ ├── Domino-Qi-Mini-Pinout.pdf │ │ │ ├── ams1117.jpg │ │ │ ├── core-di.jpg │ │ │ ├── core_pinout.jpg │ │ │ └── di.png │ ├── index.md │ ├── pi │ │ ├── audio.md │ │ ├── compile.html │ │ ├── compile.md │ │ ├── dual_eth.md │ │ ├── flashing.html │ │ ├── flashing.md │ │ ├── i2s.html │ │ ├── i2s.md │ │ ├── index.html │ │ ├── index.md │ │ ├── led.md │ │ ├── pi.md │ │ ├── serial.html │ │ ├── serial.md │ │ ├── single_eth.md │ │ ├── single_usb.md │ │ ├── spi.html │ │ ├── spi.md │ │ ├── spi_jtag.md │ │ ├── src │ │ │ ├── Domino-Dual-Ethernet-Pinout.pdf │ │ │ ├── Domino-I2S-Pinout.pdf │ │ │ ├── Domino-LED-Pinout.pdf │ │ │ ├── Domino-Pi-Pinout.pdf │ │ │ ├── Domino-Single-Ethernet-Pinout.pdf │ │ │ ├── adapter.jpg │ │ │ ├── assembly.jpg │ │ │ ├── assembly1.jpg │ │ │ ├── bonjour.jpg │ │ │ ├── driver.jpg │ │ │ ├── dual_eth1.jpg │ │ │ ├── dual_eth2.jpg │ │ │ ├── dual_eth3.jpg │ │ │ ├── dual_eth_pinout.jpg │ │ │ ├── editor.jpg │ │ │ ├── environments.jpg │ │ │ ├── first_time.jpg │ │ │ ├── first_time_reboot.jpg │ │ │ ├── flash-mount.jpg │ │ │ ├── flash-mount1.jpg │ │ │ ├── homepage.jpg │ │ │ ├── i2s-assembly.jpg │ │ │ ├── i2s1.jpg │ │ │ ├── i2s2.jpg │ │ │ ├── i2s3.jpg │ │ │ ├── i2s_pinout.jpg │ │ │ ├── led.jpg │ │ │ ├── led1.jpg │ │ │ ├── led2.jpg │ │ │ ├── led_pinout.jpg │ │ │ ├── login.jpg │ │ │ ├── luci.jpg │ │ │ ├── menuconfig-domino.png │ │ │ ├── menuconfig.png │ │ │ ├── mpg123.jpg │ │ │ ├── network.jpg │ │ │ ├── packages.png │ │ │ ├── pi-back.jpg │ │ │ ├── pi-connection.jpg │ │ │ ├── pi-headers.jpg │ │ │ ├── pi-headers1.jpg │ │ │ ├── pi-led-button.jpg │ │ │ ├── pi-powerup.jpg │ │ │ ├── pi.png │ │ │ ├── pi_pinout.jpg │ │ │ ├── putty.jpg │ │ │ ├── putty1.jpg │ │ │ ├── putty2.jpg │ │ │ ├── realterm.jpg │ │ │ ├── realterm1.jpg │ │ │ ├── rootfiles.png │ │ │ ├── serial-connection.jpg │ │ │ ├── single_eth1.jpg │ │ │ ├── single_eth2.jpg │ │ │ ├── single_eth3.jpg │ │ │ ├── single_eth_pinout.jpg │ │ │ ├── single_usb1.jpg │ │ │ ├── single_usb2.jpg │ │ │ ├── single_usb3.jpg │ │ │ ├── spi-jtag.jpg │ │ │ ├── spi_jtag1.jpg │ │ │ ├── spi_jtag2.jpg │ │ │ ├── system.jpg │ │ │ ├── uboot.jpg │ │ │ ├── uboot_console.jpg │ │ │ ├── upgrade.jpg │ │ │ ├── usb-disk.jpg │ │ │ ├── usb_combo1.jpg │ │ │ ├── usb_combo2.jpg │ │ │ ├── usb_combo3.jpg │ │ │ └── usb_combo4.jpg │ │ ├── usb_combo.md │ │ ├── using.html │ │ └── using.md │ ├── qi │ │ ├── arduino-yun.html │ │ ├── arduino-yun.md │ │ ├── base.md │ │ ├── index.html │ │ ├── index.md │ │ ├── mini.md │ │ ├── nodejs.html │ │ ├── nodejs.md │ │ ├── serial.html │ │ ├── serial.md │ │ └── src │ │ │ ├── Domino-Qi-Mini-Pinout.pdf │ │ │ ├── Domino-Qi-Pinout.pdf │ │ │ ├── arduino-ide.jpg │ │ │ ├── bonjour.jpg │ │ │ ├── crc.jpg │ │ │ ├── editing.jpg │ │ │ ├── editor.jpg │ │ │ ├── firsttime.jpg │ │ │ ├── homepage.jpg │ │ │ ├── lininoio-stop.png │ │ │ ├── lininoio-stop1.png │ │ │ ├── luci.jpg │ │ │ ├── luci1.jpg │ │ │ ├── mcuio.png │ │ │ ├── network.jpg │ │ │ ├── qi-assembly.jpg │ │ │ ├── qi-connection.jpg │ │ │ ├── qi-device.jpg │ │ │ ├── qi-disassembly.jpg │ │ │ ├── qi_base1.jpg │ │ │ ├── qi_base2.jpg │ │ │ ├── qi_base3.jpg │ │ │ ├── qi_mini1.jpg │ │ │ ├── qi_mini2.jpg │ │ │ ├── qi_mini3.jpg │ │ │ ├── qi_mini_back.jpg │ │ │ ├── qi_mini_pinout.jpg │ │ │ ├── qi_mini_top.jpg │ │ │ ├── qi_pinout.jpg │ │ │ ├── saveenv.jpg │ │ │ ├── system.jpg │ │ │ ├── uboot.png │ │ │ └── usb-disk.jpg │ └── src │ │ ├── core.png │ │ ├── core_pinout.jpg │ │ ├── domino-pi.png │ │ ├── domino-qi.png │ │ ├── logo-doc.png │ │ └── tree.jpg ├── favicon.png ├── index.md ├── mini │ ├── 3g4g.md │ ├── ar150rtc.md │ ├── ar300m.md │ ├── firmware.md │ ├── index.md │ ├── internet.md │ ├── lan.md │ ├── mifi.md │ ├── repeater.md │ ├── repeater_manager.md │ ├── src │ │ ├── 3g_1.png │ │ ├── 3g_2.png │ │ ├── ar150-rtc1.jpg │ │ ├── ar150-rtc2.jpg │ │ ├── ar150-rtc3.jpg │ │ ├── ar300m-performance.jpg │ │ ├── ar300m.jpg │ │ ├── button_leds.jpg │ │ ├── buttons.png │ │ ├── connect_to_router.jpg │ │ ├── connections.jpg │ │ ├── connections.png │ │ ├── connections1.jpg │ │ ├── connections3.png │ │ ├── connections4.png │ │ ├── dhcp.jpg │ │ ├── dhcp1.png │ │ ├── dns.jpg │ │ ├── dns_rebind.jpg │ │ ├── enable_5g.jpg │ │ ├── firmware.jpg │ │ ├── firmware1.jpg │ │ ├── firmware2.jpg │ │ ├── firmware3.jpg │ │ ├── firmware4.jpg │ │ ├── firmware5.jpg │ │ ├── internet_status.jpg │ │ ├── internet_status1.jpg │ │ ├── lan_ip.jpg │ │ ├── leds.png │ │ ├── macclone.jpg │ │ ├── main_ui.jpg │ │ ├── meunconfig-ar300m-nand.jpg │ │ ├── meunconfig-ar300m.jpg │ │ ├── mifi_connection.jpg │ │ ├── mifi_connection_status.jpg │ │ ├── mifi_pcb.jpg │ │ ├── mifi_start.jpg │ │ ├── password.jpg │ │ ├── pppoe.png │ │ ├── putty_ssh.png │ │ ├── putty_ssh1.png │ │ ├── putty_ssh2.png │ │ ├── region.jpg │ │ ├── relayd.pdf │ │ ├── repeater-bridge.jpg │ │ ├── repeater.jpg │ │ ├── repeater_connected.jpg │ │ ├── repeater_manager.png │ │ ├── static.png │ │ ├── tethering.png │ │ ├── tethering1.jpg │ │ ├── uboot-ar300m.png │ │ ├── upgrade.jpg │ │ ├── verizon_apn.jpg │ │ ├── wan_status.jpg │ │ ├── wds.png │ │ ├── wds1.png │ │ ├── welcome.jpg │ │ ├── wifi_advanced.png │ │ ├── wifi_advanced1.png │ │ ├── wifi_leds.png │ │ ├── wifi_multi_ssid.jpg │ │ ├── wifi_multi_ssid1.jpg │ │ ├── wifi_onoff.png │ │ ├── wifi_setting.jpg │ │ ├── wifi_status.jpg │ │ ├── wisp.png │ │ └── wisp1.png │ └── wifi.md ├── navigation.md ├── openwrt │ ├── images │ │ ├── 1522164376006.jpg │ │ ├── 1522164842915.png │ │ ├── 1522205896331.png │ │ ├── 1522222018396.png │ │ ├── 1522224457420.png │ │ ├── 1522224501240.png │ │ ├── 1522238777867.png │ │ ├── 1522905053283.png │ │ ├── 1522915231698.png │ │ ├── 1522915321961.png │ │ ├── 1522915409158.png │ │ ├── 1522915513718.png │ │ ├── 1522915626797.png │ │ ├── 1522915767708.png │ │ ├── 1522915897942.png │ │ ├── 1522916277644.png │ │ ├── 1522916496892.png │ │ ├── 1523029479389.png │ │ ├── 1523031035400.png │ │ ├── 1523031072950.png │ │ ├── 1523031103769.png │ │ ├── Advance-Root-Login.png │ │ ├── PuTTY Install-1.png │ │ ├── PuTTY-Install-2.png │ │ ├── PuTTY-Install-3.png │ │ ├── PuTTY-Install-4.png │ │ ├── Removed-Host-keygen.png │ │ ├── SS1.png │ │ ├── SSH-Login.png │ │ ├── SSH-in-1.png │ │ ├── SSH-in-2.png │ │ ├── SSH-in-root.png │ │ ├── Setup-PuTTY-1.png │ │ ├── Setup-PuTTY-2.png │ │ ├── Setup-PuTTY-3.png │ │ ├── Start SS Server.png │ │ ├── Ubuntu sshin router-3.png │ │ ├── Ubuntu-Login.png │ │ ├── Ubuntu-sshin-router-1.png │ │ ├── Ubuntu-sshin-router-2.png │ │ ├── VI-ss-verver.png │ │ ├── remove-ssh-keygen.png │ │ ├── ss-server config-2.png │ │ ├── ss-server-config.png │ │ └── ssh-wq.png │ ├── index.md │ ├── openvpn.md │ ├── shadowsocks.md │ ├── src │ │ ├── astrill_openvpn1.jpg │ │ ├── astrill_openvpn2.jpg │ │ ├── cups1.jpg │ │ ├── cups2.jpg │ │ ├── expressvpn.jpg │ │ ├── hidemyass.jpg │ │ ├── l2tp │ │ │ ├── l2tp_0.jpg │ │ │ ├── l2tp_1.jpg │ │ │ ├── l2tp_2.jpg │ │ │ └── l2tp_3.jpg │ │ ├── openvpn │ │ │ ├── 1.jpg │ │ │ ├── 11.jpg │ │ │ ├── 12.jpg │ │ │ ├── 13.jpg │ │ │ ├── 14.jpg │ │ │ ├── 15.jpg │ │ │ ├── 16.jpg │ │ │ ├── 17.jpg │ │ │ ├── 18.jpg │ │ │ ├── 2.jpg │ │ │ ├── 3.jpg │ │ │ ├── 4.jpg │ │ │ ├── 5.jpg │ │ │ ├── 6.jpg │ │ │ ├── 7.jpg │ │ │ ├── AirVPN1.png │ │ │ ├── AirVPN2.png │ │ │ ├── AirVPN3.png │ │ │ ├── Astrill1.png │ │ │ ├── Astrill2.png │ │ │ ├── Astrill3.png │ │ │ ├── Astrill4.png │ │ │ ├── CactusVPN1.jpg │ │ │ ├── ExpressVPN1.jpg │ │ │ ├── ExpressVPN2.png │ │ │ ├── ExpressVPN3.png │ │ │ ├── KeepSolid1.png │ │ │ ├── KeepSolid2.png │ │ │ ├── KeepSolid3.png │ │ │ ├── ProXPN1.jpg │ │ │ ├── ProXPN2.jpg │ │ │ ├── ProXPN3.jpg │ │ │ ├── SaferVPN1.jpg │ │ │ ├── StrongVPN1.png │ │ │ ├── StrongVPN2.png │ │ │ ├── StrongVPN3.png │ │ │ ├── StrongVPN4.png │ │ │ ├── StrongVPN5.png │ │ │ ├── TCPVPN1.jpg │ │ │ ├── TCPVPN2.jpg │ │ │ ├── TCPVPN3.jpg │ │ │ ├── VPNAC1.jpg │ │ │ ├── VPNBook1.jpg │ │ │ ├── VPNGate1.jpg │ │ │ ├── VPNGate2.jpg │ │ │ ├── finchvpn1.jpg │ │ │ ├── finchvpn2.jpg │ │ │ ├── finchvpn3.jpg │ │ │ ├── finchvpn4.jpg │ │ │ ├── finchvpn5.jpg │ │ │ └── openvpn_led.jpg │ │ ├── openvpn_finch1.jpg │ │ ├── openvpn_finch2.jpg │ │ ├── openvpn_finch3.jpg │ │ ├── openvpn_finch4.jpg │ │ ├── proxpn.png │ │ ├── strongvpn.jpg │ │ ├── tor │ │ │ ├── 3g.jpg │ │ │ ├── button_leds.jpg │ │ │ ├── first_time.jpg │ │ │ ├── homepage.jpg │ │ │ ├── login.jpg │ │ │ ├── luci.jpg │ │ │ ├── network.jpg │ │ │ ├── repeater.jpg │ │ │ ├── system.jpg │ │ │ └── upgrade.jpg │ │ ├── torguard.jpg │ │ └── torguard1.jpg │ ├── tether.md │ └── tor.md ├── service.md ├── smartrouter │ └── images │ │ └── qrcode.png └── src │ └── services.jpg ├── gl_theme ├── 404.html ├── __init__.py ├── __init__.pyc ├── base.html ├── content.html ├── css │ ├── base.css │ ├── bootstrap-custom.min.css │ ├── font-awesome-4.5.0.css │ └── highlight.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ ├── favicon.ico │ ├── grid.png │ └── logo.png ├── js │ ├── base.js │ ├── bootstrap-3.0.3.min.js │ ├── highlight.pack.js │ └── jquery-1.10.2.min.js ├── license │ └── highlight.js │ │ └── LICENSE ├── main.html ├── nav-sub.html ├── nav.html ├── search.html └── toc.html └── mkdocs.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /site/ 2 | /index.php 3 | /auto.php 4 | /pull.sh 5 | /robot.txt 6 | /.htaccess 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | #GLI documentation 2 | 3 | 4 | This is the docs of all GLI products. You can view on http://www.gl-inet.com/docs/ 5 | 6 | 7 | 8 | 9 | Contents available 10 | =================== 11 | 12 | [Mini Router Quick Setup](docs/mini/index.md) 13 | 14 | [Mini Router Internet Setup](docs/mini/internet.md) 15 | 16 | [Mini Router 3G, 4G](docs/mini/3g4g.md) 17 | 18 | [Mini Router AR300M](docs/mini/ar300m.md) 19 | 20 | [Mini Router MiFi](docs/mini/mifi.md) 21 | 22 | [Mini Router LAN IP](docs/mini/lan.md) 23 | 24 | [Mini Router WiFi Settings](docs/mini/wifi.md) 25 | 26 | [Mini Router Reset WISP Repeater](docs/mini/repeater.md) 27 | 28 | [Mini Router firmware upgrade](docs/mini/firmware.md) 29 | 30 | [Using RTC on GL-AR150](docs/mini/ar150rtc.md) 31 | 32 | [Using **OpenVPN** on Mini routers](docs/openwrt/openvpn.md) 33 | 34 | [Using **Tor** on Mini routers](docs/openwrt/tor.md) 35 | 36 | [Using **EasyTether** on Mini routers](docs/openwrt/tether.md) 37 | 38 | [Working with UART & serial](docs/diy/serial.md) 39 | 40 | [Working with Uboot](docs/diy/uboot.md) 41 | 42 | [Domino Hardware and instructions](docs/domino/index.md) -------------------------------------------------------------------------------- /docs/about.md: -------------------------------------------------------------------------------- 1 | About Us 2 | ========= 3 | 4 | GL Innovations 5 | 6 | GLi has offices in Shenzhen and Hong Kong. 7 | 8 | At GLi, our vision is to make the life simpler and easier. We are the world-class smart home solution provider, offering quality products and services empowered with the state-of-the-art AI algorithms. 9 | 10 | Founded in 2014 by an international team of senior scientists and engineers, GLi starts its business on smart routers and modules – the kernel of the smart home solution. Our routers convert your local devices such as cameras, storages, 3G adaptors into personal clouds for easier sharing or remote control. Equipped with advanced AI algorithms, our routers ensure everything works with its best performance. 11 | 12 | Domino is GLi's Opensource-open hardware project. 13 | 14 | -------------------------------------------------------------------------------- /docs/css/extra.css: -------------------------------------------------------------------------------- 1 | div.col-md-9 h1:first-of-type { 2 | text-align: center; 3 | font-size: 60px; 4 | font-weight: 300; 5 | } 6 | 7 | div.col-md-9 p:first-of-type { 8 | text-align: center; 9 | } 10 | 11 | div.col-md-9 p.admonition-title:first-of-type { 12 | text-align: left; 13 | } 14 | 15 | div.col-md-9 h1:first-of-type .headerlink { 16 | display: none; 17 | } 18 | 19 | code.no-highlight { 20 | color: black; 21 | } 22 | body{ 23 | # padding-top:70px !important; 24 | } 25 | -------------------------------------------------------------------------------- /docs/diy/index.md: -------------------------------------------------------------------------------- 1 | This catalog will contain the DIY skills based on OpenWrt boards and routers. -------------------------------------------------------------------------------- /docs/diy/serial.md: -------------------------------------------------------------------------------- 1 | Connection UART serial 2 | =================== 3 | 4 | Connections 5 | ---------- 6 | 7 | Serial pins are the most used pins for DIY users. You can connect to a USB UART adapter as in the picture. 8 | 9 | ![UART](src/serial.jpg) 10 | 11 | Linux (ubuntu)/MAC 12 | ------------ 13 | In Linux or OSX, when you plug the USB UART adapter to your computer, the driver should already be installed. Check if you have device registered. 14 | ``` 15 | $ls /dev/ttyUSB* 16 | /dev/ttyUSB0 17 | ``` 18 | you need to have kermit to connect to serial. 19 | ``` 20 | $sudo apt-get install gkermit 21 | ``` 22 | 23 | Then you need to make the configuration file for kermit: ~/.kermrc. The content should be: 24 | ``` 25 | set line /dev/ttyUSB0 26 | set speed 115200 27 | set carrier-watch off 28 | set handshake none 29 | set flow-control none 30 | robust 31 | set file type bin 32 | set file name lit 33 | set rec pack 1000 34 | set send pack 1000 35 | set window 5 36 | ``` 37 | 38 | Now connect to the device using root: 39 | ``` 40 | $sudo kermit -c 41 | Connecting to /dev/ttyUSB0, speed 115200 42 | Escape character: Ctrl-\ (ASCII 28, FS): enabled 43 | Type the escape character followed by C to get back, 44 | or followed by ? to see other options. 45 | ---------------------------------------------------- 46 | 47 | ``` 48 | 49 | When you have finished, press `Ctrl-\` then `c` to quit kermit. 50 | 51 | Windows 52 | --------- 53 | When connecting the USB UART adapter to your computer, you may need to install drivers for them. The drivers can be download here: somewhere. 54 | 55 | Now you will be able to find the serial COM port (in this example: `COM4`) in device manger. 56 | 57 | ![Com](src/find-serial-port.png) 58 | 59 | Install a terminal software. putty is recommended. You need to set COM port `COM4`, speed `115200` and connection type `Serial`. Click "Open". 60 | 61 | 62 | ![Putty](src/putty.png) 63 | 64 | You will be displayed a black window. If you turn on your device now, you will see the console output of the box. 65 | 66 | 67 | ![Putty](src/putty1.png) 68 | 69 | Dual Serial connection on Domino Pi 70 | ------------------------------- 71 | Domino Pi has dual serial connection, please refer to Domino Pi Serial for details. 72 | 73 | ## Discussions 74 | -------------------------------------------------------------------------------- /docs/diy/src/find-serial-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/find-serial-port.png -------------------------------------------------------------------------------- /docs/diy/src/firewall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/firewall.png -------------------------------------------------------------------------------- /docs/diy/src/gl.inet_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/gl.inet_10.jpg -------------------------------------------------------------------------------- /docs/diy/src/mechanical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/mechanical.png -------------------------------------------------------------------------------- /docs/diy/src/menuconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/menuconfig.png -------------------------------------------------------------------------------- /docs/diy/src/opencase1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/opencase1.jpg -------------------------------------------------------------------------------- /docs/diy/src/opencase2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/opencase2.jpg -------------------------------------------------------------------------------- /docs/diy/src/pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/pcb.jpg -------------------------------------------------------------------------------- /docs/diy/src/putty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/putty.png -------------------------------------------------------------------------------- /docs/diy/src/putty1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/putty1.png -------------------------------------------------------------------------------- /docs/diy/src/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/qrcode.png -------------------------------------------------------------------------------- /docs/diy/src/serial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/serial.jpg -------------------------------------------------------------------------------- /docs/diy/src/tftpd-install.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/tftpd-install.png -------------------------------------------------------------------------------- /docs/diy/src/tftpd-status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/tftpd-status.png -------------------------------------------------------------------------------- /docs/diy/src/uboot_failsafe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/uboot_failsafe.png -------------------------------------------------------------------------------- /docs/diy/src/uboot_flashing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/diy/src/uboot_flashing.png -------------------------------------------------------------------------------- /docs/domino/common/weaved.md: -------------------------------------------------------------------------------- 1 | Using Weaved Cloud 2 | 3 | #Install Weaved -------------------------------------------------------------------------------- /docs/domino/hardware/core.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/hardware/core.md: -------------------------------------------------------------------------------- 1 | Domino Core 2 | ================ 3 | 4 | Pinout diagram 5 | ----------------- 6 | 7 | Domino Core is based on a Atheros AP121 design and protected by a NDA with Qualcomm. So we cannot publish the design. However, we have made comprehensive pinout diagram of the Core board. 8 | 9 | ![Domino Core Pinout](src/core_pinout.jpg) 10 | 11 | [Domino Core Pinout PDF](src/Domino-Core-Pinout.pdf) 12 | 13 | 14 | Domino Di base board 15 | ------------------------ 16 | 17 | Domino Di is a bare PCB for playing with Domino Core. You can solder the Domino Core onto the Di board as illustrated in this picture. 18 | 19 | ![Domino Di](src/core-di.jpg) 20 | 21 | 22 | The design of Domino Di in github: https://github.com/domino-team/domino-hardware. Please check out the schematic, layout and BOM. 23 | 24 | The components required 25 | ------------------------- 26 | 27 | To make it work, here is the components that you should solder onto the Di board: 28 | 29 | ![Domino Di](src/di.png) 30 | 31 | The minimum requirements is to solder the `AMS1117` for power and zero ohm `R6`. 32 | 33 | ![AMS1117](src/ams1117.jpg) 34 | 35 | It is better to solder `C3` and `C7` to make it works better. 36 | 37 | To make the PCB antenna work, solder 0ohm `R8` and `R10`. Otherwise, connect a uFL antenna. 38 | 39 | To use LED and toggle buttons, solder the other required components. 40 | -------------------------------------------------------------------------------- /docs/domino/hardware/index.md: -------------------------------------------------------------------------------- 1 | Getting Started 2 | 3 | #Hardware pinout diagram 4 | As docs for hardware is comming, you can refer to the detailed pinout diagram first for your project. 5 | 6 | [Domino Core Pinout Diagram](src/Domino-Core-Pinout.pdf) 7 | 8 | [Domino Pi Pinout Diagram](src/Domino-Pi-Pinout.pdf) 9 | 10 | [Domino Qi Mini Diagram](src/Domino-Qi-Mini-Pinout.pdf) -------------------------------------------------------------------------------- /docs/domino/hardware/pi.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/hardware/qi.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/hardware/src/Domino-Core-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/Domino-Core-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/hardware/src/Domino-Pi-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/Domino-Pi-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/hardware/src/Domino-Qi-Mini-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/Domino-Qi-Mini-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/hardware/src/ams1117.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/ams1117.jpg -------------------------------------------------------------------------------- /docs/domino/hardware/src/core-di.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/core-di.jpg -------------------------------------------------------------------------------- /docs/domino/hardware/src/core_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/core_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/hardware/src/di.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/hardware/src/di.png -------------------------------------------------------------------------------- /docs/domino/index.md: -------------------------------------------------------------------------------- 1 | Getting started with Domino Kits 2 | =================== 3 | 4 | FAQ 5 | ------------------- 6 | 7 | **(1) What is the WiFi password?** 8 | 9 | ``` 10 | It is "goodlife". 11 | ``` 12 | 13 | **(1) How can I connect to the board** 14 | 15 | ``` 16 | You can connect to it via IP address, which is 192.168.8.1 via LAN/WiFi. 17 | You can also connect to it via http://domino.local 18 | ``` 19 | 20 | **(2) Why cannot I connect to http://domino.local?** 21 | 22 | ``` 23 | You need bonjour service. Download it from https://support.apple.com/kb/DL999?locale=en_US for windows. 24 | ``` 25 | 26 | **(3) Is it open hardware? ** 27 | 28 | ``` 29 | All the Domino boards are open hardware, which you can find the schematics and layout in [Github](https://github.com/domino-team/domino-hardware). 30 | Domino Core is based on Atheros proprietary reference design and is not open hardware. 31 | 32 | ``` 33 | 34 | 35 | What is in the whole kit 36 | ------------------------ 37 | 38 | Domino is a high-performance 802.11 bgn WiFi hardware platform, with a modular design architecture, unlimited extension capabilities and Arduino compatibility. 39 | 40 | Domino is designed using `Atheros AR9331 WiSoC` which is widely used in mini routers and IoT projects. 41 | 42 | ![Domono family](src/tree.jpg) 43 | 44 | The Domino Family has now 11 boards and more extensions will be developed. The tree structure of the boards is as illustrated. 45 | 46 | At the heart is Domino Core, which can then be extended into Domino Pi and Domino Qi. Domino Pi is a DEV platform for wifi and openwrt, it can be extended with various tile boards. Domino Qi is designed for Arduino compatible. Plug the Domino Qi Mini board onto the Domino Qi baseboard to turn it into a board fully compatible the ubiquitous Arduino Shield form factor. 47 | 48 | 49 | Domino Core 50 | -------------- 51 | 52 | Domino Core is the heart of Domino.IO. It is designed for makers to easily build their own products based on it. It is compact, `only 1.6 square inches with 60 castellated pins (2mm pitch), 3xEthernet, USB2.0, serial port, SPI, I2S, SLIC, SPDIF, JTAG, 9xLEDs and 29 GPIOs`. Check the the beautiful pinout diagram below for details. 53 | 54 | ![Domino Core](src/core.png) 55 | 56 | Go to the [Domino Core hardware](#!domino/hardware/core.md) for more details of the hardware. 57 | 58 | 59 | Domino Pi 60 | --------------- 61 | 62 | Domino Pi is designed both as a Domino Core development board and as an extension. You can develop your own board based on the Domino Pi. See the pinout diagram below. We have seven useful tile boards available, providing easy to use building blocks, enabling you to extend the Pi board as you wish. 63 | 64 | Domino Pi is with newest `OpenWrt` BB1407 and CC1505 firmware. 65 | 66 | ![Domino Pi](src/domino-pi.png) 67 | 68 | 69 | Go to the [Domino Pi section](pi/pi.md) for more details for how to use the Pi. 70 | 71 | 72 | 73 | Domino Qi 74 | ----------------- 75 | Domino Qi Mini is a small board that is a fully compatible derivative of the original `Arduino Yùn`, crammed into a tiny form factor. It is a low-cost, compact OpenWRT-based 802.11 bgn WiFi board based on Qualcomm/Atheros AR9331 WiSoC and on the Atmel `ATMega32U4 MCU`. Communication between the two chips is achieved using Arduino Yùn-compatible Bridge hardware and software library. 76 | Plug the Domino Qi Mini board onto the Domino Qi baseboard to turn it into a board `fully compatible with the ubiquitous Arduino Shield form factor` and benefit from hundreds of already existing shields for rapid prototyping. 77 | 78 | ![Domino Pi](src/domino-qi.png) 79 | 80 | 81 | Go to the [Domino Qi section](#!domino/qi/index.md) for more details for how to use the Qi. 82 | 83 | 84 | Where to get help 85 | ------------------ 86 | 87 | First you need to read this documentation. We will try our best to make the documentation complete and detailed. 88 | 89 | Second, we will have our own forum open later, when you will be ask questions there. 90 | 91 | Third, go the existing community of [OpenWrt](http://www.openwrt.org) if you want to explore the embedded Linux system, and go to [Arduino](http://arduino.cc) if you want to explore the features related to Arduino. 92 | 93 | 94 | # Discussions 95 | -------------------------------------------------------------------------------- /docs/domino/pi/audio.md: -------------------------------------------------------------------------------- 1 | Playing Audio and music 2 | ================ 3 | 4 | 5 | The hardware Setup 6 | -------------------- 7 | 8 | The I2S tile board connects to the left part of of Domino Pi, Thus you cannot connect Ethernet tiles without stackable headers. You can also connect to the Internet via WiFi without Ethernet. 9 | 10 | ![I2S assembly](src/i2s-assembly.jpg) 11 | 12 | The software 13 | --------------- 14 | 15 | The audio module is built into the Domino Pi firmware, but not loaded automatically, to load the module, use `insmod glzt_i2s`. 16 | 17 | 18 | ``` 19 | insmod glzt_i2s 20 | ``` 21 | 22 | To enable auto-load of the audio module, build a entry in `/etc/modules.d/` 23 | 24 | ``` 25 | echo glzt_i2s > /etc/modules.d/glzt_i2s 26 | ``` 27 | 28 | To play music, you can use `mpg123`. 29 | 30 | E.g. to play music in your usb mounted on `/mnt/sda1`, just do: 31 | 32 | ``` 33 | mpg123 /mnt/sda1/my_music.mp3 34 | ``` 35 | 36 | You can play Internet radio the same way: 37 | 38 | ``` 39 | mpg123 http://your-internet-radio.com/your-stream 40 | ``` 41 | 42 | ![mpg123](src/mpg123.jpg) 43 | -------------------------------------------------------------------------------- /docs/domino/pi/compile.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/pi/dual_eth.md: -------------------------------------------------------------------------------- 1 | Domino Dual Ethernet Tile Board 2 | ======================== 3 | 4 | Overview 5 | ------------------ 6 | 7 | When connected to the Domino Pi board, the Domino Dual Ethernet Tile adds 2x standard RJ45 IEEE 802.3 10/100MB Ethernet ports: 8 | 9 | * 1x LAN on port P0, DCE wiring (1=R+, 2=R-, 3=T+, 6=T-), lower RJ45 Jack 10 | * 1x WAN on port P4, DTE wiring (1=T+, 2=T-, 3=R+, 6=R-), upper RJ45 Jack 11 | * UART connectors 12 | 13 | The Domino Dual Ethernet Tile also includes the equivalent of the Domino LED Tile: 14 | 15 | * 1x Blue LED: WLAN (LED0) 16 | * 1x White LED: USB (LED1) 17 | * 4x Green LEDs: LAN1-4 (LED2-5) 18 | * 1x Red LED: WAN (LED6) 19 | * 1x Orange LED: SYS (LED7) 20 | * 1x Yellow LED: WPS (LED8) 21 | 22 | The Domino Dual Ethernet Tile connects as a West-side Tile. 23 | 24 | It is only compatible with the Domino Pi board, as the Domino Qi Mini does not feature 2x Ethernet ports. 25 | 26 | ![Dual Eth board ](src/dual_eth1.jpg) 27 | ![Dual Eth board ](src/dual_eth2.jpg) 28 | ![Dual Eth board ](src/dual_eth3.jpg) 29 | 30 | ``` 31 | Photo is not the newest. There is UART connector on the board now! 32 | ``` 33 | 34 | Specifications 35 | ---------------- 36 | 37 | Weight 21 g 38 | Dimensions 45.72 x 33.02 x 35 mm 39 | 40 | Pinout 41 | ------------- 42 | ![Dual Eth pinout ](src/dual_eth_pinout.jpg) 43 | 44 | [Pinout in PDF](src/Domino-Dual-Ethernet-Pinout.pdf) -------------------------------------------------------------------------------- /docs/domino/pi/i2s.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/pi/i2s.md: -------------------------------------------------------------------------------- 1 | Domino I2S Audio Tile Board 2 | ====================== 3 | 4 | Overview 5 | ------------- 6 | When connected to the Domino Pi board, the Domino I2S Tile adds audio capabilities and ports: 7 | 8 | * Wolfson WM8978 Stereo CODEC with Speaker Driver (Datasheet), faturing: 9 | * DAC SNR 98dB, THD -84dB ('A' weighted @ 48kHz) 10 | * ADC SNR 95dB, THD -84dB ('A' weighted @ 48kHz) 11 | * On-chip Headphone Driver with 'capless' option 12 | * 40mW per channel into 16ohm / 3.3V SPKVDD 13 | * 1W output power into 8ohm BTL speaker / 5V SPKVDD 14 | * Capable of driving piezo speakers 15 | * Stereo speaker drive configuration 16 | * Stereo Differential or mono microphone Interfaces 17 | * Programmable preamp gain 18 | * Psuedo differential inputs with common mode rejection 19 | * Programmable ALC / Noise Gate in ADC path 20 | * Low-noise bias supplied for electret microphones 21 | * Enhanced 3-D function for improved stereo separation 22 | * Digital playback limiter 23 | * 5-band Equaliser (record or playback) 24 | * Programmable ADC High Pass Filter (wind noise reduction) 25 | * Programmable ADC Notch Filter 26 | * Aux inputs for stereo analogue input signals or 'beep' 27 | * On-chip PLL supporting 12, 13, 19.2MHz and other clocks 28 | * Support for 8, 11.025, 12, 16, 22.05, 24, 32, 44.1 and 48kHz sample rates 29 | * Low power, low voltage - 2.5V to 3.6V (digital: 1.71V to 3.6V) 30 | * 5x5mm 32-lead QFN package 31 | * 3.5 mm Stereo Audio Jack (Tip: Left / Ring: Right / Sleeve: Ground): LINE OUT / HEADPHONE OUT 32 | * SPDIF Optical Transmitter: DIGITAL AUDIO OUT 33 | * On 2x edge header pins: Stereo SPEAKER OUT 34 | * Integrated ? 4.5 mm Mono Electret Microphone, also available on edge header pins 35 | * On 2x Pin Header: Stereo AUX IN 36 | 37 | The Domino Dual Ethernet Tile connects as a West-side Tile. 38 | 39 | It is only compatible with the Domino Pi board, as the Domino Qi Mini does not feature I2S interface. 40 | 41 | ![I2S board](src/i2s1.jpg) 42 | ![I2S board](src/i2s2.jpg) 43 | ![I2S board](src/i2s3.jpg) 44 | 45 | Specifications 46 | -------------------- 47 | 48 | | Specs | Value | 49 | |-----------------|-------------------| 50 | |Weight | 10 g | 51 | |Dimensions | 50.8 x 33.02 x 24 mm | 52 | |Audio CODEC | Wolfson WM8978 | 53 | |LINE OUT / HEADPHONE OUT | 3.5 mm Stereo Audio Jack | 54 | |DIGITAL AUDIO OUT | SPDIF Optical Transmitter | 55 | |SPEAKER OUT | 2x Edge Header Pins | 56 | |Microphone | Integrated ? 45 mm Mono Electret Microphone, 2x Edge Header Pins | 57 | |AUX IN | 2x Header Pins | 58 | 59 | Pinout 60 | ---------------- 61 | 62 | ![I2S Pinout](src/i2s_pinout.jpg) 63 | 64 | [Pinout in PDF](src/Domino-I2S-Pinout.pdf) 65 | 66 | 67 | Playing Audio and Music Using I2S board 68 | ----------------------------------------------------------- 69 | 70 | [Play Audio and Musci](audio.md) -------------------------------------------------------------------------------- /docs/domino/pi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/pi/index.md: -------------------------------------------------------------------------------- 1 | Getting started 2 | 3 | #Domino Pi headers 4 | 5 | Domino Pi has a Domino Core mounted onboard. When you first get your Pi, you need to learn about its headers. 6 | 7 | ![headers](src/pi-headers.jpg) 8 | 9 | When placed as shown in the picture, you can divide the header into a left part and a right part. The left part contains 18pins on each North and South connectors and the right part contains 10 pins from both North and South connectors. 10 | 11 | The left part can be used to mount Ethernet boards (including Single Ethernet and Dual Ethernet boards) and I2S board. While the right part can be used to mount USB boards (including Single USB and 3xUSB boards) and JTAG/SPI boards. Refer to the hardware section to make sure you mount the right extension boards in the right headers, otherwise you may break your Domino. 12 | 13 | For a more detailed marking of the headers, refer to this diagram. 14 | 15 | ![headers detailed](src/pi-headers1.jpg) 16 | 17 | ![Pi back](src/pi-back.jpg) 18 | 19 | #Assembly 20 | 21 | Put the Ethernet and USB tile boards aligned with Domino Pi as shown, then plug the tile boards to the headers. 22 | 23 | ![Assembly](src/assembly.jpg) 24 | 25 | Press the tile board firmly to the Domino Pi board. You can do the same for the Dual Ethernet board and the 3xUSB+MicroSD board. 26 | 27 | ![Assembly1](src/assembly1.jpg) 28 | 29 | 30 | 31 | For the LED board, just plug in the LED board as in this picture. Please make sure the LED board is plugged into the correct position by checking the header markings on the bottom of Domino Pi. 32 | 33 | ![LED](src/led.jpg) 34 | 35 | #Connections 36 | 37 | Connect your Domino with an Ethernet cable to your router. Then connect power to the MicroUSB connector on Domino Pi board and your board will be powered up! 38 | 39 | 40 | ![Connection](src/pi-connection.jpg) 41 | 42 | #Using Domino Pi 43 | 44 | When you see the LEDS (WAN, WLAN) light up, your Domino has booted up. Now using a browser (use Firefox or Chrome) to visit [http://domino.local/](http://domino.local/), you will be able to access the WebUi of Domino. 45 | 46 | Please visit [this page](using.html) to get more details on how to use the Domino Pi WebUi. 47 | -------------------------------------------------------------------------------- /docs/domino/pi/led.md: -------------------------------------------------------------------------------- 1 | Domino LED Tile Board 2 | =================== 3 | 4 | Overview 5 | ------------ 6 | 7 | When connected to the Domino Pi board, the Domino LED Tile adds the following LEDs: 8 | 9 | * 1x Blue LED: WLAN (LED0) 10 | * 1x White LED: USB (LED1) 11 | * 4x Green LEDs: LAN1-4 (LED2-5) 12 | * 1x Red LED: WAN (LED6) 13 | * 1x Orange LED: SYS (LED7) 14 | * 1x Yellow LEd: WPS (LED8) 15 | * The Domino LED Tile connects as a West-side Tile. 16 | 17 | It is only compatible with the Domino Pi board, as the Domino Qi Mini does not feature LED GPIOs, but instead integrates the standard Arduino YunTM LEDs. 18 | 19 | ![LED board](src/led1.jpg) 20 | ![LED board](src/led2.jpg) 21 | 22 | Specifications 23 | ----------------- 24 | 25 | Weight 1 g 26 | Dimensions 27.94 x 7.62 x 12 mm 27 | 28 | 29 | Pinout 30 | -------------- 31 | 32 | ![LED board](src/led_pinout.jpg) 33 | 34 | [Pinout in PDF](src/Domino-LED-Pinout.pdf) -------------------------------------------------------------------------------- /docs/domino/pi/pi.md: -------------------------------------------------------------------------------- 1 | Domino Pi Hardware 2 | ============ 3 | 4 | Overview 5 | ------------------ 6 | 7 | Domino Pi is a low-cost, compact OpenWRT-based 802.11 bgn WiFi development board based on Qualcomm/Atheros AR9331 WiSoC. 8 | 9 | ![Domino Pi](src/pi.png) 10 | 11 | The Domino Pi board extends the Domino Core module by adding the following features: 12 | 13 | * Integrated USB<->UART bridge for serial port (default to U-Boot / Linux console) 14 | * Integrated +5 V input / +3.3 V output, 2 A DC/DC power supply 15 | * Integrated 2.4 GHz WiFi PCB antenna 16 | * Integrated Jumpstart push button 17 | * Integrated Power and Wireless LEDs 18 | * Integrated 2x 28 pin, 2.54 mm pitch headers 19 | 20 | The dual edge headers provide: 21 | 22 | * USB 2.0 (host or slave) 23 | * 2 x 10/100MB Ethernet ports 24 | * SPI (MOSI, MISO, CLK, CS) 25 | * I2S (CK, WS, SD, MCK, MICIN) 26 | * SLIC 27 | * SPDIF Output 28 | * JTAG (TMS, TCK, TDI, TDO) 29 | * 9x LEDs (also used for bootstrap settings) 30 | * Up to 29 x GPIOs (multiplexed with other functions above) 31 | 32 | Specifications 33 | ------------------ 34 | 35 | | Specs | Value | 36 | |-----------------|----------------| 37 | | Weight | 16 g | 38 | | Dimensions | 71.12 x 33.02 x 10 mm | 39 | | CPU | AR9331, 400 MHz | 40 | | Memory | 16 MB SPI Flash and 64 MB DDR2 RAM | 41 | | RF Frequency | 2.4 GHz band | 42 | | Max Output Power | +21 dBm | 43 | | Wireless Standards | 802.11 bgn | 44 | | Antenna (port) | U.FL connector, built-in PCB antenna | 45 | | Power Supply | 5 V, max. power consumption 6.5 W | 46 | | Firmware | U-Boot, OpenWRT | 47 | | Available Interfaces | USB host/slave, 2 x Ethernet, SPI, I2S, SLIC, SPDIF, JTAG, 9x LEDs, 29 x GPIOs | 48 | | User Interfaces | USB UART bridge, Jumpstart push button, Power Led, Wireless LED | 49 | 50 | Pinout Diagram 51 | ------------------ 52 | ![Domino Pi](src/pi_pinout.jpg) 53 | 54 | Get in PDF format. 55 | 56 | [Domino Pi Pinout](src/Domino-Pi-Pinout.pdf) 57 | -------------------------------------------------------------------------------- /docs/domino/pi/serial.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/pi/serial.md: -------------------------------------------------------------------------------- 1 | Working with serial 2 | ================== 3 | 4 | It is important to have a USB-UART adapter and work with serial if you want to play with Domino. With serial, you will be able to access the console and have full control of the OpenWrt system and bootloader. 5 | 6 | USB-UART adapter 7 | ---------------- 8 | 9 | Domino Pi has a built-in USB-UART bridge. So you have two serial connectors, one is on the MicroUSB power connector and the other is on the Ethernet board, which is connected to the Domino Core. 10 | 11 | ![USB-UART](src/adapter.jpg) 12 | 13 | Just connect Domino Pi to your computer. It will be powered up and at the same time you will have access to the serial. 14 | 15 | Sometime you need to connect directly to the Domino Core UART, and you will need a USB-UART adapter. 16 | 17 | 18 | **ATTENTION**: If you are connecting with an external USB-UART adapter, be sure connect to the correct pins: 19 | 20 | ![Serial Connections](src/serial-connection.jpg) 21 | 22 | In Windows 23 | ------------ 24 | 25 | If you want to use connector 1, Windows will automatically detect the USB to UART Bridge and install drivers. 26 | 27 | ![USB-UART](src/driver.jpg) 28 | 29 | Find its com number. (Which is `COM36` in my case.) 30 | 31 | If you use your own USB UART adapter, you will have a com number also. (Which is `COM4` in my case.) 32 | 33 | You need a serial term, we recommend [PuTTY](http://http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html) and [RealTerm](http://realterm.sourceforge.net/). Download them for free. 34 | 35 | Launch PuTTY and input `COM36` as the "Serial line", `115200` as speed, check the Connection type as `Serial`, then click `Open`. 36 | 37 | ![USB-UART](src/putty.jpg) 38 | 39 | Then press `Enter` you will enter OpenWrt. 40 | 41 | ![USB-UART](src/putty1.jpg) 42 | 43 | You can also connect to `COM4` using the same way. 44 | 45 | ![USB-UART](src/putty2.jpg) 46 | 47 | At the same time, you can also connect to the serial using Connector 2. Execute realterm, fill the currect Baudrate `115200`, port number `36` and click `Open`. 48 | 49 | ![USB-UART](src/realterm.jpg) 50 | 51 | **ATTENTION** Only one term can connect to one serial device at the same time. 52 | 53 | Working with two serials 54 | ----------------------- 55 | 56 | In the above instructions, we used two terms connected to two serial ports: PuTTY connecting to Connector 2 (original uart of Domino Core) and RealTerm connecting to Connector 1 (the build in USB-UART bridge). Once you connect RealTerm, you will find that in PuTTY you cannot input anything, but you can input from RealTerm. 57 | 58 | ![USB-UART](src/realterm1.jpg) 59 | 60 | You can enable input in PuTTY by clearing `RTS` in RealTerm. Go to the "Pins" page and click "Clear" in RTS section. Now you will be able to input in PuTTY, but not in RealTerm. To enable input in RealTerm again, click "Set" in RTS section. 61 | 62 | In Linux (Ubuntu) 63 | ------------------- 64 | 65 | We only test in Ubuntu. For any other distro, if you have any questions, pls discuss in the community. 66 | 67 | In Ubuntu, when connecting Domino Pi to your computer's USB directly, it will be identified as `/dev/ttyUSB*`, e.g. `/dev/ttyUSB0` if you only have USB serial device. 68 | 69 | ###ckermit 70 | Download ckermit from http://www.columbia.edu/~kermit/ckermit.html#download or use `sudo apt-get install ckermit` to install it. 71 | 72 | ``` 73 | $ sudo apt-get install ckermit 74 | ``` 75 | 76 | make a file with name `.kermrc` in your home directory. The content is as following: 77 | ``` 78 | #cat ~/.kermrc 79 | 80 | set line /dev/ttyUSB0 81 | set speed 115200 82 | set carrier-watch off 83 | set handshake none 84 | set flow-control none 85 | robust 86 | set file type bin 87 | set file name lit 88 | set rec pack 1000 89 | set send pack 1000 90 | set window 5 91 | ``` 92 | 93 | Now execute kermit `sudo kermit -c` to get access to the console of your Domino Pi. 94 | ``` 95 | sudo kermit -c 96 | ``` 97 | 98 | If you have multiple serial devices, create one configure file for each device, and then put the file name as parameters. For example, for ttyUSB1, use `sudo kermit ~/.kermrc_ttyUSB1 -c`. 99 | ``` 100 | sudo kermit ~/.kermrc_ttyUSB1 -c 101 | ``` 102 | 103 | The escape key for kermit is `Ctrl`+`\` followed by `c`. 104 | 105 | Other tools 106 | ------------- 107 | 108 | You can also use `screen` or `cu` to access the serial. 109 | 110 | 111 | 112 | -------------------------------------------------------------------------------- /docs/domino/pi/single_eth.md: -------------------------------------------------------------------------------- 1 | Domino Single Eth Tile Board 2 | ===================== 3 | 4 | Introduction 5 | ---------------- 6 | 7 | When connected to the Domino Pi or Domino Qi Mini board, the Domino Single Ethernet Tile adds 1x standard RJ45 IEEE 802.3 10/100MB Ethernet port: 8 | 9 | * 1x WAN on port P4, DTE wiring (1=T+, 2=T-, 3=R+, 6=R-) 10 | * UART connectors 11 | 12 | The Domino Single Ethernet Tile also includes the equivalent of the Domino LED Tile: 13 | 14 | * 1x Blue LED: WLAN (LED0) 15 | * 1x White LED: USB (LED1) 16 | * 4x Green LEDs: LAN1-4 (LED2-5) 17 | * 1x Red LED: WAN (LED6) 18 | * 1x Orange LED: SYS (LED7) 19 | * 1x Yellow LED: WPS (LED8) 20 | * The Domino Single Ethernet Tile connects as a West-side Tile. 21 | 22 | It is compatible with the Domino Pi and Domino Qi Mini boards. 23 | 24 | ![Single Eth board ](src/single_eth1.jpg) 25 | ![Single Eth board ](src/single_eth2.jpg) 26 | ![Single Eth board ](src/single_eth3.jpg) 27 | 28 | ``` 29 | **The picture is not the newest! The newest is with serial connectors** 30 | ``` 31 | 32 | Specifications 33 | --------------------- 34 | 35 | Weight 11 g 36 | Dimensions 45.72 x 33.02 x 25 mm 37 | 38 | Pinout 39 | ---------------- 40 | 41 | ![Pinout](src/single_eth_pinout.jpg) 42 | 43 | [Pinout in PDF](src/Domino-Single-Ethernet-Pinout.pdf) -------------------------------------------------------------------------------- /docs/domino/pi/single_usb.md: -------------------------------------------------------------------------------- 1 | Domino Single USB Tile Board 2 | ========================= 3 | 4 | Overview 5 | ---------------- 6 | When connected to the Domino Pi or Domino Qi Mini board, the Domino Single USB Tile adds 1x standard USB 2.0 USB Type A Master or Slave port. 7 | 8 | Features: 9 | 10 | * Break out the USB pins to physical USB-A 11 | * USB power controlled by GPIO6 12 | 13 | **If you USB has no power using your own firmware, most of time, it is because of GPIO6 is set to Low. Set it to high to enable USB power** 14 | 15 | ```bash 16 | # Enable the USB power by using GPIO6 17 | 18 | echo "6" > /sys/class/gpio/export 19 | echo "out" > /sys/class/gpio/6/direction 20 | echo "1" > /sys/class/gpio/gpio6/value 21 | ``` 22 | 23 | 24 | The Domino Single USB Tile connects as an East-side Tile. 25 | 26 | It is compatible with the Domino Pi and Domino Qi Mini boards. 27 | 28 | 29 | ![Single USB board ](src/single_usb1.jpg) 30 | ![Single USB board ](src/single_usb2.jpg) 31 | ![Single USB board ](src/single_usb3.jpg) 32 | 33 | 34 | Specifications 35 | -------------------- 36 | 37 | Weight 4 g 38 | Dimensions 5.72 x 33.02 x 25 mm -------------------------------------------------------------------------------- /docs/domino/pi/spi.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/pi/spi.md: -------------------------------------------------------------------------------- 1 | SPI/JTAG tile 2 | ======== 3 | 4 | Mounting 5 | ---------- 6 | When using the SPI/JTAG tile board, it is important to mount the tile board in the correct direction. The jtag pins should face outside, as shown in the picture below. 7 | 8 | ![spi/jtag tile](src/spi_jtag1.jpg) 9 | 10 | When connecting the flash adapter, connect it as shown in the picture below. The flash should be mounted on the bottom part of the adapter. Be sure the flash is mounted in the connector properly by chekcing that the dot on the flash chip is in the correct corner. 11 | 12 | ![Flash mount](src/flash-mount1.jpg) 13 | 14 | **ATTENTION:** If you mount the flash reversed, it will burn in seconds when powered on. 15 | 16 | Debrick using SPI tile board 17 | ---------------------------- 18 | If you have a problem with uboot and it cannot boot up totally, the only way to fix this is to use the SPI/JTAG tile board. Refer to the following link for info. 19 | https://www.kickstarter.com/projects/706167548/dominoio-an-open-hardware-wifi-platform-for-things/posts/1200391 20 | 21 | -------------------------------------------------------------------------------- /docs/domino/pi/spi_jtag.md: -------------------------------------------------------------------------------- 1 | Domino SPI/JTAG Tile Board 2 | === 3 | 4 | Overview 5 | ------------ 6 | 7 | When connected to the Domino Pi board, the Domino SPI/JTAG Tile adds several interesting features for developers: 8 | 9 | * Of 25 wide-body SOP8 IC Test Socket / programmer adapter OTS-20 (8X2) 1.27-01 dual position SOP8 adapter SOP8 to DIP8 200mil 10 | * SOP8 IC footprint 11 | * Standard MIPS/JTAG 2 x 7 R/A shrouded header 12 | * RESET push button 13 | * Jumper to control Flash Write Protection with AR9331 GPIO24 14 | * The Domino SPI/JTAG Tile connects as an East-side Tile. 15 | 16 | It is compatible with the Domino Pi board only. 17 | 18 | ![SPI JTAG board](src/spi_jtag1.jpg) 19 | ![SPI JTAG board](src/spi_jtag2.jpg) 20 | 21 | Specifications 22 | ------------------- 23 | Weight 14 g 24 | Dimensions 25.4 x 33.02 x 37 mm 25 | 26 | 27 | Debricking Domino Pi using SPI/JTAG tile board 28 | -------------------- 29 | 30 | [Debricking guidance](spi.md) -------------------------------------------------------------------------------- /docs/domino/pi/src/Domino-Dual-Ethernet-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/Domino-Dual-Ethernet-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/pi/src/Domino-I2S-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/Domino-I2S-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/pi/src/Domino-LED-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/Domino-LED-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/pi/src/Domino-Pi-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/Domino-Pi-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/pi/src/Domino-Single-Ethernet-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/Domino-Single-Ethernet-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/pi/src/adapter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/adapter.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/assembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/assembly.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/assembly1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/assembly1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/bonjour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/bonjour.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/driver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/driver.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/dual_eth1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/dual_eth1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/dual_eth2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/dual_eth2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/dual_eth3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/dual_eth3.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/dual_eth_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/dual_eth_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/editor.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/environments.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/environments.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/first_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/first_time.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/first_time_reboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/first_time_reboot.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/flash-mount.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/flash-mount.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/flash-mount1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/flash-mount1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/homepage.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/i2s-assembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/i2s-assembly.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/i2s1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/i2s1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/i2s2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/i2s2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/i2s3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/i2s3.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/i2s_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/i2s_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/led.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/led1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/led1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/led2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/led2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/led_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/led_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/login.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/luci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/luci.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/menuconfig-domino.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/menuconfig-domino.png -------------------------------------------------------------------------------- /docs/domino/pi/src/menuconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/menuconfig.png -------------------------------------------------------------------------------- /docs/domino/pi/src/mpg123.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/mpg123.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/network.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/packages.png -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-back.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-connection.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-headers.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-headers.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-headers1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-headers1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-led-button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-led-button.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi-powerup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi-powerup.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi.png -------------------------------------------------------------------------------- /docs/domino/pi/src/pi_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/pi_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/putty.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/putty.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/putty1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/putty1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/putty2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/putty2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/realterm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/realterm.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/realterm1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/realterm1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/rootfiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/rootfiles.png -------------------------------------------------------------------------------- /docs/domino/pi/src/serial-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/serial-connection.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_eth1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_eth1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_eth2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_eth2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_eth3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_eth3.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_eth_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_eth_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_usb1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_usb1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_usb2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_usb2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/single_usb3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/single_usb3.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/spi-jtag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/spi-jtag.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/spi_jtag1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/spi_jtag1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/spi_jtag2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/spi_jtag2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/system.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/uboot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/uboot.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/uboot_console.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/uboot_console.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/upgrade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/upgrade.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/usb-disk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/usb-disk.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/usb_combo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/usb_combo1.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/usb_combo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/usb_combo2.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/usb_combo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/usb_combo3.jpg -------------------------------------------------------------------------------- /docs/domino/pi/src/usb_combo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/pi/src/usb_combo4.jpg -------------------------------------------------------------------------------- /docs/domino/pi/usb_combo.md: -------------------------------------------------------------------------------- 1 | Domino 3USB+MicroSD Combo Title Board 2 | ================================= 3 | 4 | Overview 5 | -------------- 6 | 7 | When connected to the Domino Pi or Domino Qi Mini board, the Domino 3x USB / MicroSD Combo Tile adds: 8 | 9 | * 1x **USB-A** R/A Horizontal Socket for USB 2.0 Low / Full / High-speed Host Port 10 | * 2x USB 2.0 Low / Full / High-speed Host Ports on standard **PC USB front-panel-type** 2x5 Header 11 | * 1x **MicroSD Card Slot** (Push to Lock / Push to Unlock) 12 | * USB **power control** by GPIO6 13 | 14 | **If you USB has no power using your own firmware, most of time, it is because of GPIO6 is set to Low. Set it to high to enable USB power** 15 | 16 | ```bash 17 | # Enable the USB power by using GPIO6 18 | 19 | echo "6" > /sys/class/gpio/export 20 | echo "out" > /sys/class/gpio/6/direction 21 | echo "1" > /sys/class/gpio/gpio6/value 22 | ``` 23 | 24 | The Domino 3x USB / MicroSD Combo Tile connects as an East-side Tile. 25 | 26 | It is compatible with the Domino Pi and Domino Qi Mini boards. 27 | 28 | ![USB combo ](src/usb_combo1.jpg) 29 | ![USB combo ](src/usb_combo2.jpg) 30 | ![USB combo ](src/usb_combo3.jpg) 31 | 32 | 33 | Specifications 34 | -------------------- 35 | 36 | Weight 7 g 37 | Dimensions 34.54 x 33.02 x 15 mm 38 | 39 | -------------------------------------------------------------------------------- /docs/domino/pi/using.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/qi/base.md: -------------------------------------------------------------------------------- 1 | Domino Qi Baseboard 2 | ================ 3 | 4 | Overview 5 | ------------ 6 | 7 | The Domino Qi Base Board is an adapter board for the Domino Mini Board. 8 | 9 | Plug the Domino Qi Mini Board onto this Domino Qi Base Board in order to be fully compatible with the ubiquitous ArduinoTM Shield form factor and benefit from hundreds of already existing shields for rapid prototyping. 10 | 11 | ![Qi Baseboard](src/qi_base1.jpg) 12 | ![Qi Baseboard](src/qi_base2.jpg) 13 | ![Qi Baseboard](src/qi_base3.jpg) 14 | 15 | The Domino Qi Base Board extends the Domino Qi Mini Board by adding the following features: 16 | 17 | * 3x USB 2.0 Low / Full / High-speed USB Hub + MicroSD Card Reader Combo Chip AU6350-MGL (Datasheet) 18 | * 1x IEEE 802.3 10/100 Ethernet Port 19 | * 1x USB-A R/A Vertical Socket for USB 2.0 Low / Full / High-speed Host Port 20 | * 2x USB 2.0 Low / Full / High-speed Host Ports on standard PC USB front-panel-type 2x5 Header 21 | * 1x MicroSD Card Slot (Push to Lock / Push to Unlock) 22 | * 1x MicroUSB connector for +5V power supply, featuring an onboard +3.3V/2A switching DC/DC converter 23 | 24 | The Domino Qi Base Board provides the standard ArduinoTM shield connectors: 25 | 26 | * ATMega32U4 ICSP (MOSI, MISO, SCK, SS) 27 | * ATMega32U4 RESET pin 28 | * ATMega32U4 UART (TXD1, RXD1) 29 | * ATMega32U4 I2C (SDA, SCL) 30 | * ATMega32U4 digital (+ PWM) pins (D4-D6 and IO8-13) 31 | * ATmega Analog pins (A0-5 + AREF) 32 | * Arduino YunTM-compatible pins (HANDSHAKE, GP6) 33 | * +5V, +3.3V and GND power supply pins 34 | 35 | **Note**: Domino is not connected to ArduinoTM and the Domino Qi Mini product is a derivative. Any technical support must be directed to us, not to ArduinoTM. 36 | 37 | Specifications 38 | --------------------- 39 | 40 | Specs | Value 41 | ----------|---------- 42 | Weight | 20 g 43 | Dimensions | 68.58 x 53.34 x 17 mm 44 | Power Supply | 5 V, max. 45 | power consumption | 6.5 W 46 | Available Interfaces | 3x USB host, 1 x Ethernet, ICSP, ATMega32U4 Digital pins (+ PWM), ATmega32U4 Analog pins, Arduino Yun HANDSHAKE + GP6, Power Supply pins 47 | 48 | 49 | Pinout 50 | ------------- 51 | 52 | ![Qi Pinout](src/qi_pinout.jpg) 53 | 54 | [Qi Pinout in PDF](src/Domino-Qi-Pinout.pdf) 55 | -------------------------------------------------------------------------------- /docs/domino/qi/index.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/qi/mini.md: -------------------------------------------------------------------------------- 1 | Domino Qi Mini 2 | ============= 3 | 4 | Overview 5 | --------- 6 | 7 | Domino Qi Mini is a small-sized board that is a fully compatible derivative of the original Arduino YunTM, crammed into a tiny form factor. 8 | 9 | Plug it onto the Domino Qi baseboard in order to be fully compatible with the ubiquitous ArduinoTM Shield form factor and benefit from hundreds of already existing shields for rapid prototyping. 10 | 11 | Domino Qi Mini is a low-cost, compact OpenWRT-based 802.11 bgn WiFi board based on Qualcomm/Atheros AR9331 WiSoC and on the Atmel ATMega32U4 MCU. Communication between the 2 chips is achieved using an Arduino YunTM-compatible Bridge hardware and software library. 12 | 13 | ![Qi Mini](src/qi_mini1.jpg) 14 | ![Qi Mini](src/qi_mini2.jpg) 15 | ![Qi Mini](src/qi_mini3.jpg) 16 | 17 | The Domino Qi Mini board extends the Domino Core module by adding the following features: 18 | 19 | * Atmel ATMega32U4 MCU 20 | * Arduino YunTM-compatible Bridge 21 | * +5 V input / +3.3 V output, 2 A DC/DC power supply 22 | * 2.4 GHz WiFi PCB antenna 23 | * **32U4 Reset, WLAN Reset and User** push buttons 24 | * **Power, Wireless, WAN** and **USB** LEDs 25 | * 2x 22 pin, 2.54 mm pitch headers 26 | 27 | The dual edge headers provide: 28 | 29 | * USB 2.0 (host or slave) 30 | * 1x 10/100MB Ethernet port 31 | * ATMega32U4 ICSP (MOSI, MISO, SCK, SS) 32 | * ATMega32U4 RESET pin 33 | * ATMega32U4 UART (TXD1, RXD1) 34 | * ATMega32U4 I2C (SDA, SCL) 35 | * ATMega32U4 digital (+ PWM) pins (D4-D6 and IO8-13) 36 | * ATmega Analog pins (A0-5 + AREF) 37 | * Arduino YunTM-compatible pins (HANDSHAKE, GP6) 38 | * +5V, +3.3V and GND power supply pins 39 | 40 | **Note**: Domino is not connected to ArduinoTM and the Domino Qi Mini product is a derivative. Any technical support must be directed to us, not to ArduinoTM. 41 | 42 | Specifications 43 | ---------------- 44 | 45 | specs | Value 46 | ------|------ 47 | Weight |12 g 48 | Dimensions |55.88 x 33.02 x 10.8 mm 49 | CPU |AR9331, 400 MHz + ATMega32U4, 16 MHz 50 | Memory |16 MB SPI Flash and 64 MB DDR2 RAM 51 | RF Frequency |2.4 GHz band 52 | Max Output Power |+21 dBm 53 | Wireless Standards |802.11 bgn 54 | Antenna (port) |U.FL connector, built-in PCB antenna 55 | Power Supply |5 V, max. 56 | power consumption |6.5 W 57 | Firmware |U-Boot, OpenWRT 58 | Available Interfaces |USB host/slave, 1 x Ethernet, ICSP, ATMega32U4 Digital pins (+ PWM), ATmega32U4 Analog pins, Arduino Yun HANDSHAKE + GP6, Power Supply pins 59 | User Interfaces |ATMega32U4 USB UART bridge, 32U4 RESET push button, WLAN RESET push button, USER push button, Power Led, Wireless LED, WAN LED, USB LED 60 | 61 | Pinout 62 | ---------- 63 | 64 | ![Qi Mini Pinout](src/qi_mini_pinout.jpg) 65 | 66 | [Qi Mini Pinout in PDF](src/Domino-Qi-Mini-Pinout.pdf) 67 | -------------------------------------------------------------------------------- /docs/domino/qi/nodejs.html: -------------------------------------------------------------------------------- 1 | 2 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | Domino Docs 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 46 | 51 | 71 | 72 |
73 | 79 |
80 |
81 |
82 |
83 |
84 |
85 | 136 | 137 | 138 | 139 | -------------------------------------------------------------------------------- /docs/domino/qi/serial.md: -------------------------------------------------------------------------------- 1 | Domino Qi Serial 2 | ============ 3 | 4 | As the UART of OpenWrt is connected to AVR, you have to use the serial console via AVR. 5 | 6 | Connection 7 | ------------- 8 | 9 | Connect Domino Qi Mini to your computer. Don't use the MicroUSB connector in the Qi baseboard (There are footprint, but we don't solder it by default). 10 | 11 | Flash AVR 12 | ----------- 13 | 14 | When you got your Domino Qi for the first time, it may already have flashed the serial terminal to AVR. If not, do it now. 15 | 16 | ``` 17 | run-avrdude /etc/linino/YunSerialTerminal.hex 18 | ``` 19 | The instructions of how to use this is documented here: https://www.arduino.cc/en/Tutorial/YunSerialTerminal 20 | 21 | Linux (Ubuntu) 22 | --------------- 23 | 24 | If you use Linux hosts, you may likely have the devices identified as `/dev/ttyACM0`, connect to it using kermit. 25 | 26 | Windows 27 | ------------- 28 | 29 | If you are using Windows system, you may have device identified as `Arduino Yun`, find its port number and connect it to using `putty`. 30 | 31 | -------------------------------------------------------------------------------- /docs/domino/qi/src/Domino-Qi-Mini-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/Domino-Qi-Mini-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/qi/src/Domino-Qi-Pinout.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/Domino-Qi-Pinout.pdf -------------------------------------------------------------------------------- /docs/domino/qi/src/arduino-ide.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/arduino-ide.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/bonjour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/bonjour.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/crc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/crc.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/editing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/editing.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/editor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/editor.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/firsttime.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/firsttime.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/homepage.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/lininoio-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/lininoio-stop.png -------------------------------------------------------------------------------- /docs/domino/qi/src/lininoio-stop1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/lininoio-stop1.png -------------------------------------------------------------------------------- /docs/domino/qi/src/luci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/luci.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/luci1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/luci1.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/mcuio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/mcuio.png -------------------------------------------------------------------------------- /docs/domino/qi/src/network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/network.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi-assembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi-assembly.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi-connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi-connection.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi-device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi-device.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi-disassembly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi-disassembly.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_base1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_base1.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_base2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_base2.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_base3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_base3.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini1.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini2.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini3.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini_back.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini_back.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_mini_top.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_mini_top.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/qi_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/qi_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/saveenv.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/saveenv.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/system.jpg -------------------------------------------------------------------------------- /docs/domino/qi/src/uboot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/uboot.png -------------------------------------------------------------------------------- /docs/domino/qi/src/usb-disk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/qi/src/usb-disk.jpg -------------------------------------------------------------------------------- /docs/domino/src/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/core.png -------------------------------------------------------------------------------- /docs/domino/src/core_pinout.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/core_pinout.jpg -------------------------------------------------------------------------------- /docs/domino/src/domino-pi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/domino-pi.png -------------------------------------------------------------------------------- /docs/domino/src/domino-qi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/domino-qi.png -------------------------------------------------------------------------------- /docs/domino/src/logo-doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/logo-doc.png -------------------------------------------------------------------------------- /docs/domino/src/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/domino/src/tree.jpg -------------------------------------------------------------------------------- /docs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/favicon.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | # Contents available 2 | 3 | Available documentations 4 | 5 | --- 6 | 7 | [Mini Router Quick Setup](/mini/) 8 | 9 | [Mini Router Internet Setup](/mini/internet) 10 | 11 | [Mini Router 3G/4G modem setup](/mini/3g4g) 12 | 13 | [Mini Router LAN IP](/mini/lan) 14 | 15 | [Mini Router WiFi Settings](/mini/wifi) 16 | 17 | [Mini Router **Repeater Manager**](/mini/repeater_manager) 18 | 19 | [Mini Router firmware upgrade](/mini/firmware) 20 | 21 | [Using RTC on GL-AR150](/mini/ar150rtc) 22 | 23 | [GL-AR300M](/mini/ar300m) 24 | 25 | [GL-MiFi](/mini/mifi) 26 | 27 | [Using **OpenVPN** on Mini routers](/openwrt/openvpn) 28 | 29 | [Shadowsocks(SS) Setup Manual](/openwrt/shadowsocks) 30 | 31 | [Using **Tor** on Mini routers](/openwrt/tor) 32 | 33 | [Using **EasyTether** on Mini routers](/openwrt/tether) 34 | 35 | [Working with UART & serial](/diy/serial) 36 | 37 | [Working with Uboot](/diy/uboot) 38 | 39 | [Domino Hardware and instructions](/domino/index) 40 | 41 | 42 | -------------------------------------------------------------------------------- /docs/mini/ar150rtc.md: -------------------------------------------------------------------------------- 1 | # Using RTC (Realtime control) in GL-AR150 2 | 3 | ![AR150 RTC](src/ar150-rtc1.jpg) 4 | ## Install kernel modules 5 | 6 | If you use our stock firmware, you can just install using `opkg` 7 | 8 | ``` 9 | opkg update 10 | opkg install kmod-i2c-gpio-custom 11 | opkg install kmod-rtc-ds1307 12 | ``` 13 | 14 | If you want to compile your own firmware, choose these packages: 15 | ``` 16 | Kernel modules ---> I2C support ---> kmod-i2c-gpio-custom 17 | Device Drivers ---> Real Time Clock ---> Dallas/Maxim DS1307/37/38/39/40, ST M41T00, EPSON RX-8025 18 | ``` 19 | 20 | ## Connection 21 | 22 | The module should be very easy to install. You need to mount like in the picture. Most important, you need to solder `GND, VCC, SDA and SCL`. 23 | 24 | ![AR150 RTC](src/ar150-rtc2.jpg) 25 | 26 | ![AR150 RTC](src/ar150-rtc3.jpg) 27 | 28 | ## Software 29 | 30 | The GPIO used for RTC is below: 31 | 32 | `SDA` <--> `GPIO1` 33 | `SCL` <--> `GPIO17` 34 | 35 | Now you need in insert kernel modules and connect to the module 36 | 37 | ``` 38 | insmod /lib/modules/3.18.29/i2c-gpio-custom.ko bus0=0,1,17 39 | echo ds1307 0x68 > /sys/bus/i2c/devices/i2c-0/new_device 40 | ``` 41 | 42 | To read the time from RTC module 43 | ``` 44 | hwclock -r 45 | ``` 46 | 47 | To sync the RTC module's time to mini router 48 | ``` 49 | hwclock -s 50 | ``` 51 | 52 | To write mini router's time to RTC module 53 | ``` 54 | hwclock -w 55 | ``` 56 | # Discussions 57 | -------------------------------------------------------------------------------- /docs/mini/index.md: -------------------------------------------------------------------------------- 1 | # Getting started with GLi Mini routers 2 | 3 | connection, first-time setup, button and leds 4 | 5 | ----------- 6 | 7 | ## Connections 8 | 9 | You need to power the mini router up using a USB 5V/1A power adapter. The power adapters for smartphones are perfect for this. 10 | 11 | 12 | Please wait around 1 mintues until the router start up. 13 | 14 | ![Connections](src/connections1.jpg) 15 | 16 | You can connect the mini router's WAN port to your main router or modem using an Ethernet cable. 17 | 18 | ![Connections](src/connections.png) 19 | 20 | Now connect your PC to the LAN port or connect via wifi. 21 | 22 | ![Connect PC](src/connections3.png) 23 | ![Connect Smartphone](src/connections4.png) 24 | 25 | The SSID of the mini router should be printed on the bottom of the router. It should be one of the following format, according to your device models: 26 | ``` 27 | GL-iNet-xxx 28 | GL-AR150-xxx 29 | GL-AR300M-xxx 30 | GL-MT300N-xxx 31 | GL-MT300A-xxx 32 | ``` 33 | The default wifi password is `goodlife` 34 | 35 | ## First time Set Up 36 | 37 | Now open a browser (we recommend Chrome, firefox) and visit [http://192.168.8.1](http://192.168.8.1) 38 | 39 | Note: If your browser always redirect to Luci (http://192.168.8.1/cgi-bin/luci), you can add index.html to the path, like: [http://192.168.8.1/index.html](http://192.168.8.1/index.html) 40 | 41 | You will have the welcome page. First you need to select your language. We now only have `Chinese` and `English`. 42 | 43 | ![Connections](src/welcome.jpg) 44 | 45 | Then you need to select your region. You can use your mouse to click on the map. You can also select from the select box. 46 | 47 | ![Connections](src/region.jpg) 48 | 49 | Third, you should set your own password for this admin Interface. There is no default password. Before sure to input a password with length longer than 8. 50 | 51 | **This password is for the admin UI and the embedded Linux system. It doesn't change your wifi password.** 52 | 53 | ![Connections](src/password.jpg) 54 | 55 | Now let's click `Finish`. You will be logged into the admin UI. 56 | 57 | ## The Interface 58 | 59 | The interface is quite intuitive and straightforward. 60 | 61 | On the top is the icons for applications. On the left side is the settings. The middle is the main display area. 62 | 63 | ![Connections](src/main_ui.jpg) 64 | 65 | You can click the `Internet` icon to display the current method of connecting to the Internet. The default method is DHCP, which requires you using a cable to connect to the Internet. 66 | 67 | ![Connections](src/internet_status.jpg) 68 | 69 | ## Buttons and LEDs 70 | 71 | ### Firmware V2.20 72 | You can use the Reset button to turn wifi on/off. 73 | 74 | The default function of the switch is to hide (right side) or show (left side) the SSID. 75 | 76 | ![Connections](src/buttons.png) 77 | 78 | The left LED is used for power indication. It should be always on. 79 | 80 | The middle LED doesn't have functions by default. You can configure it according to your own use. 81 | 82 | The right LED indicate the current status of WiFi. If WiFi is on it should light up. If you have data transmission, it should flash. 83 | 84 | ![Connections](src/leds.png) 85 | 86 | ### Firmware V2.22 and later 87 | 88 | ![Button and LEDs](src/button_leds.jpg) 89 | 90 | From firmware v2.22 and later, the behavior of reset button is changed. It is not used to toggle wifi on/off again. 91 | 92 | When you press down the reset button, the middle LEDs start to flash once per second. 93 | 94 | * After 3 seconds when the middle LED flashes quicker, twice per second, release your finger and the router will reset its network, including: revert WAN to dhcp, turn off repeater, turn on AP, turn on dhcp server. This ensures that you can connect to the router and configure it again. 95 | * After 10 seconds, when the middle LED flashes more quicker, 4 times per second, release your finger and the router will erase all data and revert to factory default settings. 96 | 97 | ## Change your ssid and key 98 | 99 | You should change your ssid and key now to protect your mini router being used by others. Consult the WiFi setting sections. 100 | 101 | # Discussions 102 | -------------------------------------------------------------------------------- /docs/mini/lan.md: -------------------------------------------------------------------------------- 1 | 2 | ## LAN IP address 3 | 4 | Sometime you need to change the LAN IP address of the mini router. The default IP address is `192.168.8.1`. 5 | 6 | Most of the routers use IP `192.168.0.1`, `192.168.1,1`, `192.168.1.254`, `10.10.1.1` etc. and subnet `255.255.255.0` (`/24`). It is important that your mini router's IP address is different from these. If your main router has a `192.168.8.x` IP, you need to change the LAN IP address of the mini router. 7 | 8 | You can find the IP address of your main router from its own admin UI or just check the mini router's admin UI. 9 | 10 | In the following example, the WAN IP of the mini router is `192.168.9.243` (assume the netmask is `/24`), and we are ok to keep `192.168.8.1` as the LAN IP. 11 | 12 | ![Lan IP](src/lan_ip.jpg) 13 | 14 | # Discussions 15 | -------------------------------------------------------------------------------- /docs/mini/repeater.md: -------------------------------------------------------------------------------- 1 | 2 | *The following content has been depreciated because we have developed repeater manager function which is available in Firmware v2.22 and newer.* 3 | 4 | *Check how to use repeater (station) manager [here](repeater_manager.md)* 5 | 6 | ## One-Radio device problem in Repeater mode 7 | 8 | The mini routers is One-Radio device, which caused a problem in repeater mode. When your repeater cannot connect, its own ap will not boot. 9 | 10 | For example, you go to one hotel and connect the mini router to the hotel's wifi as WISP repeater. But when you go to another hotel when the original ssid is not available, you cannot connect to the router via WiFi. You need a cable to connect. 11 | 12 | There are some solutions to solve this problem. One is like this post: http://www.gl-inet.com/forums/topic/wifimgr-tool-to-automaticaly-select-an-apstation-from-a-list-of-saved-aps/ 13 | 14 | The script try to connect a list of saved ssid/key one by one until it get access to the Internet. We are still make our script based on this. At this moment, we recommend a simple solution so that you can bring your wifi back by pressing the reset button. 15 | 16 | ## Reset Repeater WISP 17 | 18 | The idea is simple, to turn off the repeater connection by pressing the `Reset` button. 19 | 20 | First you need connect to the router using `ssh` when you still have Ineternet connection. Then try to execute the the following command one by one. 21 | 22 | ``` 23 | $ wget http://www.gl-inet.com/download/script/repeater_onoff -O /usr/bin/repeater_onoff 24 | $ chmod +x /usr/bin/repeater_onoff 25 | $ wget http://www.gl-inet.com/download/script/reset -O /etc/rc.button/reset 26 | $ chmod +x /etc/rc.button/reset 27 | 28 | ``` 29 | 30 | Then it is done. 31 | 32 | When you cannot connect to the repeater and don't have wifi, just press the reset button. The repeater will be turned off and your ap is back. Now you can connect to `http://192.168.8.1` and reset up the repeater. 33 | 34 | Warning: this only works for WISP. It doesn't work for WDS and Relayd bridge. 35 | 36 | Note: Don't forget to press the Reset button again after you choose to connect to another ssid. 37 | 38 | ## How to use SSH 39 | 40 | If you are using Linux or Mac, you will have `ssh` by default. Just execute: 41 | 42 | ``` 43 | $ ssh root@192.168.8.1 44 | ``` 45 | 46 | If you are using windows, we recommend `putty`. Download from here: https://the.earth.li/~sgtatham/putty/latest/x86/putty.exe 47 | 48 | Excute putty, then input IP `192.168.8.1`, Port `22` and choose connection type `ssh`, then click `Open`. 49 | 50 | You will be shown a black window. Type username `root` and then your password. You are in. 51 | 52 | ![Putty SSH](src/putty_ssh1.jpg) 53 | 54 | Then you need to execute the above command one by one. 55 | 56 | ![Putty SSH](src/putty_ssh2.jpg) 57 | 58 | # Discussions 59 | -------------------------------------------------------------------------------- /docs/mini/src/3g_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/3g_1.png -------------------------------------------------------------------------------- /docs/mini/src/3g_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/3g_2.png -------------------------------------------------------------------------------- /docs/mini/src/ar150-rtc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/ar150-rtc1.jpg -------------------------------------------------------------------------------- /docs/mini/src/ar150-rtc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/ar150-rtc2.jpg -------------------------------------------------------------------------------- /docs/mini/src/ar150-rtc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/ar150-rtc3.jpg -------------------------------------------------------------------------------- /docs/mini/src/ar300m-performance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/ar300m-performance.jpg -------------------------------------------------------------------------------- /docs/mini/src/ar300m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/ar300m.jpg -------------------------------------------------------------------------------- /docs/mini/src/button_leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/button_leds.jpg -------------------------------------------------------------------------------- /docs/mini/src/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/buttons.png -------------------------------------------------------------------------------- /docs/mini/src/connect_to_router.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connect_to_router.jpg -------------------------------------------------------------------------------- /docs/mini/src/connections.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connections.jpg -------------------------------------------------------------------------------- /docs/mini/src/connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connections.png -------------------------------------------------------------------------------- /docs/mini/src/connections1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connections1.jpg -------------------------------------------------------------------------------- /docs/mini/src/connections3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connections3.png -------------------------------------------------------------------------------- /docs/mini/src/connections4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/connections4.png -------------------------------------------------------------------------------- /docs/mini/src/dhcp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/dhcp.jpg -------------------------------------------------------------------------------- /docs/mini/src/dhcp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/dhcp1.png -------------------------------------------------------------------------------- /docs/mini/src/dns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/dns.jpg -------------------------------------------------------------------------------- /docs/mini/src/dns_rebind.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/dns_rebind.jpg -------------------------------------------------------------------------------- /docs/mini/src/enable_5g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/enable_5g.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware1.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware2.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware3.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware4.jpg -------------------------------------------------------------------------------- /docs/mini/src/firmware5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/firmware5.jpg -------------------------------------------------------------------------------- /docs/mini/src/internet_status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/internet_status.jpg -------------------------------------------------------------------------------- /docs/mini/src/internet_status1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/internet_status1.jpg -------------------------------------------------------------------------------- /docs/mini/src/lan_ip.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/lan_ip.jpg -------------------------------------------------------------------------------- /docs/mini/src/leds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/leds.png -------------------------------------------------------------------------------- /docs/mini/src/macclone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/macclone.jpg -------------------------------------------------------------------------------- /docs/mini/src/main_ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/main_ui.jpg -------------------------------------------------------------------------------- /docs/mini/src/meunconfig-ar300m-nand.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/meunconfig-ar300m-nand.jpg -------------------------------------------------------------------------------- /docs/mini/src/meunconfig-ar300m.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/meunconfig-ar300m.jpg -------------------------------------------------------------------------------- /docs/mini/src/mifi_connection.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/mifi_connection.jpg -------------------------------------------------------------------------------- /docs/mini/src/mifi_connection_status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/mifi_connection_status.jpg -------------------------------------------------------------------------------- /docs/mini/src/mifi_pcb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/mifi_pcb.jpg -------------------------------------------------------------------------------- /docs/mini/src/mifi_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/mifi_start.jpg -------------------------------------------------------------------------------- /docs/mini/src/password.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/password.jpg -------------------------------------------------------------------------------- /docs/mini/src/pppoe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/pppoe.png -------------------------------------------------------------------------------- /docs/mini/src/putty_ssh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/putty_ssh.png -------------------------------------------------------------------------------- /docs/mini/src/putty_ssh1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/putty_ssh1.png -------------------------------------------------------------------------------- /docs/mini/src/putty_ssh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/putty_ssh2.png -------------------------------------------------------------------------------- /docs/mini/src/region.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/region.jpg -------------------------------------------------------------------------------- /docs/mini/src/relayd.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/relayd.pdf -------------------------------------------------------------------------------- /docs/mini/src/repeater-bridge.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/repeater-bridge.jpg -------------------------------------------------------------------------------- /docs/mini/src/repeater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/repeater.jpg -------------------------------------------------------------------------------- /docs/mini/src/repeater_connected.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/repeater_connected.jpg -------------------------------------------------------------------------------- /docs/mini/src/repeater_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/repeater_manager.png -------------------------------------------------------------------------------- /docs/mini/src/static.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/static.png -------------------------------------------------------------------------------- /docs/mini/src/tethering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/tethering.png -------------------------------------------------------------------------------- /docs/mini/src/tethering1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/tethering1.jpg -------------------------------------------------------------------------------- /docs/mini/src/uboot-ar300m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/uboot-ar300m.png -------------------------------------------------------------------------------- /docs/mini/src/upgrade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/upgrade.jpg -------------------------------------------------------------------------------- /docs/mini/src/verizon_apn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/verizon_apn.jpg -------------------------------------------------------------------------------- /docs/mini/src/wan_status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wan_status.jpg -------------------------------------------------------------------------------- /docs/mini/src/wds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wds.png -------------------------------------------------------------------------------- /docs/mini/src/wds1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wds1.png -------------------------------------------------------------------------------- /docs/mini/src/welcome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/welcome.jpg -------------------------------------------------------------------------------- /docs/mini/src/wifi_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_advanced.png -------------------------------------------------------------------------------- /docs/mini/src/wifi_advanced1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_advanced1.png -------------------------------------------------------------------------------- /docs/mini/src/wifi_leds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_leds.png -------------------------------------------------------------------------------- /docs/mini/src/wifi_multi_ssid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_multi_ssid.jpg -------------------------------------------------------------------------------- /docs/mini/src/wifi_multi_ssid1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_multi_ssid1.jpg -------------------------------------------------------------------------------- /docs/mini/src/wifi_onoff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_onoff.png -------------------------------------------------------------------------------- /docs/mini/src/wifi_setting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_setting.jpg -------------------------------------------------------------------------------- /docs/mini/src/wifi_status.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wifi_status.jpg -------------------------------------------------------------------------------- /docs/mini/src/wisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wisp.png -------------------------------------------------------------------------------- /docs/mini/src/wisp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/mini/src/wisp1.png -------------------------------------------------------------------------------- /docs/mini/wifi.md: -------------------------------------------------------------------------------- 1 | #Wireless Settings 2 | 3 | ## Turning on or off the radio 4 | 5 | You can turn on or off the radio from the main UI by the switch. It takes effect immediately. 6 | 7 | ![Lan IP](src/wifi_onoff.png) 8 | 9 | ## Wireless status 10 | 11 | When you click the `wifi` area in the settings sidebar, the UI will display the wireless status. 12 | 13 | There are two parts of the status. The first part is `Radio` information. The seconds part is `Interface` (Virtual AP) information. 14 | 15 | One router may have one of more Radio devices and one device can have multiple Virtual interfaces. 16 | 17 | In this example, the channel is `1` and tx power is `20`. We have one AP interface with SSID `GL-MT300A-030`. 18 | 19 | ![Lan IP](src/wifi_status.jpg) 20 | 21 | ## Wireless Settings 22 | 23 | If you click the `Setting` button, the UI will pop up the wireless settings page. 24 | 25 | You can change the 26 | 27 | `mode`: You can change from 802.11 b/g/n etc. 28 | 29 | `channel`: The router will not choose the best channel itself. You need to choose one channel by yourself. You will have different choices depends on the region you selected. In the US, you can choose 1 to 11. While in China and EU you can choose 1 to 13. 30 | 31 | `ssid`: It is not suggested to use unicode characters in the ssid, e.g. Chinese. 32 | 33 | `encryption`: You can only choose from WPA, WPA2 or WPA-Mixed. You cannot choose WEP or open because it is insecure. If you have to choose WEP or don't want to set a password, do this in Advanced settings (Luci). 34 | 35 | `password`: If you keep the password value empty, it will use the old password. A password should be at least 8 byte long. Choose a password with 9 or longer length to ensure security. 36 | 37 | **Don't use the same password as your banks etc.** 38 | 39 | **We suggest you change your password immediately when you use the mini router.** 40 | 41 | ![Lan IP](src/wifi_setting.jpg) 42 | 43 | ## Multiple Interfaces (SSID) 44 | 45 | You can set multiple SSID for the mini router, but this is not support to create in the current UI. You can do this in Advanced settings (Luci) or using ssh. 46 | 47 | However the current UI can display after you create the interface. 48 | 49 | If you have multiple SSIDs, the main UI will display the status. You can turn on off any one or both. The status page will display the information of these interfaces as well. 50 | 51 | ![Lan IP](src/wifi_multi_ssid1.jpg) 52 | 53 | When you want to change the settings, you will have multiple TABs. 54 | 55 | **Multiple AP Interfaces share the same radio configuration (mode and channel). You cannot set different values for each Interface** 56 | 57 | ![Lan IP](src/wifi_multi_ssid.jpg) 58 | 59 | ## LED indication 60 | 61 | The right LED of the mini router indicate the status of the first AP. 62 | 63 | If you have multiple SSIDs, you can configure another LED to indicate the status. For example, I want to indicate the status of my second AP using the middle LED. 64 | 65 | Go to Advanced settings (Luci) -> System -> LEDs, add one settings. The following sample is for GL-MT300A. Other mini routers may have different LEDs names. 66 | 67 | ![Lan IP](src/wifi_leds.png) 68 | 69 | ## WDS AP Interface 70 | 71 | To enable WDS support on the virtual interfaces, you need to go to advanced settings. 72 | 73 | Then click `Network->wifi`, choose the interface and click edit. 74 | 75 | ![Lan IP](src/wifi_advanced.png) 76 | 77 | You need to choose `Access Point (WDS)` other than the default `Access Point` mode. 78 | 79 | 80 | ![Lan IP](src/wifi_advanced1.png) 81 | 82 | # Discussions 83 | -------------------------------------------------------------------------------- /docs/navigation.md: -------------------------------------------------------------------------------- 1 | # GLiNet Docs 2 | 3 | [Home]() 4 | 5 | * [About Us](about.md) 6 | * [Services](service.md) 7 | 8 | [DIY]() 9 | 10 | * [To Do](diy/index.md) 11 | * [Working with UART serial](diy/serial.md) 12 | * [Working with uboot](diy/uboot.md) 13 | 14 | [OpenWrt]() 15 | 16 | * # Usage 17 | * [To Do](openwrt/index.md) 18 | * [OpenVPN](openwrt/openvpn.md) 19 | 20 | [Domino Kit]() 21 | 22 | * [Getting Started](domino/index.md) 23 | - - - - 24 | * # The Hardware 25 | * [Domore Core](domino/hardware/core.md) 26 | * [Domino Pi Baseboard](domino/pi/pi.md) 27 | * [Domino Pi - Single Eth board](domino/pi/single_eth.md) 28 | * [Domino Pi - Due Eth board](domino/pi/dual_eth.md) 29 | * [Domino Pi - Signle USB board](domino/pi/single_usb.md) 30 | * [Domino Pi - 3xUSB+MicroSD combo](domino/pi/usb_combo.md) 31 | * [Domino Pi - I2S board](domino/pi/i2s.md) 32 | * [Domino Pi - SPI/JTAG](domino/pi/spi_jtag.md) 33 | * [Domino Pi - LED](domino/pi/led.md) 34 | * [Domino Qi Mini](domino/qi/mini.md) 35 | * [Domino Qi baseboard](domino/qi/base.md) 36 | - - - - 37 | * # Domino Pi Instructions 38 | * [Using the firmware](domino/pi/using.md) 39 | * [Compile firmware](domino/pi/compile.md) 40 | * [Flashing and debricking](domino/pi/flashing.md) 41 | * [Playing Music](domino/pi/audio.md) 42 | * [Working with Serial](domino/pi/serial.md) 43 | * [Debricking using SPI/JTAG board](domino/pi/spi.md) 44 | - - - - 45 | * # Domino Qi Instructions 46 | * [Getting Started](domino/qi/index.md) 47 | * [Using Arduino or Linino Firmware](domino/qi/arduino-yun.md) 48 | * [Using NodeJS and LininoIO](domino/qi/nodejs.md) 49 | * [Using Serial](domino/qi/serial.md) 50 | 51 | [Mini routers]() 52 | 53 | * [Quick Start](mini/index.md) 54 | * [Internet Settings, MAC clone, DNS](mini/internet.md) 55 | * [LAN IP](mini/lan.md) 56 | * [Wifi Settings (AP)](mini/wifi.md) 57 | * [Repeater Manager](mini/repeater_manager.md) 58 | * # Using USB WebCam 59 | * # Using USB Storage 60 | * # DDNS and Access 61 | * [Firmware upgrading](mini/firmware.md) 62 | - - - - 63 | * [GL-AR300M](mini/ar300m.md) 64 | * # GL-AR150 65 | * # GL-iNet6416 66 | * # GL-MT300N 67 | * # GL-MT300A 68 | - - - - 69 | * # Projects 70 | * [RTC for AR150](mini/ar150rtc.md) 71 | * # Tor anonymonity]() 72 | * # Mesh B.A.T.M.A.N]() 73 | * # LCD]() 74 | * # NTP GPS]() 75 | * # Bluetooth NFC Zigbee]() 76 | 77 | [Big routers]() 78 | 79 | * # GL-AR300]() 80 | * # GL-MT750]() 81 | 82 | [Modules]() 83 | 84 | * # GL-M9331-Plus]() 85 | * # GL-M7620N]() 86 | 87 | [Community](http://www.gl-inet.com/forums/) 88 | [Shop](http://www.gl-inet.com/shop/) 89 | 90 | #[gimmick:themechooser](Choose theme) 91 | [gimmick:forkmeongithub(color: 'red', position: 'right')](https://github.com/domino-team/docs/) -------------------------------------------------------------------------------- /docs/openwrt/images/1522164376006.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522164376006.jpg -------------------------------------------------------------------------------- /docs/openwrt/images/1522164842915.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522164842915.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522205896331.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522205896331.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522222018396.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522222018396.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522224457420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522224457420.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522224501240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522224501240.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522238777867.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522238777867.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522905053283.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522905053283.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915231698.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915231698.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915321961.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915321961.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915409158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915409158.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915513718.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915513718.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915626797.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915626797.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915767708.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915767708.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522915897942.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522915897942.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522916277644.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522916277644.png -------------------------------------------------------------------------------- /docs/openwrt/images/1522916496892.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1522916496892.png -------------------------------------------------------------------------------- /docs/openwrt/images/1523029479389.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1523029479389.png -------------------------------------------------------------------------------- /docs/openwrt/images/1523031035400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1523031035400.png -------------------------------------------------------------------------------- /docs/openwrt/images/1523031072950.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1523031072950.png -------------------------------------------------------------------------------- /docs/openwrt/images/1523031103769.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/1523031103769.png -------------------------------------------------------------------------------- /docs/openwrt/images/Advance-Root-Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Advance-Root-Login.png -------------------------------------------------------------------------------- /docs/openwrt/images/PuTTY Install-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/PuTTY Install-1.png -------------------------------------------------------------------------------- /docs/openwrt/images/PuTTY-Install-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/PuTTY-Install-2.png -------------------------------------------------------------------------------- /docs/openwrt/images/PuTTY-Install-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/PuTTY-Install-3.png -------------------------------------------------------------------------------- /docs/openwrt/images/PuTTY-Install-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/PuTTY-Install-4.png -------------------------------------------------------------------------------- /docs/openwrt/images/Removed-Host-keygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Removed-Host-keygen.png -------------------------------------------------------------------------------- /docs/openwrt/images/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/SS1.png -------------------------------------------------------------------------------- /docs/openwrt/images/SSH-Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/SSH-Login.png -------------------------------------------------------------------------------- /docs/openwrt/images/SSH-in-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/SSH-in-1.png -------------------------------------------------------------------------------- /docs/openwrt/images/SSH-in-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/SSH-in-2.png -------------------------------------------------------------------------------- /docs/openwrt/images/SSH-in-root.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/SSH-in-root.png -------------------------------------------------------------------------------- /docs/openwrt/images/Setup-PuTTY-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Setup-PuTTY-1.png -------------------------------------------------------------------------------- /docs/openwrt/images/Setup-PuTTY-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Setup-PuTTY-2.png -------------------------------------------------------------------------------- /docs/openwrt/images/Setup-PuTTY-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Setup-PuTTY-3.png -------------------------------------------------------------------------------- /docs/openwrt/images/Start SS Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Start SS Server.png -------------------------------------------------------------------------------- /docs/openwrt/images/Ubuntu sshin router-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Ubuntu sshin router-3.png -------------------------------------------------------------------------------- /docs/openwrt/images/Ubuntu-Login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Ubuntu-Login.png -------------------------------------------------------------------------------- /docs/openwrt/images/Ubuntu-sshin-router-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Ubuntu-sshin-router-1.png -------------------------------------------------------------------------------- /docs/openwrt/images/Ubuntu-sshin-router-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/Ubuntu-sshin-router-2.png -------------------------------------------------------------------------------- /docs/openwrt/images/VI-ss-verver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/VI-ss-verver.png -------------------------------------------------------------------------------- /docs/openwrt/images/remove-ssh-keygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/remove-ssh-keygen.png -------------------------------------------------------------------------------- /docs/openwrt/images/ss-server config-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/ss-server config-2.png -------------------------------------------------------------------------------- /docs/openwrt/images/ss-server-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/ss-server-config.png -------------------------------------------------------------------------------- /docs/openwrt/images/ssh-wq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/images/ssh-wq.png -------------------------------------------------------------------------------- /docs/openwrt/index.md: -------------------------------------------------------------------------------- 1 | OpenWrt Hints and Tricks 2 | ======================== 3 | 4 | We will put our experience with OpenWrt here. -------------------------------------------------------------------------------- /docs/openwrt/src/astrill_openvpn1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/astrill_openvpn1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/astrill_openvpn2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/astrill_openvpn2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/cups1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/cups1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/cups2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/cups2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/expressvpn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/expressvpn.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/hidemyass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/hidemyass.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/l2tp/l2tp_0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/l2tp/l2tp_0.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/l2tp/l2tp_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/l2tp/l2tp_1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/l2tp/l2tp_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/l2tp/l2tp_2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/l2tp/l2tp_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/l2tp/l2tp_3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/11.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/12.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/13.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/14.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/15.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/16.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/17.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/18.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/4.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/5.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/6.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/7.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/AirVPN1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/AirVPN1.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/AirVPN2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/AirVPN2.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/AirVPN3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/AirVPN3.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/Astrill1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/Astrill1.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/Astrill2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/Astrill2.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/Astrill3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/Astrill3.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/Astrill4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/Astrill4.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/CactusVPN1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/CactusVPN1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ExpressVPN1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ExpressVPN1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ExpressVPN2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ExpressVPN2.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ExpressVPN3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ExpressVPN3.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/KeepSolid1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/KeepSolid1.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/KeepSolid2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/KeepSolid2.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/KeepSolid3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/KeepSolid3.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ProXPN1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ProXPN1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ProXPN2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ProXPN2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/ProXPN3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/ProXPN3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/SaferVPN1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/SaferVPN1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/StrongVPN1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/StrongVPN1.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/StrongVPN2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/StrongVPN2.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/StrongVPN3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/StrongVPN3.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/StrongVPN4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/StrongVPN4.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/StrongVPN5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/StrongVPN5.png -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/TCPVPN1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/TCPVPN1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/TCPVPN2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/TCPVPN2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/TCPVPN3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/TCPVPN3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/VPNAC1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/VPNAC1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/VPNBook1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/VPNBook1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/VPNGate1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/VPNGate1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/VPNGate2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/VPNGate2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/finchvpn1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/finchvpn1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/finchvpn2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/finchvpn2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/finchvpn3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/finchvpn3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/finchvpn4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/finchvpn4.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/finchvpn5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/finchvpn5.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn/openvpn_led.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn/openvpn_led.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn_finch1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn_finch1.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn_finch2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn_finch2.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn_finch3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn_finch3.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/openvpn_finch4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/openvpn_finch4.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/proxpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/proxpn.png -------------------------------------------------------------------------------- /docs/openwrt/src/strongvpn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/strongvpn.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/3g.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/3g.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/button_leds.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/button_leds.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/first_time.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/first_time.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/homepage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/homepage.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/login.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/luci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/luci.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/network.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/repeater.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/repeater.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/system.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/tor/upgrade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/tor/upgrade.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/torguard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/torguard.jpg -------------------------------------------------------------------------------- /docs/openwrt/src/torguard1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/openwrt/src/torguard1.jpg -------------------------------------------------------------------------------- /docs/service.md: -------------------------------------------------------------------------------- 1 | Services 2 | ========= 3 | 4 | 5 | We provide hardware services. The ideas is illustrated here: 6 | 7 | ![Service for Makers](src/services) 8 | 9 | Due to limited resources, we now only provide such service based on Domino and Mini routers. 10 | 11 | Many people ask for a price break down. We cannot give precise information without detailed requirement. Such project cost thousands of USD to tens of thousands, depends on detailed requirements. 12 | 13 | We have made several such projects and found this is very difficult. The reasons include: 14 | 15 | 1. Requirements is not detailed and clear. Without a clear requirments the project cannot be started. 16 | 2. Changing requirement. This is normal for product development, but it kills a ODM project easily because clients generally don't want to pay more for *small* changes but such a change can be very costly. 17 | 3. Communication cost is high and project schedule is delayed many times. 18 | 19 | If you want to make hardware based on our products, here is what we suggested: 20 | 21 | * Reuse existing hardware as possible as you can. Focus on software. 22 | * Know your detailed requirements, e.g. size of your product, interfaces. Not just an idea. 23 | * Prepare for some money to invest. 24 | 25 | ## Discussions 26 | -------------------------------------------------------------------------------- /docs/smartrouter/images/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/smartrouter/images/qrcode.png -------------------------------------------------------------------------------- /docs/src/services.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/docs/src/services.jpg -------------------------------------------------------------------------------- /gl_theme/404.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {% block content %} 4 | 5 |
6 |
7 |

404

8 |

Page not found

9 |
10 |
11 | 12 | {% endblock %} 13 | -------------------------------------------------------------------------------- /gl_theme/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/__init__.py -------------------------------------------------------------------------------- /gl_theme/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/__init__.pyc -------------------------------------------------------------------------------- /gl_theme/content.html: -------------------------------------------------------------------------------- 1 | {% if meta.source %} 2 | 7 | {% endif %} 8 | 9 | {{ content }} 10 |
11 | 29 | 30 | -------------------------------------------------------------------------------- /gl_theme/css/highlight.css: -------------------------------------------------------------------------------- 1 | /* 2 | This is the GitHub theme for highlight.js 3 | 4 | github.com style (c) Vasily Polovnyov 5 | 6 | */ 7 | 8 | .hljs { 9 | display: block; 10 | overflow-x: auto; 11 | padding: 0.5em; 12 | color: #333; 13 | -webkit-text-size-adjust: none; 14 | } 15 | 16 | .hljs-comment, 17 | .diff .hljs-header, 18 | .hljs-javadoc { 19 | color: #998; 20 | font-style: italic; 21 | } 22 | 23 | .hljs-keyword, 24 | .css .rule .hljs-keyword, 25 | .hljs-winutils, 26 | .nginx .hljs-title, 27 | .hljs-subst, 28 | .hljs-request, 29 | .hljs-status { 30 | color: #333; 31 | font-weight: bold; 32 | } 33 | 34 | .hljs-number, 35 | .hljs-hexcolor, 36 | .ruby .hljs-constant { 37 | color: #008080; 38 | } 39 | 40 | .hljs-string, 41 | .hljs-tag .hljs-value, 42 | .hljs-phpdoc, 43 | .hljs-dartdoc, 44 | .tex .hljs-formula { 45 | color: #d14; 46 | } 47 | 48 | .hljs-title, 49 | .hljs-id, 50 | .scss .hljs-preprocessor { 51 | color: #900; 52 | font-weight: bold; 53 | } 54 | 55 | .hljs-list .hljs-keyword, 56 | .hljs-subst { 57 | font-weight: normal; 58 | } 59 | 60 | .hljs-class .hljs-title, 61 | .hljs-type, 62 | .vhdl .hljs-literal, 63 | .tex .hljs-command { 64 | color: #458; 65 | font-weight: bold; 66 | } 67 | 68 | .hljs-tag, 69 | .hljs-tag .hljs-title, 70 | .hljs-rule .hljs-property, 71 | .django .hljs-tag .hljs-keyword { 72 | color: #000080; 73 | font-weight: normal; 74 | } 75 | 76 | .hljs-attribute, 77 | .hljs-variable, 78 | .lisp .hljs-body, 79 | .hljs-name { 80 | color: #008080; 81 | } 82 | 83 | .hljs-regexp { 84 | color: #009926; 85 | } 86 | 87 | .hljs-symbol, 88 | .ruby .hljs-symbol .hljs-string, 89 | .lisp .hljs-keyword, 90 | .clojure .hljs-keyword, 91 | .scheme .hljs-keyword, 92 | .tex .hljs-special, 93 | .hljs-prompt { 94 | color: #990073; 95 | } 96 | 97 | .hljs-built_in { 98 | color: #0086b3; 99 | } 100 | 101 | .hljs-preprocessor, 102 | .hljs-pragma, 103 | .hljs-pi, 104 | .hljs-doctype, 105 | .hljs-shebang, 106 | .hljs-cdata { 107 | color: #999; 108 | font-weight: bold; 109 | } 110 | 111 | .hljs-deletion { 112 | background: #fdd; 113 | } 114 | 115 | .hljs-addition { 116 | background: #dfd; 117 | } 118 | 119 | .diff .hljs-change { 120 | background: #0086b3; 121 | } 122 | 123 | .hljs-chunk { 124 | color: #aaa; 125 | } 126 | -------------------------------------------------------------------------------- /gl_theme/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /gl_theme/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /gl_theme/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /gl_theme/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /gl_theme/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /gl_theme/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /gl_theme/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /gl_theme/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /gl_theme/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /gl_theme/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/img/favicon.ico -------------------------------------------------------------------------------- /gl_theme/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/img/grid.png -------------------------------------------------------------------------------- /gl_theme/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/domino-team/docs/6525e7b455cbcc4fd067da3563f702828fb662cb/gl_theme/img/logo.png -------------------------------------------------------------------------------- /gl_theme/js/base.js: -------------------------------------------------------------------------------- 1 | function getSearchTerm() 2 | { 3 | var sPageURL = window.location.search.substring(1); 4 | var sURLVariables = sPageURL.split('&'); 5 | for (var i = 0; i < sURLVariables.length; i++) 6 | { 7 | var sParameterName = sURLVariables[i].split('='); 8 | if (sParameterName[0] == 'q') 9 | { 10 | return sParameterName[1]; 11 | } 12 | } 13 | } 14 | 15 | $(document).ready(function() { 16 | 17 | var search_term = getSearchTerm(), 18 | $search_modal = $('#mkdocs_search_modal'); 19 | 20 | if(search_term){ 21 | $search_modal.modal(); 22 | } 23 | 24 | // make sure search input gets autofocus everytime modal opens. 25 | $search_modal.on('shown.bs.modal', function () { 26 | $search_modal.find('#mkdocs-search-query').focus(); 27 | }); 28 | 29 | // Highlight.js 30 | hljs.initHighlightingOnLoad(); 31 | $('table').addClass('table table-striped table-hover'); 32 | }); 33 | 34 | 35 | $('body').scrollspy({ 36 | target: '.bs-sidebar', 37 | }); 38 | 39 | /* Prevent disabled links from causing a page reload */ 40 | $("li.disabled a").click(function() { 41 | event.preventDefault(); 42 | }); 43 | -------------------------------------------------------------------------------- /gl_theme/license/highlight.js/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2006, Ivan Sagalaev 2 | All rights reserved. 3 | Redistribution and use in source and binary forms, with or without 4 | modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright 7 | notice, this list of conditions and the following disclaimer. 8 | * Redistributions in binary form must reproduce the above copyright 9 | notice, this list of conditions and the following disclaimer in the 10 | documentation and/or other materials provided with the distribution. 11 | * Neither the name of highlight.js nor the names of its contributors 12 | may be used to endorse or promote products derived from this software 13 | without specific prior written permission. 14 | 15 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY 16 | EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 17 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 18 | DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY 19 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 20 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 21 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND 22 | ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 24 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 | -------------------------------------------------------------------------------- /gl_theme/main.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} 2 | 3 | {# 4 | The entry point for the MkDocs Theme. 5 | 6 | Any theme customisations should override this file to redefine blocks defined in 7 | the various templates. The custom theme should only need to define a main.html 8 | which `{% extends "base.html" %}` and defines various blocks which will replace 9 | the blocks defined in base.html and its included child templates. 10 | #} 11 | -------------------------------------------------------------------------------- /gl_theme/nav-sub.html: -------------------------------------------------------------------------------- 1 | {% if not nav_item.children %} 2 |
  • 3 | {{ nav_item.title }} 4 |
  • 5 | {% else %} 6 | 14 | {% endif %} 15 | -------------------------------------------------------------------------------- /gl_theme/nav.html: -------------------------------------------------------------------------------- 1 | 78 | -------------------------------------------------------------------------------- /gl_theme/search.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gl_theme/toc.html: -------------------------------------------------------------------------------- 1 | 11 | -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: GLI Docs 2 | repo_url: https://github.com/domino-team/docs/ 3 | site_description: This is the docs for GLI mini router, OpenWrt, OpenVPN 4 | site_favicon: favicon.png 5 | copyright: GL Innovations 2016 6 | google_analytics: null 7 | site_dir: '../docs' 8 | #site_dir: 'site' 9 | docs_dir: 'docs' 10 | theme_dir: 'gl_theme' 11 | #theme: 'mkdocs' 12 | include_next_prev: false 13 | 14 | pages: 15 | - Home: 16 | - 'Home' : 'index.md' 17 | - 'About Us' : 'about.md' 18 | - 'Services' : 'service.md' 19 | - DIY: 20 | - 'Working with UART serial' : 'diy/serial.md' 21 | - 'working with uboot' : 'diy/uboot.md' 22 | - OpenWrt: 23 | - 'OpenVPN' : 'openwrt/openvpn.md' 24 | - 'Tor' : 'openwrt/tor.md' 25 | - 'EasyTether' : 'openwrt/tether.md' 26 | 27 | - 'Domino Kit' : 28 | - 'Getting Started' : 'domino/index.md' 29 | - 'Domore Core' : 'domino/hardware/core.md' 30 | - 'Domino Pi Baseboard': 'domino/pi/pi.md' 31 | - 'Domino Pi - Single Eth board': 'domino/pi/single_eth.md' 32 | - 'Domino Pi - Due Eth board': 'domino/pi/dual_eth.md' 33 | - 'Domino Pi - Signle USB board': 'domino/pi/single_usb.md' 34 | - 'Domino Pi - 3xUSB+MicroSD combo': 'domino/pi/usb_combo.md' 35 | - 'Domino Pi - I2S board': 'domino/pi/i2s.md' 36 | - 'Domino Pi - SPI/JTAG': 'domino/pi/spi_jtag.md' 37 | - 'Domino Pi - LED': 'domino/pi/led.md' 38 | - 'Domino Qi Mini' : 'domino/qi/mini.md' 39 | - 'Domino Qi baseboard': 'domino/qi/base.md' 40 | - 'Pi: Using the firmware': 'domino/pi/using.md' 41 | - 'Pi: Compile firmware': 'domino/pi/compile.md' 42 | - 'Pi: Flashing and debricking': 'domino/pi/flashing.md' 43 | - 'Pi: Playing Music': 'domino/pi/audio.md' 44 | - 'Pi: Working with Serial': 'domino/pi/serial.md' 45 | - 'Pi: Debricking using SPI/JTAG board': 'domino/pi/spi.md' 46 | - 'Qi: Getting Started': 'domino/qi/index.md' 47 | - 'Qi: Using Arduino or Linino Firmware': 'domino/qi/arduino-yun.md' 48 | - 'Qi: Using NodeJS and LininoIO': 'domino/qi/nodejs.md' 49 | - 'Qi: Using Serial': 'domino/qi/serial.md' 50 | 51 | - 'Mini routers' : 52 | - 'Quick Start' : 'mini/index.md' 53 | - 'Internet Settings, MAC clone, DNS' : 'mini/internet.md' 54 | - 'Repeater Manager' : 'mini/repeater_manager.md' 55 | - '3G/4G modem and smartphone tethering' : 'mini/3g4g.md' 56 | - 'LAN IP' : 'mini/lan.md' 57 | - 'Wifi Settings (AP)': 'mini/wifi.md' 58 | - 'Firmware upgrading' : 'mini/firmware.md' 59 | - 'GL-AR300M' : 'mini/ar300m.md' 60 | - 'GL-MiFi' : 'mini/mifi.md' 61 | - 'RTC for AR150' : 'mini/ar150rtc.md' 62 | --------------------------------------------------------------------------------