洋天科技洋天科技
公司簡介訂購方式匯款確認檔案下載 聯絡我們保固說明訂單查詢討論區
電子郵件:

密碼:

忘記密碼
加入會員
  首頁 | 原廠 Arduino® | 特殊服務設計 | 轉接座及轉接板/麵包板 | 開發板/燒錄器/模擬器 | 相容 For Arudino® 週邊及配件 | OKdo系列 | Saleae 系列 | Adafruit 系列 | ArduCam 系列 | Camera 攝像頭 | ROCK 系列 | Debix系列開發板 | Raspberry Pi 樹莓派 | Banana Pi 香蕉派 | BeagleBone 狗骨頭 | M5Stack系列 | Micro:bit (BBC)系列 | NVIDIA Jetson Nano系列 | Pololu 系列 | Pycom 系列 | Seeed 系列 | Sparkfun 系列 | WeMos 系列 | 傳感器 | Cubieboard/CubieTruck系列 | Firefly 系列 | Microduino系列 | Orange Pi 香橙派 | PCB板 | PLC 系列 | Robot 機器人 | UDOO 系列 | RedBearLab 系列 | LattePanda系列 | LittleBits 系列 | Libelium 系列 | Luxonis 相機系列 | PCduino | RobotElectronics 系列 | MageDok 顯示屏 | LCD/LCM/TFT/LVDC | Dimension Engineer 系列 | 通訊模組 | 影音器材(含轉換器) | 線材/連結器/轉換器 | 測量儀器 | 馬達/馬逹控制器/電源模組 | 其他 | 焊接/維修工具 | IC零件 | LED燈-裝飾燈 | 工作站迷你電腦 mini PC | 擴大器 | 雕刻機 | 電池 | 電腦周邊 | 檢定考套件 | 停售商品
  首頁 » 商品目錄 » 相容 For Arudino® 週邊及配件 » 2303
商品搜尋 進階
 |  購物車內容  |  結帳   
商品分類
  For Arduino® book 書
  For Arduino® LCD 屏
  For Arduino® RGB LED模組
  For Arduino® SD卡模組
  For Arduino® 傳感器模塊
  For Arduino® 套件/套餐
  For Arduino® 學習套件
  For Arduino® 按鍵 按鈕模塊 搖桿
  For Arduino® 控制板
  For Arduino® 擴展板
  For Arduino® 繼電器
  For Arduino® 車
  For Arduino® 電機 馬達 驅動
  Makeblock mBot 系列
  MiCOKit 銀爾達
  NodeMcu Lua系列
  WRTnode系列
  電源模塊
  For Arduino® 外殼/壓克力板/麵包板/杜邦線/配件
Arduino
Pololu
Seeed
Sparkfun
robot-electronics
dimensionengineering
libelium
adafruit
udoo
redbearlab
Arducam
goembed
Saleae
okdo
服務台
公司簡介
退換貨服務
訂購方式
聯絡我們
匯款確認
[<< 前一頁]  瀏覽相同分類產品 53 / 437  [下一頁 >>]
DFR原廠 Ethernet W5100擴展板(支持MEGA2560控制器(DFR125)For Arduino®
NT$1,000
運費NT$50
條碼2303
產品說明0

產品簡介

這款新版DFRduino Ethernet W5100擴展板能使你的Arduino控制器連接到因特網。它是一塊內置WizNet W5100 TCP/IP微處理器的擴展板。這塊板通過長針腳排母(wire-wrap header)連接arduino板。使用Arduino IDE中的Ethernet庫程序便可以輕鬆地使用這款擴展板連接到網絡中。這款擴展板支持同時4個socket的連接。

此款最新的版本新增micro-SD卡的插槽,用來大容量的網絡存儲。此外,它和Arduino Duemilanove/Uno,Mega系列也完全兼容。SD卡的庫不在標準庫裡包括,但是Bill Greiman寫的sdfatlib能夠很好的工作。可以參見Adafruit寫的教程。最新的修改包括重設控制器,用來保證the W5100 Ethernet模塊能在打開電源的時候重設。之前的修改不支持Mega並需要手動重設。最早的修改是不支持sd卡槽。

Arduino能夠通過SPI口和W5100和SD卡進行通信(用ICSP頭)。這個是在Duemilanove/Uno上的數字11,12,13口和Mega的50,51,52號口。這些端口不能用作一般的輸入輸出。在Mega上,硬件SS口,53,不能用於W5100和SD卡,但是它必須要被用於輸出口,否則SPI接口沒法工作。

這塊Ethernet板提供標準的RJ45以太網插座。擴展板上的Reset按鍵可以同時重啟W5100芯片以及Arduino控制器。

注意事項:因為W5100和SD卡公用SPI口,而只有一個能在同一時間激活。如果你同時想用兩個,這必須在相應的庫裡處理。如果你不用其中任一外設,你需要特別說明不選擇使用它們。想不用SD卡,把4號口設為輸出並且寫為高電平。想不用W5100,把10號設為高電平輸出。 
 

技術規格

  • 擴展板工作電壓:5v
  • 以太網插座
  • 支持Micro SD卡讀/寫
  • Ethernet和SD卡共用SPI接口,只能單獨啟用一個功能
  • 兼容Arduino標準尺寸控制器,同時支持Arduino Mega系列
  • 尺寸:70x55x30mm

配送清單

  • 新版DFRduino Ethernet W5100擴展板 兼容Arduino     1塊

相關文檔


相關例程

/*
 * Web Server
 *
 * A simple web server that shows the value of the analog input pins.
 */
#include <Ethernet.h>
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] =  { 192, 168, 0, 15 };
Server server(80);
void setup()
{
  Ethernet.begin(mac, ip);
  server.begin();
}
void loop()
{
  Client client = server.available();
  if (client) {
    // an http request ends with a blank line
    boolean current_line_is_blank = true;
    while (client.connected()) {
      if (client.available()) {
        char c = client.read();
        // if we've gotten to the end of the line (received a newline
        // character) and the line is blank, the http request has ended,
        // so we can send a reply
        if (c == 'n' && current_line_is_blank) {
          // send a standard http response header
          client.println("HTTP/1.1 200 OK");
          client.println("Content-Type: text/html");
          client.println();
         
          // output the value of each analog input pin
          client.print("welcome to DFRobot");
          client.println("<br />");
          client.print("//*************************************");
          client.println("<br />");
          client.print("");
          client.println("<br />");
          client.print("//*************************************");
          client.println("<br />");
          for (int i = 0; i < 6; i++) {
            client.print("analog input ");
            client.print(i);
            client.print(" is ");
            client.print(analogRead(i));
            client.println("<br />");
          }
          break;
        }
        if (c == 'n') {
          // we're starting a new line
          current_line_is_blank = true;
        } else if (c != 'r') {
          // we've gotten a character on the current line
          current_line_is_blank = false;
        }
      }
    }
    client.stop();
  }
}

 

 實驗結果,通過IE瀏覽器顯示6個模擬口的讀數,刷新網頁就更新一次數據。


範例圖↓↓↓

 

問與答

目前沒有任何商品問答!
本商品上架日期:2011-04-27.
評價
建議購買的商品清單!可以參考看看喔
●XBee Adapter USB適配器(XBee USB適配器,方便為XBee模塊連接到PC進行參數配置)DFR050
●XBee Adapter USB適配器(XBee USB適配器,方便為XBee模塊連接到PC進行參數配置)DFR050
9V 1A DC電源,9V1000mA 開關電源適配器(Arduino適用)
9V 1A DC電源,9V1000mA 開關電源適配器(Arduino適用)
大特價(台製) Uno R3 開發板 (DFR533) For Arduino®
大特價(台製) Uno R3 開發板 (DFR533) For Arduino®
7.5V1000mA開關電源適配器(Arduino適用)  FIT0028  7.5V1000mA開關電源適配器
7.5V1000mA開關電源適配器(Arduino適用) FIT0028 7.5V1000mA開關電源適配器
DFROBOT原廠 IIC轉GPIO 數字端口擴展板 V2.0 (DFR013)
DFROBOT原廠 IIC轉GPIO 數字端口擴展板 V2.0 (DFR013)
原廠 USB Host Shield 兼容 UNO 或 MEGA2560 通吃 (DFR138)  For Arduino®
原廠 USB Host Shield 兼容 UNO 或 MEGA2560 通吃 (DFR138) For Arduino®
購物車 更多
空的...
查詢訂單狀態
 
請輸入您的訂單編號
商品通知狀態 更多
通知DFR原廠 Ethernet W5100擴展板(支持MEGA2560控制器(DFR125)For Arduino®
更新時通知我
推薦給朋友
 
推薦這個商品給朋友

聯絡方式:手機:0933807110 或 0968222607
E-mail:i0104@ms13.hinet.net(主要信箱) & i03070309@yahoo.com.tw(次要) & a_te0307@hotmail.com & A9215017@mail.ntust.edu.tw & r94922042@ntu.edu.tw