SlideShare una empresa de Scribd logo
1 de 39
Descargar para leer sin conexión
AjithKP
MediaTekLabs
How to develop advanced
smart home applications
using MediaTek LinkIt™
7688
What’s there in the Box ?
2
• LinkIt Smart 7688 Introduction
• Hardware Development Kit
• Software Development Tools
• Demo
• Peripheral Programming
• Demo
• Q & A
MediaTek Labs™
ADeveloper Centric Ecosystem
▪ Free global program
▪ One Stop Solution
▪ Supporting developers:
• Device creation
• App development
▪ labs.mediatek.com
Enabling Developer & Maker Success
labs.mediatek.com SDKs Technical docs HDKs
Discussion Forums,
FAQ & Dev Support
Newsletter Solutions
Catalog
Partner
Connect
4
What is MediaTek LinkIt™ Smart 7688 ?
5
▪ Open source WiFi platform
▪ Runs Openwrt Linux
▪ Two versions of HDKs
▪ Multiple Programming Options
What you can do with 7688 ?
6
MediaTek LinkIt™ Smart 7688 Platform
7
SOC :MT7688AN
Highly Integrated
compact SOC for IoT
Devices with WiFi
connectivity
SDTs: LinkIt Smart 7688
• OpenWRT
• Python & Node.JS
• Board support
package for Arduino IDE
HDKs : LinkIt Smart 7688
• LinkIt Smart 7688 with
MT7688 MPU
• LinkIt Smart 7688 Duo
with MT7688 MPU + MCU
MEDIATEK LINKIT™ SMART 7688 PLATFORM :
SOC 7688AN DETAILS
8
LinkIt Smart 7688 :
SOC MT7688AN
9
▪ 1T1R 802.11 b/g/n Wi-Fi radio
▪ 580MHz MIPS 24KEc CPU
▪ RAM: 128MB DDR2
▪ Flash: 32MB
▪ USB2.0 host, SD-XC, I2S/PCM, I2C, PWM, UART, GPIO, SPI, SPI-
slave
▪ eMMC, PCIe are also supported in MT7688 SoC
▪ Max RAM/Flash supported in MT7688 is
▪ RAM: 256MB
▪ Flash: 64MB
MEDIATEK
MT7688AN
MEDIATEK LINKIT™ SMART 7688 PLATFORM :
Hardware Development Kit ( HDK)
10
LinkIt Smart 7688 : HDK
11
LinkIt Smart 7688 Duo LinkIt Smart 7688
Two type of HDKs : LinkIt Smart 7688 and LinkIt Smart 7688 Duo
12
LinkItSmart7688
• MT7688
• 128MB DDR2
• 32MB Flash
• Chip Antenna (default)
• IPEX Ext Antenna
• microSD
• USB Host
• JTAG
13
LinkItSmart7688Duo
• MT7688 + ATmega32U4
• 128MB DDR2
• 32MB Flash
• Chip Antenna (default)
• IPEX Ext Antenna
• microSD
• USB Host
• JTAG
MEDIATEK LINKIT™ SMART 7688 PLATFORM :
Software Development Tools ( SDT)
14
LinkIt Smart 7688 SDTs
15
LinkIt Smart 7688 Platform runs OpenWrt
(Chaos Calmer) Linux OS & loaded with range
of packages to enable the development of IoT
device software
You can create applications using
Duo only
16
▪ OpenWrt (Chaos Calmer)
• Built-in OPKG
▪ SSH
▪ Python
▪ Node.js
▪ Firmata
▪ Bridge (from Arduino Yun)
▪ Libmraa (also UPM)
▪ OpenSSL (w/ TLS 1.2)
▪ mDNS
▪ AVRdude (Arduino ICSP)
▪ UVC Webcam support
▪ git
▪ Samba
Software Specification
• BSP related
▪ Ethernet, USB, I2C, UART, GPIO, SPI driver verification
▪ Pin configuration based on HW definition
▪ GPIO control for bypass Bootstrap-pin (LinkIt Smart 7688)
▪ Reset Button Behavior
▪ Wi-Fi Status indicator
▪ Linux Console on UART2
▪ Firmware upgrade by USB (in boot loader)
▪ PWM, I2S driver
▪ Mac80211 Wi-Fi Open source driver (under development)
▪ Will use WCN binary Wi-Fi driver currently
• Setups
▪ Web UI for Initial Setup (Customized UI)
▪ AP Configure File
▪ Pre-defined MenuConfig for required features
▪ Arduino IDE SSH flashing
OpenWrt
▪ Linux distribution focus on embedded devices
• Started from 2004
• Typically wireless router
• Full-featured, easily modifiable OS for routers
▪ A framework to build network applications
• Free from the restriction and configuration
provided by the vendor
17
Supported Programming Language
18
Language Tools & Libraries Applications Host Platform
C/C++ Cross
Compilation Tool
Chain
• System Programming • OS X
• Linux
Python Python runtime
on Linkit Smart
7688
• Prototyping
• Network
• IoT application
• OS X
• Linux
• Windows
Node.js Node.js runtime
on LinkIt Smart
7688
• Prototyping
• Network
• IoT application
• OS X
• Linux
• Windows
Demo
▪ Connect to LinkIt Smart 7688 AP
▪ Log in using WebUI
▪ Login using Putty
▪ Login & transfer file using SCP Tool
▪ Show Openwrt
▪ OPKG Packages
▪ Change to station mode to access Internet
19
MEDIATEK LINKIT™ SMART 7688 PLATFORM :
Peripheral Programming
20
21
Wi-Fi
MT7688
Hardware
Sensors
USB Device/SD
Peripheral Connections in LinkIt
Smart 7688
OpenWrt
LinkIt Smart 7688 : Hardware Architecture
22
Software
libmraa
Python Node.js
UPM
App Logic
OpenWrt
Sensors
C
How can I access sensors from LinkIt
Smart 7688 ?
libmraa: C/C++ library with bindings
to JavaScript & Python for I/O
interface in Linux
UPM : A set of sensor drivers written
in libmraa
23
Basic concepts of MRAA
In MRAA, hardware modules such as GPIO, UART, SPI, and PWM are represented as objects
Libmraa is a C/C++ library to interface with the peripheral on LinkIt Smart 7688
import mraa
pin = mraa.Gpio(44)
pin.dir(mraa.DIR_OUT)
pin.write(1)
Import mraa
pin = mraa.Pwm(18)
pin.period_ms(2)
pin.enable(True)
pin.write(0.25) # set duty cycle
import mraa
i2c = mraa.I2c(0)
i2c.address(0x53)
if 0xE5 == i2c.readReg(0x00):
print "Grove - 3-Axis Digital Accelerometer found on I2C Bus"
else:
print "Grove - 3-Axis Digital Accelerometer not found"
GPIO PWM
I2C
Demo
▪ Login to 7688 using Putty
▪ Connect to LinkIt Smart 7688
▪ Code walk through mraa python examples
• Simple blink using mraa
• Accelerometer eg using UPM
▪ Code walk through Node.js
▪ Control LED from MCS
24
25
Peripheral Connections in LinkIt
Smart 7688 Duo
MT7688
ATMega32U4
UART
USB Device/SD
Sensors
Wi-Fi
Hardware
OpenWrt
Arduino
LinkIt Smart 7688 Duo : Hardware Architecture
26
How can I access sensors from LinkIt
Smart 7688 Duo ?
3 Programming Models
for LinkIt Smart Duo
Primitive UART
Connection
Firmata Protocol
Arduino Yun Bridge
Library
Peripheral Programming : Option-1
27
Software
Python Node.js
UART port
Sensor Drivers
UART Library
App Logic
OpenWrt
Arduino
Sensors
C
28
Software
Firmata
Python Node.js
Sensors
Firmata
App Logic
OpenWrt
Arduino
C
Peripheral Programming : Option-2
29
Software
Sensors
Bridge Library
Sensor Drivers
Bridge Library
App Logic
(MPU provides Wi-Fi & USB Host / SD)
OpenWrt
Arduino
Peripheral Programming : Option-3
Summary:LinkItSmart7688VsDuo
Python Node.js
Sensors
Firmata
Python Node.js
Sensors
UART port
Sensor Drivers
UART Library
App Logic App Logic
Sensors
Bridge Library
Sensor Drivers
Bridge Library
App Logic
(MPU provides Wi-Fi & USB Host)
libmraa
Python
Node.j
s
upm
Sensors
App Logic
Sensors
USB Device/SD
LinkIt Smart 7688
Wi-Fi
MT7688 MT7688
ATMega32U4
UART
USB Device/SD
Sensors
LinkIt Smart 7688 Duo
OpenWrt OpenWrt OpenWrt
OpenWrt
Arduino Arduino Arduino
Hardware
Wi-Fi
Software
MPU (MT7688) with OpenWrt as Host MCU (ATmega32U4) with Arduino as Host
Linux Developers
Arduino Developers
(default)
C C C
Firmata
Demo
▪ Login to 7688 using Putty
▪ Start camera app
▪ Show 3 scenarios with Duo
▪ Upload Arduino Firmata Sketch
▪ Run python code in Linux side and communicate with Arduino
▪ Run Node.js and control lights using browser high/low
31
580
Mhz
CPU
128MB
RAM
Bread
Board
FF
Python
Node.j
s
32MB
FLASH
USB
HOST
& SD-
XC
RICH
I/O
Interfa
ceFully
Open
source
LinkIt Smart 7688 Advantages
Target Audience
33
IoT Gateway Device Developers
OpenWRT Community
Python Developers
Node.Js Developers
Robotics Community
Arduino Yun Community
LinkIt Smart 7688 Testimonials
34
“I have recently decided to learn embedded Linux, and have bought
over 14 different development kits. Though they all run Linux, they all
have their pros and cons. So far out of all of them I have liked the
MediaTek LinkIt Smart 7688 the best,”
Mike Moy, Sr. Design Engineer, Versamodule.com
How can I get it ?
35
Online Order : http://www.seeed.cc/linkit_smart_7688/
Needmoreinfo ?
 Documentation
• Get Started Guides
• Developer’s Guides
• Tutorials & Forums
• HDK information
 Datasheet
 Schematic
 Layout
 Pin-out Diagram
 Toolchains
 Bootloader
• Source codes hosted on
Labs’ repository
 Firmware
• Source codes hosted on
OpenWrt.org
36
labs.mediatek.com
Questions?
37
Download Resources:
labs.mediatek.com/7688
MediaTek Cloud Sandbox:
labs.mediatek.com/mcs
Check the Forum:
labs.mediatek.com/forums
Copyright © MediaTek Inc. All rights reserved.
38
QUESTIONS…?
39

Más contenido relacionado

La actualidad más candente

Overview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer KitOverview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer KitIntel® Software
 
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v12015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1MAKERPRO.cc
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitSulamita Garcia
 
IoTivity Tutorial: Prototyping IoT Devices on GNU/Linux
IoTivity Tutorial: Prototyping IoT Devices on GNU/LinuxIoTivity Tutorial: Prototyping IoT Devices on GNU/Linux
IoTivity Tutorial: Prototyping IoT Devices on GNU/LinuxSamsung Open Source Group
 
Developing a NodeBot using Intel XDK IoT Edition
Developing a NodeBot using Intel XDK IoT EditionDeveloping a NodeBot using Intel XDK IoT Edition
Developing a NodeBot using Intel XDK IoT EditionIntel® Software
 
MicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ
 
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...Paris Open Source Summit
 
LAS16-100K1: Welcome Keynote
LAS16-100K1: Welcome KeynoteLAS16-100K1: Welcome Keynote
LAS16-100K1: Welcome KeynoteLinaro
 
BKK16-500K2 CTO talk - The End to End Story
BKK16-500K2 CTO talk - The End to End StoryBKK16-500K2 CTO talk - The End to End Story
BKK16-500K2 CTO talk - The End to End StoryLinaro
 
Internet Of Things: Hands on: YOW! night
Internet Of Things: Hands on: YOW! nightInternet Of Things: Hands on: YOW! night
Internet Of Things: Hands on: YOW! nightAndy Gelme
 
Eclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersEclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersMicroEJ
 
IoT: From Arduino Microcontrollers to Tizen Products using IoTivity
IoT: From Arduino Microcontrollers to Tizen Products using IoTivityIoT: From Arduino Microcontrollers to Tizen Products using IoTivity
IoT: From Arduino Microcontrollers to Tizen Products using IoTivitySamsung Open Source Group
 
Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!Codemotion
 
IoTivity for Automotive: meta-ocf-automotive tutorial
IoTivity for Automotive: meta-ocf-automotive tutorialIoTivity for Automotive: meta-ocf-automotive tutorial
IoTivity for Automotive: meta-ocf-automotive tutorialSamsung Open Source Group
 

La actualidad más candente (20)

Tizen Connected with IoTivity
Tizen Connected with IoTivityTizen Connected with IoTivity
Tizen Connected with IoTivity
 
Overview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer KitOverview of the Intel® Internet of Things Developer Kit
Overview of the Intel® Internet of Things Developer Kit
 
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v12015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1
2015 12-09-Lass移植LinkIt 7688 Duo 初步規劃與研究-v1
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
 
IoT Meets Security
IoT Meets SecurityIoT Meets Security
IoT Meets Security
 
IoTivity Tutorial: Prototyping IoT Devices on GNU/Linux
IoTivity Tutorial: Prototyping IoT Devices on GNU/LinuxIoTivity Tutorial: Prototyping IoT Devices on GNU/Linux
IoTivity Tutorial: Prototyping IoT Devices on GNU/Linux
 
Developing a NodeBot using Intel XDK IoT Edition
Developing a NodeBot using Intel XDK IoT EditionDeveloping a NodeBot using Intel XDK IoT Edition
Developing a NodeBot using Intel XDK IoT Edition
 
MicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devicesMicroEJ OS and Edje: the software foundation for IoT devices
MicroEJ OS and Edje: the software foundation for IoT devices
 
Iotivity atmel-20150328rzr
Iotivity atmel-20150328rzrIotivity atmel-20150328rzr
Iotivity atmel-20150328rzr
 
Présentation du système d'exploitation RIOT-OS
Présentation du système d'exploitation RIOT-OSPrésentation du système d'exploitation RIOT-OS
Présentation du système d'exploitation RIOT-OS
 
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
#OSSPARIS19 : Control your Embedded Linux remotely by using WebSockets - Gian...
 
LAS16-100K1: Welcome Keynote
LAS16-100K1: Welcome KeynoteLAS16-100K1: Welcome Keynote
LAS16-100K1: Welcome Keynote
 
GENIVI + OCF Cooperation
GENIVI + OCF CooperationGENIVI + OCF Cooperation
GENIVI + OCF Cooperation
 
BKK16-500K2 CTO talk - The End to End Story
BKK16-500K2 CTO talk - The End to End StoryBKK16-500K2 CTO talk - The End to End Story
BKK16-500K2 CTO talk - The End to End Story
 
Internet Of Things: Hands on: YOW! night
Internet Of Things: Hands on: YOW! nightInternet Of Things: Hands on: YOW! night
Internet Of Things: Hands on: YOW! night
 
Eclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for MicrocontrollersEclipse Edje: A Java API for Microcontrollers
Eclipse Edje: A Java API for Microcontrollers
 
IoT: From Arduino Microcontrollers to Tizen Products using IoTivity
IoT: From Arduino Microcontrollers to Tizen Products using IoTivityIoT: From Arduino Microcontrollers to Tizen Products using IoTivity
IoT: From Arduino Microcontrollers to Tizen Products using IoTivity
 
Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!
 
Platform io for beginner
Platform io for beginnerPlatform io for beginner
Platform io for beginner
 
IoTivity for Automotive: meta-ocf-automotive tutorial
IoTivity for Automotive: meta-ocf-automotive tutorialIoTivity for Automotive: meta-ocf-automotive tutorial
IoTivity for Automotive: meta-ocf-automotive tutorial
 

Destacado

LinkIt Smart 7688 Duo and MCS basics
LinkIt Smart 7688 Duo and MCS basicsLinkIt Smart 7688 Duo and MCS basics
LinkIt Smart 7688 Duo and MCS basicsCAVEDU Education
 
Link it smart 7688 MEETUP - Bangkok
Link it smart 7688 MEETUP - BangkokLink it smart 7688 MEETUP - Bangkok
Link it smart 7688 MEETUP - BangkokNat Weerawan
 
IoT(사물인터넷) 제품 및 서비스 동향
IoT(사물인터넷) 제품 및 서비스 동향IoT(사물인터넷) 제품 및 서비스 동향
IoT(사물인터넷) 제품 및 서비스 동향훈주 윤
 
Performance Tuning EC2 Instances
Performance Tuning EC2 InstancesPerformance Tuning EC2 Instances
Performance Tuning EC2 InstancesBrendan Gregg
 
TDC2016 - Conhecendo o Ecossistema LinkIt para Makers
TDC2016 - Conhecendo o Ecossistema LinkIt para MakersTDC2016 - Conhecendo o Ecossistema LinkIt para Makers
TDC2016 - Conhecendo o Ecossistema LinkIt para MakersAndré Curvello
 
IOT 비즈니스기회
IOT 비즈니스기회IOT 비즈니스기회
IOT 비즈니스기회Kim jeehyun
 

Destacado (6)

LinkIt Smart 7688 Duo and MCS basics
LinkIt Smart 7688 Duo and MCS basicsLinkIt Smart 7688 Duo and MCS basics
LinkIt Smart 7688 Duo and MCS basics
 
Link it smart 7688 MEETUP - Bangkok
Link it smart 7688 MEETUP - BangkokLink it smart 7688 MEETUP - Bangkok
Link it smart 7688 MEETUP - Bangkok
 
IoT(사물인터넷) 제품 및 서비스 동향
IoT(사물인터넷) 제품 및 서비스 동향IoT(사물인터넷) 제품 및 서비스 동향
IoT(사물인터넷) 제품 및 서비스 동향
 
Performance Tuning EC2 Instances
Performance Tuning EC2 InstancesPerformance Tuning EC2 Instances
Performance Tuning EC2 Instances
 
TDC2016 - Conhecendo o Ecossistema LinkIt para Makers
TDC2016 - Conhecendo o Ecossistema LinkIt para MakersTDC2016 - Conhecendo o Ecossistema LinkIt para Makers
TDC2016 - Conhecendo o Ecossistema LinkIt para Makers
 
IOT 비즈니스기회
IOT 비즈니스기회IOT 비즈니스기회
IOT 비즈니스기회
 

Similar a MediaTek Linkit Smart 7688 Webinar

Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2Bhavin Chandarana
 
Linxu conj2016 96boards
Linxu conj2016 96boardsLinxu conj2016 96boards
Linxu conj2016 96boardsLF Events
 
The MRAA and UPM Middleware Libraries
The MRAA and UPM Middleware LibrariesThe MRAA and UPM Middleware Libraries
The MRAA and UPM Middleware LibrariesIntel® Software
 
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamQuick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamMif Masterz
 
Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015Espert Pte Ltd
 
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...Luigi Francesco Cerfeda
 
Internet of things
Internet of thingsInternet of things
Internet of thingsBrockanurag
 
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023Peter Gallagher
 
Pre meetup intel® roadshow london
Pre meetup intel® roadshow londonPre meetup intel® roadshow london
Pre meetup intel® roadshow londonHugo Espinosa
 
IoT fun with Raspberry Pi and .NET
IoT fun with Raspberry Pi and .NETIoT fun with Raspberry Pi and .NET
IoT fun with Raspberry Pi and .NETChristos Matskas
 
Create IoT with Open Source Hardware, Tizen and HTML5
Create IoT with Open Source Hardware, Tizen and HTML5Create IoT with Open Source Hardware, Tizen and HTML5
Create IoT with Open Source Hardware, Tizen and HTML5Leon Anavi
 
Edje Project: The Software Foundation for IoT Devices
Edje Project: The Software Foundation for IoT DevicesEdje Project: The Software Foundation for IoT Devices
Edje Project: The Software Foundation for IoT DevicesMicroEJ
 
Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Codemotion
 
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...South Tyrol Free Software Conference
 
Introduction to FreeRTOS
Introduction to FreeRTOSIntroduction to FreeRTOS
Introduction to FreeRTOSICS
 
Mindstorms Arduino En Phidgets
Mindstorms Arduino En PhidgetsMindstorms Arduino En Phidgets
Mindstorms Arduino En Phidgetssiertwijnia
 
Mindstorms Arduino En Phidgets
Mindstorms Arduino En PhidgetsMindstorms Arduino En Phidgets
Mindstorms Arduino En Phidgetsprotospace
 

Similar a MediaTek Linkit Smart 7688 Webinar (20)

Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
Presentation for IoT workshop at Sinhagad University (Feb 4, 2016) - 2/2
 
IoT Session Thomas More
IoT Session Thomas MoreIoT Session Thomas More
IoT Session Thomas More
 
Cc internet of things @ Thomas More
Cc internet of things @ Thomas MoreCc internet of things @ Thomas More
Cc internet of things @ Thomas More
 
Linxu conj2016 96boards
Linxu conj2016 96boardsLinxu conj2016 96boards
Linxu conj2016 96boards
 
The MRAA and UPM Middleware Libraries
The MRAA and UPM Middleware LibrariesThe MRAA and UPM Middleware Libraries
The MRAA and UPM Middleware Libraries
 
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez CreamQuick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
Quick prototyping using Gadgeteer, Raspberry Pi + Fez Cream
 
Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015Geohackathon Technical Briefing slides 27 Nov 2015
Geohackathon Technical Briefing slides 27 Nov 2015
 
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...
Workshop: Arduino for makers - Strumenti SW per la prototipazione elettronica...
 
Internet of things
Internet of thingsInternet of things
Internet of things
 
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
Building a Raspberry Pi Robot with Dot NET 7, Blazor and SignalR - TechDays 2023
 
Pre meetup intel® roadshow london
Pre meetup intel® roadshow londonPre meetup intel® roadshow london
Pre meetup intel® roadshow london
 
IoT fun with Raspberry Pi and .NET
IoT fun with Raspberry Pi and .NETIoT fun with Raspberry Pi and .NET
IoT fun with Raspberry Pi and .NET
 
Create IoT with Open Source Hardware, Tizen and HTML5
Create IoT with Open Source Hardware, Tizen and HTML5Create IoT with Open Source Hardware, Tizen and HTML5
Create IoT with Open Source Hardware, Tizen and HTML5
 
Edje Project: The Software Foundation for IoT Devices
Edje Project: The Software Foundation for IoT DevicesEdje Project: The Software Foundation for IoT Devices
Edje Project: The Software Foundation for IoT Devices
 
Teksun Corporate Overview 2014
Teksun Corporate Overview 2014Teksun Corporate Overview 2014
Teksun Corporate Overview 2014
 
Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015Making it big with something small - Philip Handschin - Codemotion Roma 2015
Making it big with something small - Philip Handschin - Codemotion Roma 2015
 
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...
SFScon 22 - Roberto Innocenti - Start Enjoy Yourself with Open Hardware POWER...
 
Introduction to FreeRTOS
Introduction to FreeRTOSIntroduction to FreeRTOS
Introduction to FreeRTOS
 
Mindstorms Arduino En Phidgets
Mindstorms Arduino En PhidgetsMindstorms Arduino En Phidgets
Mindstorms Arduino En Phidgets
 
Mindstorms Arduino En Phidgets
Mindstorms Arduino En PhidgetsMindstorms Arduino En Phidgets
Mindstorms Arduino En Phidgets
 

Último

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 

Último (20)

New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 

MediaTek Linkit Smart 7688 Webinar

  • 1. AjithKP MediaTekLabs How to develop advanced smart home applications using MediaTek LinkIt™ 7688
  • 2. What’s there in the Box ? 2 • LinkIt Smart 7688 Introduction • Hardware Development Kit • Software Development Tools • Demo • Peripheral Programming • Demo • Q & A
  • 3. MediaTek Labs™ ADeveloper Centric Ecosystem ▪ Free global program ▪ One Stop Solution ▪ Supporting developers: • Device creation • App development ▪ labs.mediatek.com
  • 4. Enabling Developer & Maker Success labs.mediatek.com SDKs Technical docs HDKs Discussion Forums, FAQ & Dev Support Newsletter Solutions Catalog Partner Connect 4
  • 5. What is MediaTek LinkIt™ Smart 7688 ? 5 ▪ Open source WiFi platform ▪ Runs Openwrt Linux ▪ Two versions of HDKs ▪ Multiple Programming Options
  • 6. What you can do with 7688 ? 6
  • 7. MediaTek LinkIt™ Smart 7688 Platform 7 SOC :MT7688AN Highly Integrated compact SOC for IoT Devices with WiFi connectivity SDTs: LinkIt Smart 7688 • OpenWRT • Python & Node.JS • Board support package for Arduino IDE HDKs : LinkIt Smart 7688 • LinkIt Smart 7688 with MT7688 MPU • LinkIt Smart 7688 Duo with MT7688 MPU + MCU
  • 8. MEDIATEK LINKIT™ SMART 7688 PLATFORM : SOC 7688AN DETAILS 8
  • 9. LinkIt Smart 7688 : SOC MT7688AN 9 ▪ 1T1R 802.11 b/g/n Wi-Fi radio ▪ 580MHz MIPS 24KEc CPU ▪ RAM: 128MB DDR2 ▪ Flash: 32MB ▪ USB2.0 host, SD-XC, I2S/PCM, I2C, PWM, UART, GPIO, SPI, SPI- slave ▪ eMMC, PCIe are also supported in MT7688 SoC ▪ Max RAM/Flash supported in MT7688 is ▪ RAM: 256MB ▪ Flash: 64MB MEDIATEK MT7688AN
  • 10. MEDIATEK LINKIT™ SMART 7688 PLATFORM : Hardware Development Kit ( HDK) 10
  • 11. LinkIt Smart 7688 : HDK 11 LinkIt Smart 7688 Duo LinkIt Smart 7688 Two type of HDKs : LinkIt Smart 7688 and LinkIt Smart 7688 Duo
  • 12. 12 LinkItSmart7688 • MT7688 • 128MB DDR2 • 32MB Flash • Chip Antenna (default) • IPEX Ext Antenna • microSD • USB Host • JTAG
  • 13. 13 LinkItSmart7688Duo • MT7688 + ATmega32U4 • 128MB DDR2 • 32MB Flash • Chip Antenna (default) • IPEX Ext Antenna • microSD • USB Host • JTAG
  • 14. MEDIATEK LINKIT™ SMART 7688 PLATFORM : Software Development Tools ( SDT) 14
  • 15. LinkIt Smart 7688 SDTs 15 LinkIt Smart 7688 Platform runs OpenWrt (Chaos Calmer) Linux OS & loaded with range of packages to enable the development of IoT device software You can create applications using Duo only
  • 16. 16 ▪ OpenWrt (Chaos Calmer) • Built-in OPKG ▪ SSH ▪ Python ▪ Node.js ▪ Firmata ▪ Bridge (from Arduino Yun) ▪ Libmraa (also UPM) ▪ OpenSSL (w/ TLS 1.2) ▪ mDNS ▪ AVRdude (Arduino ICSP) ▪ UVC Webcam support ▪ git ▪ Samba Software Specification • BSP related ▪ Ethernet, USB, I2C, UART, GPIO, SPI driver verification ▪ Pin configuration based on HW definition ▪ GPIO control for bypass Bootstrap-pin (LinkIt Smart 7688) ▪ Reset Button Behavior ▪ Wi-Fi Status indicator ▪ Linux Console on UART2 ▪ Firmware upgrade by USB (in boot loader) ▪ PWM, I2S driver ▪ Mac80211 Wi-Fi Open source driver (under development) ▪ Will use WCN binary Wi-Fi driver currently • Setups ▪ Web UI for Initial Setup (Customized UI) ▪ AP Configure File ▪ Pre-defined MenuConfig for required features ▪ Arduino IDE SSH flashing
  • 17. OpenWrt ▪ Linux distribution focus on embedded devices • Started from 2004 • Typically wireless router • Full-featured, easily modifiable OS for routers ▪ A framework to build network applications • Free from the restriction and configuration provided by the vendor 17
  • 18. Supported Programming Language 18 Language Tools & Libraries Applications Host Platform C/C++ Cross Compilation Tool Chain • System Programming • OS X • Linux Python Python runtime on Linkit Smart 7688 • Prototyping • Network • IoT application • OS X • Linux • Windows Node.js Node.js runtime on LinkIt Smart 7688 • Prototyping • Network • IoT application • OS X • Linux • Windows
  • 19. Demo ▪ Connect to LinkIt Smart 7688 AP ▪ Log in using WebUI ▪ Login using Putty ▪ Login & transfer file using SCP Tool ▪ Show Openwrt ▪ OPKG Packages ▪ Change to station mode to access Internet 19
  • 20. MEDIATEK LINKIT™ SMART 7688 PLATFORM : Peripheral Programming 20
  • 21. 21 Wi-Fi MT7688 Hardware Sensors USB Device/SD Peripheral Connections in LinkIt Smart 7688 OpenWrt LinkIt Smart 7688 : Hardware Architecture
  • 22. 22 Software libmraa Python Node.js UPM App Logic OpenWrt Sensors C How can I access sensors from LinkIt Smart 7688 ? libmraa: C/C++ library with bindings to JavaScript & Python for I/O interface in Linux UPM : A set of sensor drivers written in libmraa
  • 23. 23 Basic concepts of MRAA In MRAA, hardware modules such as GPIO, UART, SPI, and PWM are represented as objects Libmraa is a C/C++ library to interface with the peripheral on LinkIt Smart 7688 import mraa pin = mraa.Gpio(44) pin.dir(mraa.DIR_OUT) pin.write(1) Import mraa pin = mraa.Pwm(18) pin.period_ms(2) pin.enable(True) pin.write(0.25) # set duty cycle import mraa i2c = mraa.I2c(0) i2c.address(0x53) if 0xE5 == i2c.readReg(0x00): print "Grove - 3-Axis Digital Accelerometer found on I2C Bus" else: print "Grove - 3-Axis Digital Accelerometer not found" GPIO PWM I2C
  • 24. Demo ▪ Login to 7688 using Putty ▪ Connect to LinkIt Smart 7688 ▪ Code walk through mraa python examples • Simple blink using mraa • Accelerometer eg using UPM ▪ Code walk through Node.js ▪ Control LED from MCS 24
  • 25. 25 Peripheral Connections in LinkIt Smart 7688 Duo MT7688 ATMega32U4 UART USB Device/SD Sensors Wi-Fi Hardware OpenWrt Arduino LinkIt Smart 7688 Duo : Hardware Architecture
  • 26. 26 How can I access sensors from LinkIt Smart 7688 Duo ? 3 Programming Models for LinkIt Smart Duo Primitive UART Connection Firmata Protocol Arduino Yun Bridge Library
  • 27. Peripheral Programming : Option-1 27 Software Python Node.js UART port Sensor Drivers UART Library App Logic OpenWrt Arduino Sensors C
  • 29. 29 Software Sensors Bridge Library Sensor Drivers Bridge Library App Logic (MPU provides Wi-Fi & USB Host / SD) OpenWrt Arduino Peripheral Programming : Option-3
  • 30. Summary:LinkItSmart7688VsDuo Python Node.js Sensors Firmata Python Node.js Sensors UART port Sensor Drivers UART Library App Logic App Logic Sensors Bridge Library Sensor Drivers Bridge Library App Logic (MPU provides Wi-Fi & USB Host) libmraa Python Node.j s upm Sensors App Logic Sensors USB Device/SD LinkIt Smart 7688 Wi-Fi MT7688 MT7688 ATMega32U4 UART USB Device/SD Sensors LinkIt Smart 7688 Duo OpenWrt OpenWrt OpenWrt OpenWrt Arduino Arduino Arduino Hardware Wi-Fi Software MPU (MT7688) with OpenWrt as Host MCU (ATmega32U4) with Arduino as Host Linux Developers Arduino Developers (default) C C C Firmata
  • 31. Demo ▪ Login to 7688 using Putty ▪ Start camera app ▪ Show 3 scenarios with Duo ▪ Upload Arduino Firmata Sketch ▪ Run python code in Linux side and communicate with Arduino ▪ Run Node.js and control lights using browser high/low 31
  • 33. Target Audience 33 IoT Gateway Device Developers OpenWRT Community Python Developers Node.Js Developers Robotics Community Arduino Yun Community
  • 34. LinkIt Smart 7688 Testimonials 34 “I have recently decided to learn embedded Linux, and have bought over 14 different development kits. Though they all run Linux, they all have their pros and cons. So far out of all of them I have liked the MediaTek LinkIt Smart 7688 the best,” Mike Moy, Sr. Design Engineer, Versamodule.com
  • 35. How can I get it ? 35 Online Order : http://www.seeed.cc/linkit_smart_7688/
  • 36. Needmoreinfo ?  Documentation • Get Started Guides • Developer’s Guides • Tutorials & Forums • HDK information  Datasheet  Schematic  Layout  Pin-out Diagram  Toolchains  Bootloader • Source codes hosted on Labs’ repository  Firmware • Source codes hosted on OpenWrt.org 36 labs.mediatek.com
  • 37. Questions? 37 Download Resources: labs.mediatek.com/7688 MediaTek Cloud Sandbox: labs.mediatek.com/mcs Check the Forum: labs.mediatek.com/forums
  • 38. Copyright © MediaTek Inc. All rights reserved. 38