万博网页版登陆页派论坛

pcDuino上跑第一个Arduino程序_blink

树老大 发表于 2013-5-18 23:38:20 | 显示全部楼层 |阅读模式

入手pcDuino有一段时间了,鼓起勇气刷了个官方最新lubuntu系统,开始我的arduino之旅。刚刚调通了第一个基于arduino语言的led闪烁程序,与大家分享。Arduino就这么简单,很好上手。

目标:使接在pcduino上的led灯闪烁

硬件连接:一个led灯+限流电阻,一端接5V,另一端接pcduino上的任一GPIO(0-13)

一、搭建环境

安装官方文档刷最新ubuntu系统,很详细不再细说。其实刷机时接上debug,会有提示安装信息,不用一直盯着TX RX led。下载https://github.com/pcduino/c_enviroment上面的arduino例程。

二、编写arduino代码

我是参考arduino给的例子写的,觉得arduino语言太好上手,没有什么硬件基础都可以玩。下面编写一个led闪烁程序blink

在arduino-master\test增加blank.c文件:arduino-master\test\blink.c

  1. /*  
  2. * I/O test program for a10  
  3. * Blink  
  4. * Turns on an LED on for one second, then off for one second, repeatedly.  
  5. * This example code is in the public domain.  
  6. */  
  7.   
  8. #include <core.h>  
  9. int led_pin = 5;  
  10.   
  11. void setup()  
  12. {  
  13.     if ( argc !=2 )  
  14.     {  
  15.         printf("Usage %s  LED_PIN_NUM(0-13)\n", argv[0]);  
  16.         exit(-1);     
  17.     }  
  18.       
  19.    
  20.     led_pin = atoi(argv[1]);  
  21.       
  22.     printf("blink  LED (connected to pin %d)\n",led_pin);  
  23.   
  24.   // initialize the digital pin as an output.  
  25.   // led_pin has an LED connected on most Arduino boards:  
  26.   pinMode(led_pin, OUTPUT);      
  27. }  
  28.   
  29. void loop() {  
  30.   digitalWrite(led_pin, HIGH);   // set the LED on  
  31.   delay(1000);              // wait for a second  
  32.   digitalWrite(led_pin, LOW);    // set the LED off  
  33.   delay(1000);              // wait for a second  
  34. }  
复制代码
修改arduino-master\test\Makefile:
  1. LIBS=-L../../sample/core -larduino -lspi  
  2. INCS=-I../../sample/core/include  
  3. TARGET=../../sample/test  
  4.   
  5. OBJS = io_test adc_test pwm_test spi_test adxl345_test blink  
  6.   
  7. all: $(OBJS)  
  8.     @mkdir -p $(TARGET)  
  9.     @mv $(OBJS) $(TARGET)  
  10.   
  11. io_test: io_test.c  
  12.     $(CC) $(LIBS) $(INCS) lt; -o $@  
  13.   
  14. blink: blink.c  
  15.     $(CC) $(LIBS) $(INCS) lt; -o $@  
  16.   
  17. adc_test: adc_test.c  
  18.     $(CC) $(LIBS) $(INCS) lt; -o $@  
  19.   
  20. pwm_test: pwm_test.c  
  21.     $(CC) $(LIBS) $(INCS) lt; -o $@  
  22.   
  23. spi_test: spi_test.c   
  24.     $(CC) $(LIBS) $(INCS) lt; -o $@  
  25.   
  26. adxl345_test: adxl345_test.c  
  27.     $(CC) lt; -o $@  
  28. clean:  
  29.     @for i in $(OBJS); do rm -f $(TARGET)/$i; done  
复制代码
其中blink: blink.c是新加的led闪烁程序。就这样,代码就编写完了

三、编译

ubuntu@ubuntu:/$ cd home/ubuntu/work/arduino-master/test/
ubuntu@ubuntu:~/work/arduino-master/test$ ls
Makefile  adc_test.c  adxl345_test.c  blink.c  io_test.c  pwm_test.c  spi_test.c
ubuntu@ubuntu:~/work/arduino-master/test$ make
cc -L../../sample/core -larduino -lspi -I../../sample/core/include io_test.c -o io_test
cc -L../../sample/core -larduino -lspi -I../../sample/core/include adc_test.c -o adc_test
cc -L../../sample/core -larduino -lspi -I../../sample/core/include pwm_test.c -o pwm_test
cc -L../../sample/core -larduino -lspi -I../../sample/core/include spi_test.c -o spi_test
cc adxl345_test.c -o adxl345_test
cc -L../../sample/core -larduino -lspi -I../../sample/core/include blink.c -o blink
ubuntu@ubuntu:~/work/arduino-master/test$ cd ../../
ubuntu@ubuntu:~/work$ cd sample/
ubuntu@ubuntu:~/work/sample$ ls
core  test
ubuntu@ubuntu:~/work/sample$ cd test/
ubuntu@ubuntu:~/work/sample/test$ ls
adc_test  adxl345_test  blink  io_test  pwm_test  spi_test
ubuntu@ubuntu:~/work/sample/test$

分析Makefile可知,最终编译生成的扩展性文件在/home/ubuntu/work/sample目录下

四、测试

开始测试写的blink.c led闪烁程序,我的led接在gpio5上,传入参数5

ubuntu@ubuntu:~/work/sample/test$ ./blink 5
blink  LED (connected to pin 5)

现在就可以看到接在GPIO5上的LED灯开始闪烁了。Arduino程序就这么简单,但又很灵活,不信你也可以试试。



teddyrpi 发表于 2015-4-22 15:33:44 | 显示全部楼层
谢谢分享,学习中 。。
teddyrpi 发表于 2015-4-22 15:36:24 | 显示全部楼层
谢谢分享,学习中 。。
miaoichi 发表于 2015-11-23 23:02:16 | 显示全部楼层
谢谢分享,学习中 。。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版 | Archiver | 万博网页版登陆页派论坛 ( 粤ICP备15075382号-1 )