Home
 
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
  • ArduinoTW Images SHOW
如何在ubuntu使用arduino 列印 E-mail
站長Blog文章單元 - 入門教學
作者是 ken   
週六, 30 一月 2010 00:14

教學:honkiaa

在安裝Arduino軟體之前,有三個相依套件需要安裝:Sun Java Runtime、 gcc-avr 和 avr-libc。
在這裡,我們使用終端機和apt - get命令進行安裝。

安裝 Sun Java Runtime
::請從 GNOME選單裡選擇應用程序 | 附屬應用程式 | 終端機
::在提示符下輸入sudo apt-get install sun-java6-jre,然後按Enter

 

::出現提示的時候,輸入 sudo密碼,然後按Enter
::當系統出現你是否要繼續 [是/否]的提示時候,然後按下Enter鍵,Sun Java Runtime 會開始下載並且安裝::保持開啟終端機到下一步

目前有 0 篇回應... >>
最近更新在 週六, 30 一月 2010 00:32
閱讀全文...
 
Eagle PCB Libraries - Maxim MAX7219CWG+ FREE! 列印 E-mail
站長Blog文章單元 - 尚未歸類文章類
作者是 ken   
週四, 21 一月 2010 23:13

 

有需要的人就下載去用吧!

 

 

附件:
下載此檔案 (DECADE.lbr.zip)DECADE.lbr.zip[ ]1 Kb西元2010年01月21日 23:22

目前有 0 篇回應... >>
最近更新在 週四, 21 一月 2010 23:19
 
Phidgets Intro. 列印 E-mail
站長Blog文章單元 - 成果展示類
作者是 xlinx   
週一, 28 十二月 2009 19:18

What are Phidgets?

Phidgets are a set of "plug and play" building blocks for low cost USB sensing and control from your PC.

All the USB complexity is taken care of by our robust API. Applications can be developed quickly by programmers using their favorite language: C/C++, C#, Cocoa, Delphi, Flash AS3, Flex AS3, Java, LabVIEW, MATLAB, Max/MSP, MRS, Python, REALBasic, Visual Basic.NET, Visual Basic 6.0, Visual Basic for Applications, Visual Basic Script, and Visual C/C++/Borland.NET.

Click on Programming if you want to look at Getting Started Guides or Code Samples.

http://www.phidgets.com/index.php

http://www.microchip.com/wwwproducts/Devices.aspx?dDocName=en023500

MCU: mcp23s17 by


目前有 0 篇回應... >>
最近更新在 週一, 28 十二月 2009 19:23
 
Wishield and Ethernet Module working with Mega Board 列印 E-mail
站長Blog文章單元 - 成果展示類
作者是 xlinx   
週四, 17 十二月 2009 15:31

Mega Board working with WiShield Module

硬體要修改五條線:

MEGA pin 50 (MISO) to WiShield pin 12.
MEGA pin 51 (MOSI) to WiShield pin 11.
MEGA pin 52 (SCK) to WiShield pin 13.
MEGA pin 53 (SS) to WiShield pin 10.

MEGA pin 21 (SCL) to WiShield pin 2. (http://www.arduino.cc/en/Reference/AttachInterrupt)

---------------------------------------------------------------------------------------------------------------------------------------

Mega Board working with Ethernet Module. Ref link

硬體要修改四條線:

MEGA pin 50 (MISO) to Arduino Ethernet Shield pin 12.
MEGA pin 51 (MOSI) to Arduino Ethernet Shield pin 11.
MEGA pin 52 (SCK) to Arduino Ethernet Shield pin 13.
MEGA pin 53 (SS) to Arduino Ethernet Shield pin 10.

 

and we also need to Modify Software Lib file "WiServer.cpp" and "WiShield.cpp" abd "spi.h"  (in hardware\libraries\wishield or hardware\libraries\ethernetLib)

 

#define SPI0_SS_BIT      BIT0            
#define SPI0_SCLK_BIT    BIT1
#define SPI0_MOSI_BIT    BIT2
#define SPI0_MISO_BIT    BIT3

#define SPI0_Init()      PRR0 = 0x00;\
                         DDRB  |= SPI0_SS_BIT|SPI0_SCLK_BIT|SPI0_MOSI_BIT|LEDConn_BIT;\
                         DDRB  &= ~SPI0_MISO_BIT;\
                         PORTB = SPI0_SS_BIT;\
                         SPCR  = 0x50;\
                         SPSR  = 0x01

#define ZG2100_CS_BIT    BIT0

Reference from

http://asynclabs.com/forums/viewtopic.php?f=13&t=80

http://asynclabs.com/forums/viewtopic.php?f=13&t=19&hilit=mega&start=10

http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1235716581/285

http://mcukits.com/2009/04/06/arduino-ethernet-shield-mega-hack/

http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1235716581/420

附件:
下載此檔案 (Mega_WiShield.zip)Mega_WiShield.zip[ ]8 Kb西元2009年12月17日 15:44

目前有 0 篇回應... >>
最近更新在 週日, 20 十二月 2009 13:48
閱讀全文...
 
WiShield應用-利用Socket方式互相對連! 列印 E-mail
站長Blog文章單元 - 成果展示類
作者是 ken   
週五, 11 十二月 2009 02:40

 

使用方式:

1. 下載附件檔案之後解壓縮,請先將原先的WiShield資料夾砍掉,再將資料夾內的WiShield覆蓋原來的WiShield。

2. 打開SocketApp_Server.pde並且寫入server端,Client端也是找到資料夾內的SocketApp_Client.pde檔案並且寫入Arduino

3. 硬體必須是ATMEGA 328(因為大小都超過12K)

4. 先啟動SERVER端硬體,並等待Server建立完成(紅燈會亮起)

5. 當Client端連到時候自己本身的紅燈也會亮起來

附件:
下載此檔案 (ServerToClient.zip)ServerToClient.zip[程式碼]109 Kb西元2009年12月11日 03:02

目前有 0 篇回應... >>
最近更新在 週六, 12 十二月 2009 03:59
閱讀全文...
 
«最先前一個12345下一頁最後»

JPAGE_CURRENT_OF_TOTAL
 

 
五子棋