User's Manual
Table Of Contents
- UPuTTYU provides Secure Socket Shell (SSH) access to the development board operating system.
- # Install Bonjour Print Service (For Windows 7 only)
- Steps:
- Check if the setup takes effect:
- In AP mode
- In Station mode
- Step1: Type UCI commands to assign SSID, key, and encryption information for running Station mode
- Step 2: Restart the Wi-Fi driver for activating the configuration
- Step 3: Check for Internet connection
- Step1: type UCI command to disable Station mode
- Step 2: restart the Wi-Fi driver
- Step 1: Create lks7688.cfg file
- Step 2: Attach the USB Drive to the board
- Step 3: Reset and press WiFi button
- # Using SCP
- Using Samba
- AWS IoT SDK for JavaScript
- AWS IoT Embedded-C SDK
- Basic Concepts :
- GPIO and Interupts
- PWM
- I2C
- SPI
- Installing MRAA
- Controlling LED with MRAA in Node.js
- Step-by-step
- Create and configure C project
- Supported cameras
- AI7688H has installed Linux UVC (USB Video Class) drivers to provide USB webcam suppport. Webcams follow the UVC standard can be supported on AI7688H. The real capabilities and supported resolution depend on the current UVC driver implementation.
- Step-by-step
- we use mjpg-streamer as the streaming application and it's already installed in the system firmware by default. For the webcam, Logitech C310 is used in this example.
AI7688H User Manual
-29-
Copyright@2016 AcSiP
6.6 Copying Files To the Board
# Using SCP
SCP in OS X and Linux
scp command line tool should be already installed and ready to use. If it is not installed, you can
use package managers such as MacPorts or Homebrew to install it. To use SCP, open the
Terminal and issue following command:
scp ./helloworld root@mylinkit.local:/example/helloworld
In the above example, a file named helloworld from the current directory is copied to the path
/example/helloworld in AI7688H. The SCP tool will instruct you to enter the Password of root
account.
Using SCP to copy files in Windows
You can download tools that support SCP protocol. WinSCP is used in this guide. It provides both
GUI and command line interfaces.
To use command line interface, type the following command in the Windows command line
console:
winscp.com –hostkey="*" scp://root@myLinkt.local helloworld.py
This copies the helloworld.py file to the home directory of the root account.
Note that by default it requires user to explicitly designate the host key of remote server, so we
need to explicitly allow unknown host key by adding the -hostkey="*" parameter.