查看: 2427|回复: 2

1、LinkIt ONE Blik LED

[复制链接]
  • TA的每日心情
    慵懒
    2016-10-17 12:07
  • 签到天数: 306 天

    连续签到: 1 天

    [LV.8]以坛为家I

    发表于 2016-3-24 22:31:30 | 显示全部楼层 |阅读模式
    分享到:
    1000px-LinkItONE_RESOURCE.png

    LinkIt ONE是针对可穿戴电子和物联网推出的一款开源、高性能的8合1无线开发板,基于世界领先的可穿戴SOC - 联发科Aster(MT2502A)处理器。 LinkIt ONE集成了高性能的Wi-Fi(MT5931)和GPS(MT3332)x芯片。同时,LinkIt ONE提供了兼容Arduino UNO的接口可以很容易的介入各种Shield及传感。

    关于LinkIt ONE 网站已经有了一篇帖子评测,这里就不再介绍了。

    LinkIt ONE 可以查看官方的介绍(http://www.seeedstudio.com/wiki/index.php?title=LinkIt_ONE%E5%BC%80%E5%8F%91%E6%9D%BF&uselang=zh)

    本文主要是在MAC搭建开发环境,Blink LED。

    本文使用的是  arduino 1.6.6  

    install.jpg

    一、首先去官网(arduino.cc)下载arduino 1.6.6

    二、安装驱动
    点击下载
    (http://download.labs.mediatek.com/mediatek_linkit_os-x-com-port-driver.zip)

    三、下载 LinkIt ONE SDK
      打开arduino  ,选择 菜单栏,然后 偏好设置,
      在 Additional Boards Manager URLs 输入
      http://download.labs.mediatek.com/package_mtk_linkit_index.json
    在Arduino的  Tools ->  Board -> Boards Manager   中选择 LinkIt ONE  安装即可。

    四、选择串口下载
    board_select.png


    五,新建demo ,如下:
    1. /*
    2.   Blink
    3.   Turns on an LED on for one second, then off for one second, repeatedly.

    4.   Most Arduinos have an on-board LED you can control. On the Uno and
    5.   Leonardo, it is attached to digital pin 13. If you're unsure what
    6.   pin the on-board LED is connected to on your Arduino model, check
    7.   the documentation at http://www.arduino.cc

    8.   This example code is in the public domain.

    9.   modified 8 May 2014
    10.   by Scott Fitzgerald
    11. */


    12. // the setup function runs once when you press reset or power the board
    13. void setup() {
    14.   // initialize digital pin 13 as an output.
    15.   pinMode(13, OUTPUT);
    16. }

    17. // the loop function runs over and over again forever
    18. void loop() {
    19.   digitalWrite(13, HIGH);   // turn the LED on (HIGH is the voltage level)
    20.   delay(200);              // wait for a second
    21.   digitalWrite(13, LOW);    // turn the LED off by making the voltage LOW
    22.   delay(200);              // wait for a second
    23. }
    复制代码
    下载即可看到LED闪烁。



    回复

    使用道具 举报

  • TA的每日心情

    2021-12-7 12:35
  • 签到天数: 1354 天

    连续签到: 1 天

    [LV.10]以坛为家III

    发表于 2016-3-24 22:47:14 | 显示全部楼层
    下载下来,参考和学习
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    慵懒
    2016-10-17 12:07
  • 签到天数: 306 天

    连续签到: 1 天

    [LV.8]以坛为家I

     楼主| 发表于 2016-3-25 08:58:58 | 显示全部楼层
    jwdxu2009 发表于 2016-3-24 22:47
    下载下来,参考和学习

    直接去看官方的吧,,不过是中文的,,官方的讲的比较详细。。
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 注册/登录

    本版积分规则

    关闭

    站长推荐上一条 /4 下一条



    手机版|小黑屋|与非网

    GMT+8, 2024-12-19 06:03 , Processed in 0.142889 second(s), 20 queries , MemCache On.

    ICP经营许可证 苏B2-20140176  苏ICP备14012660号-2   苏州灵动帧格网络科技有限公司 版权所有.

    苏公网安备 32059002001037号

    Powered by Discuz! X3.4

    Copyright © 2001-2024, Tencent Cloud.