cndongj 发表于 2013-3-1 15:19:22

刚发现一个似乎比树莓派还好玩的东西pcduino,支持arduino语言

刚刚在淘宝上瞎逛,想找点树莓派相关的东西,结果偶然找到了这个pcduino,据说远超树莓派,从参数上也的确如此,而且居然支持arduino的编程语言,令人激动。


以下是一些介绍资料

pcDuino: an MiniPC with Arduino headers ubuntu android google TV

http://img02.taobaocdn.com/imgextra/i2/774781652/T2.3mEXa0cXXXXXXXX_!!774781652.jpg


简介:

pcDuino 是一台mini PC平台,可以像PC机一样安装 Ubuntu和Android ICS,HDMI的高清显示器输出接口。而且可以兼容Arduino 接口。可以开发google TV。

硬件性能指标远超树莓派,性能稳定,做工精良。

性能参数:

CPU: 1GHz ARM Cortex A8
显卡: OpenGL ES2.0, OpenVG 1.1 Mali 400 core
DRAM: 1GB
板载存储空间: 2GB Flash, 带SD卡槽,最大支持32GB
视频输出: HDMI
操作系统: Linux + Android
外部接口: 兼容Arduino的2.54 mm 接插件
网络接口: RJ45 and USB WiFi 网卡

相关应用:

可以学习编程
可以使用Ubuntu 浏览器和办公软件
学习 Ubuntu linux
看电影
玩游戏
DIY项目

文件下载:

概要http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Dev/PCDuino/pcDuino_V01_Schem.pdf
用户指南   http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Dev/PCDuino/pcDuino_UserGuide_Rev02.pdf
机械制图https://mail.google.com/mail/u/0/?shva=1#inbox
pcDuino网站 http://www.pcduino.com/

Description: As the field of embedded electronics gets more advanced, hobbyists and professionals are both in need of smaller and more powerful computers. We've been looking for awhile and now we've found one that we really like, not only because it's small and fast but because it's also Arduino shield compatible! The pcDuino is a high performance, cost effective mini PC platform that runs full-featured operating systems such as Ubuntu and Android ICS.

It's easy to hook up, just connect 5V power and a keyboard and mouse. The pcDuino outputs video to any HDMI enabled TV or monitor via the built in HDMI interface. It was specifically designed to make it easy for the open source community to develop computationally demanding projects using the vast, existing catalog of Arduino Shields.

An API has been developed for the pcDuino that allows the user to access all of the functions that you would expect using simple Arduino-style language.

Dimensions: 125mm X 52mm

Features:

1GHz ARM Cortex A8 CPU
GPU: OpenGL ES2.0, OpenVG 1.1 Mali 400 core
1GB DRAM
Onboard Storage: 2GB Flash, microSD card (TF) slot for up to 32GB
HDMI Video Output
Linux3.0 + Ubuntu12.10 Supported
0.1" Spaced GPIO Headers
RJ45 Ethernet Connection
Power Requirements: 2A @ 5VDC
Arduino Shield Compatible
API to access the following interfaces:
UART
ADC
PWM
GPIO
I2C
Program in C, C++ with GNU tool chain
Program in Java with standard Android SDK
Documents:

Schematic
http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Dev/PCDuino/pcDuino_V01_Schem.pdf
User Guide
http://dlnmh9ip6v2uc.cloudfront.net/datasheets/Dev/PCDuino/pcDuino_UserGuide_Rev02.pdf
Mechanical Drawings
https://mail.google.com/mail/u/0/?shva=1#inbox
pcDuino Site
http://www.pcduino.com/


应用例子

Touch Sensor Module of Linker Kit on pcDuino

In this tutorial, we are going to use touch sensor module of Linker kit on pcDuino.

First, we take a protoshield , and female to female jumpers.


http://www.pcduino.com/wp-content/uploads/2013/02/Protoshield-1024x682.jpg

http://www.pcduino.com/wp-content/uploads/2013/02/DSCF1386-1024x682.jpg

Now we can add Arduino shield.

We use Linker kit in this tutorial:

http://www.pcduino.com/wp-content/uploads/2013/02/5.bmp

With the following code, when we touch the touch module, the LED will light up. It will go off when we remove from the touch module.

Code:

ubuntu@ubuntu:~/arduino/test$ more touch_sen.c

/*
* Touch Sensor module of Linker Kit for pcDuino
* http://linksprite.com/wiki/index.php5?title=Touch_Sensor_Module
*/
#include <core.h>
int led_pin = 8; //Connect LED module to GPIO 8
int btn_pin = 7; //Connect touch module to GPIO 7

void setup()
{

pinMode(led_pin, OUTPUT);
pinMode(btn_pin, INPUT);
}

void loop()
{
int value = digitalRead(btn_pin); // get button status

if ( value == HIGH ) // button pressed
{
digitalWrite(led_pin, HIGH); // turn on LED
}
else // button released
{
digitalWrite(led_pin, LOW); // turn off LED

}
delay(100);
}

pcDuino ard uino compatible headers


The following interfaces are provided: 1. one UART 2. 6 ADCs. ADC 0 and ADC 1 are 6 bits resolution, while the rest are 10 bits resolution. 3. 2 hardware PWMs, can support up to 24MHz. 4. 14 GPIOs.…

http://www.pcduino.com/wp-content/uploads/2013/02/pcduino_arduino_headers.jpg

The following interfaces are provided:

1. one UART
2. 6 ADCs. ADC 0 and ADC 1 are 6 bits resolution, while the rest are 10 bits resolution.
3. 2 hardware PWMs, can support up to 24MHz.
4. 14 GPIOs.
5. One I2C.
6. One SPI.

pcduino: ADC experiments

pcDuino has 6 ADCs. In this experiment, we are using potentiometer to adjust the voltage, and the screen shows different number of ADC reading


http://www.pcduino.com/wp-content/uploads/2013/01/IMG_0189.jpg

pcDuino has 6 ADCs. In this experiment, we are using potentiometer to adjust the voltage, and the screen shows different number of ADC readings.

http://www.pcduino.com/wp-content/uploads/2013/01/IMG_0191.jpg

pcduino: GPIO experiments
In this experiment, user presses the button to turn on the LED.

rei1984 发表于 2013-3-1 15:22:35

感觉不错,可以买一片来试试

lz 能否告知在国外哪个网站有卖

cndongj 发表于 2013-3-1 15:28:56

目前我的树莓派还没运行起来,居然手头的鼠标键盘都不支持,从网上拍的有线鼠标键盘还没到货,看到这个虽然激动,就不当小白鼠了,欢迎并鼓励有时间有银子的朋友踊跃去当小白鼠,在淘宝上搜索”Pcduino“能搜到好几家卖的,如果用后感觉好,请回到阿莫这里介绍一下。

cndongj 发表于 2013-3-1 15:31:17

rei1984 发表于 2013-3-1 15:22 static/image/common/back.gif
感觉不错,可以买一片来试试

lz 能否告知在国外哪个网站有卖

在淘宝上搜索Pcduino,能搜到好几家卖的,价钱不贵,370元,看参数的确非常令人激动,希望大家多介绍一下当小白鼠的经验。呵呵

wkman 发表于 2013-3-1 15:33:01

rei1984 发表于 2013-3-1 15:22 static/image/common/back.gif
感觉不错,可以买一片来试试

lz 能否告知在国外哪个网站有卖

刚刚在淘宝上瞎逛,----->,结果偶然找到了这个


{:titter:}

cndongj 发表于 2013-3-1 15:37:34

wkman 发表于 2013-3-1 15:33 static/image/common/back.gif
刚刚在淘宝上瞎逛,----->,结果偶然找到了这个

的确是偶然找到的,在淘宝上搜树莓派,结果看到有这个产品,激动之余就赶紧介绍到阿莫这里了,为了免得让人误会是广告贴,所以只从人家淘宝网页上贴了些介绍,没有任何卖家链接信息,有感兴趣的请自己去淘宝上搜索Pcduino吧。

ksniper 发表于 2013-3-1 15:39:46

看上去很不错啊可惜今年没空闲    我会持续关注的过过干瘾   

zzz1367 发表于 2013-3-1 15:42:35

做的 好精致啊。。。

songmuyi 发表于 2013-3-1 15:48:41

看起来不错啊

gzhuli 发表于 2013-3-1 15:50:49

全智A10,除了有GPIO引出外,和淘宝200不到的MK802没多大区别。

cndongj 发表于 2013-3-1 15:58:11

目前资料不多,再发些介绍

1、pcduino: GPIO experiments
Posted on January 27, 2013 by admin — No Comments ↓
http://www.pcduino.com/wp-content/uploads/2013/01/GPIO_c.jpg

In this experiment, user presses the button to turn on the LED.
http://www.pcduino.com/wp-content/uploads/2013/01/IMG_0184.jpg

2、pcduino: ADC experiments
Posted on January 27, 2013 by admin — No Comments ↓

http://www.pcduino.com/wp-content/uploads/2013/01/IMG_0189.jpg
pcDuino has 6 ADCs. In this experiment, we are using potentiometer to adjust the voltage, and the screen shows different number of ADC readings.

http://www.pcduino.com/wp-content/uploads/2013/01/IMG_0191.jpg

3、pcDuino arduino compatible headers
Posted on February 17, 2013 by admin — No Comments ↓

http://www.pcduino.com/wp-content/uploads/2013/02/pcduino_arduino_headers.jpg
The following interfaces are provided:

1. one UART
2. 6 ADCs. ADC 0 and ADC 1 are 6 bits resolution, while the rest are 10 bits resolution.
3. 2 hardware PWMs, can support up to 24MHz.
4. 14 GPIOs.
5. One I2C.
6. One SPI.

4、pcduino has Arduino style C programming
Posted on January 27, 2013 by admin — No Comments ↓
http://www.pcduino.com/wp-content/uploads/2013/01/develop.jpg

5、pcDuino|Ubuntu: browse Internet, watching Youtube
Posted on January 21, 2013 by admin — No Comments ↓
http://www.pcduino.com/wp-content/uploads/2013/01/youtube_new.jpg

cndongj 发表于 2013-3-1 16:02:05

gzhuli 发表于 2013-3-1 15:50 static/image/common/back.gif
全智A10,除了有GPIO引出外,和淘宝200不到的MK802没多大区别。

想好玩当然要把GPIO引出去了,否则大家就玩平板手机就行了,而且这个还支持arduino语言编程的,还有ADC、PWM、串口,用来代替arudino应该不错,不用像树莓派那样还要学习python了。

ppa2001 发表于 2013-3-1 16:10:53

看起来,和S5PV210 差不多,不过S5PV210开发板要600多。

solisgood 发表于 2013-3-1 16:13:45

想玩玩,

cndongj 发表于 2013-3-1 16:14:17

ppa2001 发表于 2013-3-1 16:10 static/image/common/back.gif
看起来,和S5PV210 差不多,不过S5PV210开发板要600多。

这个淘宝上好几家的售价都是370,S5PV210编程难度应该挺大,不适合用来玩吧?

Anqi90 发表于 2013-3-1 16:26:06

这布局有点蛋疼啊...接口都放到一个长边上多好,加上外壳做个小PC什么的...这样放两边怎么接线啊...多难看

zgxcom123 发表于 2013-3-1 16:32:33

也就是太高端mp4了………………

eryueniao 发表于 2013-3-1 16:35:24

cool                                                                                          

a_2012_m 发表于 2013-3-1 16:54:37

可以入手试试

netawater 发表于 2013-3-1 16:58:59

支持arduio还是不错的。

gzhuli 发表于 2013-3-1 17:09:19

cndongj 发表于 2013-3-1 16:02 static/image/common/back.gif
想好玩当然要把GPIO引出去了,否则大家就玩平板手机就行了,而且这个还支持arduino语言编程的,还有ADC、 ...

一直觉得这种级别的CPU还玩GPIO PWM这些底层的东西没什么意思。

jimmy_xt 发表于 2013-3-1 17:22:30

cndongj 发表于 2013-3-1 16:14 static/image/common/back.gif
这个淘宝上好几家的售价都是370,S5PV210编程难度应该挺大,不适合用来玩吧? ...

这种CPU基本都会跑操作系统了,能裸机搞东西,就果断跪了吧,那不是个人能搞的。
跑个安卓,然后程序就在上面开发了。

你发的这个是跑了个ubuntu,然后搞个了arduino语言的编译器,并写好了硬件底层的驱动。

sun_sky 发表于 2013-3-1 22:57:38

ARM的发展让门槛降低了许多,这类产品以后还会更多,
可以玩的好东西越来越多了!

elecfun 发表于 2013-3-2 00:38:11

国内有 树莓派II

微微的薄雾 发表于 2013-3-6 13:17:33

我在淘宝上也看到的pcDUino这个产品,也感觉很不错,看到了他们发布的Q群我也加进去探讨了一下,听说在做新的应用,我自己是就先继续关注着这个产品了,呵呵。

kent.c 发表于 2013-3-6 13:38:50

和cubieboard差不多嘛,呵呵

微微的薄雾 发表于 2013-3-6 14:42:25

刚得到得到他们消息,在优酷网上放了 pcDuino操作系统安装、升级视频好消息就更大家分享一下只要大家在优酷上收 pcduino 就可以看到了,{:loveliness:}

cndongj 发表于 2013-3-6 14:45:53

kent.c 发表于 2013-3-6 13:38 static/image/common/back.gif
和cubieboard差不多嘛,呵呵

cubieboard我刚才查了下,不过我觉得pcduino的易用性似乎更好些,因为它支持arduino的程序形式,玩起来应该更简单吧。

微微的薄雾 发表于 2013-3-6 15:03:37

我看看了他们pcDuino的官方网站,产品好像才出来不久现在资料还不怎么多,真是希望能多出点例程,我自己对这个产品挺支持的。

vipcff 发表于 2013-3-6 15:29:36

gzhuli 发表于 2013-3-1 17:09 static/image/common/back.gif
一直觉得这种级别的CPU还玩GPIO PWM这些底层的东西没什么意思。

终于和大师想到一块去了

nnimo 发表于 2013-3-6 15:50:20

这个产品有意思 !

微微的薄雾 发表于 2013-3-7 13:08:07

和大家分享一下
pcDuino汉化过程:
#中文支持
> 安装中文语言包
   sudo apt-get install language-pack-gnome-zh
   安装中文字库,例如:
    sudo apt-get install ttf-arphic-ukai
   设置locale:
    sudo dpkg-reconfigure locales

微微的薄雾 发表于 2013-3-7 13:11:22

他们出 XBMC is on pcDuino! 了 我现在级数不够分享不了图片 {:cry:}{:cry:}{:cry:}

cndongj 发表于 2013-3-7 13:25:58

微微的薄雾 发表于 2013-3-7 13:11 static/image/common/back.gif
他们出 XBMC is on pcDuino! 了 我现在级数不够分享不了图片

我来发图片吧

cndongj 发表于 2013-3-7 13:32:00

XBMC is on pcDuino!
Posted on March 6, 2013 by admin — No Comments ↓
We successfully ported XMBC to pcDuino!

The following are some pictures showing XMBC on pcDuino:
http://www.pcduino.com/wp-content/uploads/2013/03/xmbc_on_pcDuino_1.jpg

It has weather channel page.
http://www.pcduino.com/wp-content/uploads/2013/03/xmbc_on_pcDuino_2.jpg

We can install software add-on on XBMC.
http://www.pcduino.com/wp-content/uploads/2013/03/xmbc_on_pcDuino_3.jpg

XMBC even has Air Play. You can play sound and video from Apple devices.
http://www.pcduino.com/wp-content/uploads/2013/03/xmbc_on_pcDuino_4.jpg

微微的薄雾 发表于 2013-3-7 13:48:19

cndongj 发表于 2013-3-7 13:32 static/image/common/back.gif
XBMC is on pcDuino!
Posted on March 6, 2013 by admin — No Comments ↓
We successfully ported XMBC t ...

O(∩_∩)O哈哈~ 真是高兴, 真想和你聊聊,但是不知道怎么联系你。

微微的薄雾 发表于 2013-3-7 13:57:46

cndongj 发表于 2013-3-7 13:25 static/image/common/back.gif
我来发图片吧

我没权限发消息给你,你给我的消息我也没法回,{:cry:}

微微的薄雾 发表于 2013-3-26 10:16:28

pcDuino 出新的应用例子了,权限有限,发布不了更多信息,
支持Arduino shield的例子有
1:Motor Shield on pcDuino
2:SIM900 GSM/GPRS Shield on pcDuino with Arduino Style Code
大家可以加我QQ交流:137484092

werty12 发表于 2013-3-27 00:35:41

微微的薄雾 发表于 2013-3-26 10:16 static/image/common/back.gif
pcDuino 出新的应用例子了,权限有限,发布不了更多信息,
支持Arduino shield的例子有
1:Motor Shield on ...

很好的板子
鉴定完毕
论坛上有一更火的帖子哦
那帖子还有购买的地址,挺好的~{:3_46:}
http://www.amobbs.com/forum.php?mod=viewthread&tid=5522070&highlight=pcduino

zhongyiming 发表于 2013-4-7 22:54:07

做图像处理的不知道如何性能如何。

alitasoft 发表于 2013-4-26 16:41:55

zhongyiming 发表于 2013-4-7 22:54 static/image/common/back.gif
做图像处理的不知道如何性能如何。

作图像处理感觉比STM32强就是了....不过有些疑问,这板子支持免驱的USB摄像头不
前段时间二手区有人推荐HP高清摄像头,顺着上TB搜索了一下,有个咚咚比较有意思

笔记本内置3D摄像头

不知道pcDuino是否能支持,有实际驱动过类似摄像头的兄弟上来说下阿{:handshake:}

millwood0 发表于 2013-4-26 19:17:06

Lots of commercials in this thread, :)

zhongyiming 发表于 2013-5-5 00:09:36

alitasoft 发表于 2013-4-26 16:41 static/image/common/back.gif
作图像处理感觉比STM32强就是了....不过有些疑问,这板子支持免驱的USB摄像头不
前段时间二手区有人推荐H ...

3d摄像头上增加一个led激光不是可以做手势识别?
链接??

alitasoft 发表于 2013-5-5 02:06:19

zhongyiming 发表于 2013-5-5 00:09 static/image/common/back.gif
3d摄像头上增加一个led激光不是可以做手势识别?
链接??

按照自己的理解,如果支持3D那就没必要再增加激光也可以做手势识别,实际做的话要看能分辨多大的动作幅度了
以前用openCV+30万摄像头,能达到5~10mm的识别程度不过是在PC上做的
这个pcduino还没看过类似的例子

wcm_e 发表于 2013-5-5 07:28:44

有用过的么,介绍下吖

jsntzxh 发表于 2013-5-5 07:44:17

感觉不错

zhongyiming 发表于 2013-5-5 15:03:12

alitasoft 发表于 2013-5-5 02:06 static/image/common/back.gif
按照自己的理解,如果支持3D那就没必要再增加激光也可以做手势识别,实际做的话要看能分辨多大的动作幅度 ...

加激光的目的,可以把cmos摄像头变成所谓的热成像,并且可以通过激光输出主动设别信号,提高手势设别精度。

AdmTimer 发表于 2013-5-5 21:14:45

树莓派主要是各种社区论坛比较强大,可以找到很多应用。这东西虽然硬件更强大,但是玩的人少很多。

junozizi 发表于 2013-5-6 12:49:40

AdmTimer 发表于 2013-5-5 21:14 static/image/common/back.gif
树莓派主要是各种社区论坛比较强大,可以找到很多应用。这东西虽然硬件更强大,但是玩的人少很多。 ...

树莓派出了一年多
pcduino出来2个月不到
能这么比么。。。
现在玩pcduino的人也不少了。。。
页: [1]
查看完整版本: 刚发现一个似乎比树莓派还好玩的东西pcduino,支持arduino语言