Grove Breakout for LinkItTM Smart 7688 Duo is a Grove port integrated and a feature expansion board for LinkItTM Smart 7688 Duo development board[1]. This breakout board will save a lot of work for quicker prototyping, especially for novices through simplified wiring procedure. So it will help a beginner get a quick start. It supports serial buses like I2C, UART and provides access to reserved original pins of LinkItTM Smart 7688 Duo.
[1] LinkItTM Smart 7688 Duo is an open development board based on the OpenWrt Linux distribution, MT7688 and ATmega32u4. The board is designed especially to enable the prototyping of Rich Application IoT devices for Smart-Home.
Input voltage | 5.0V (With USB Power port) |
Operating voltage | 3.3V |
Debug pins connect with MT7688, other pins connect with ATmega32U4. |
Note: As you need to plug LinkIt Smart 7688 Duo on this breakout, align the side with USB micro type-B of LinkIt Smart 7688 Duo to the side with silkscreen Host of Grove Breakout for LinkIt Smart 7688 Duo.
Parts name | Quantity |
---|---|
Grove Breakout for LinkIt Smart 7688 Duo | 1PC |
Note 1: You can find Pin 8, Pin 9 and Pin GND close to the port to be connected LinkIt Smart 7688.
Note 2: You can plug jumper wires into MT7688 UART2 port instead of soldering them to Pin 8, Pin 9 and Pin GND.
Note: Plug Grove - Buzzer into port D4.
Note: Following steps are carried out on embedded OS(OpenWRT).
from pyfirmata import Arduino, util from time import sleep board = Arduino('/dev/ttyS0') print "Start blinking D4" while True: board.digital[4].write(1) sleep(0.5) board.digital[4].write(0) sleep(0.5)