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

密碼:

忘記密碼
加入會員
  首頁 | 原廠 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 | 擴大器 | 雕刻機 | 電池 | 電腦周邊 | 檢定考套件 | 停售商品
  首頁 » 商品目錄 » 通訊模組 » RF無線通訊模塊 » ESP8266系列 » 01423993
商品搜尋 進階
 |  購物車內容  |  結帳   
商品分類
  0.9G系列
  1.2G系列
  2.4G系列
  CAN
  CC11XX系列
  FM調頻類別
  GPS/GSM/GPRS/3G模組
  K210
  MP3 MP5解碼板
  NeuroSky 腦波
  RAK系列
  RFID模組
  RF無線通訊模塊
    ESP8266系列
  Wisxx系列 (wisAP/WisCore/WisNode/C
  XBEE藍芽模塊
  乙太/TCP/WiFi模組
  圖傳
  天線
  手機信號放大器
  搶答器
  無線通信模組
  無線遙控
  視頻模組
  通訊端口轉接模組(I2C,ISP,SPI,GPIO,RS232,
Arduino
Pololu
Seeed
Sparkfun
robot-electronics
dimensionengineering
libelium
adafruit
udoo
redbearlab
Arducam
goembed
Saleae
okdo
服務台
公司簡介
退換貨服務
訂購方式
聯絡我們
匯款確認
[<< 前一頁]  瀏覽相同分類產品 10 / 34  [下一頁 >>]
▼●ESPDuino開發板帶WiFi的Arduino UNO R3開發板ESP8266(ESP-13)
NT$700
運費NT$50
條碼01423993
產品說明2

    ESPduino是Doit基於ESP8266 ESP-13開發的兼容Arduino UNO開發板。首款帶WiFi的Arduino開發板,完美兼容Arduino UNO R3。

簡介

ESPduino是Doit基於esp826613開發的兼容arduino uno開發板。利用ESP8266本身自帶WiFi的特性,ESPDuino天生支持WiFi,相對於傳統的Arduino開發,省去了買WiFi擴展板的費用。

溫馨提示

ESPduino開發板進入燒寫模式的方法:

A) 在將USB插入ESPduino開發板上電瞬間,按住ESPduino開發板上的Flash約6s鐘,即可使ESPduino開發板進入燒寫模式;

B) 用USB連接電腦和ESPduino開發板正常的情況下,先按住Flash鍵不放手,然後再按住RST鍵,也可讓ESPduino進入燒寫模式。推薦使用

 

更多信息,請訪問doit公司官網

http://bbs.doit.am/forum.php?mod=forumdisplay&fid=69

 

發貨清單

ESPduino:1塊

安裝

有2種方法:

第一種方法:

1)這種方法最簡單,直接在下面鏈接下載 Arduino即可使用。

http://espduino.doit.am/

2)確認端口

請先按照CH340驅動(已經安裝好的可以忽略):

http://bbs.doit.am/forum.php?mod=viewthread&tid=236&page=1&extra=#pid275

 

3)打開IDE

4)運行示例,證明IDE搭建成功

第二種方法

1.下載Arduino: 
http://www.arduino.cc/en/main/software 
2.安裝運行Arduino 
a)打開“文件”-》首選項

3.輸入  http://espduino.doit.am/package_esp8266com_index.json

4.工具-》開發板-》搜索8266

最後, install

帶ESP8266的完整版安裝(即不需要上述操作)

Arduino1.65+2.0整包下載
鏈接:http://pan.baidu.com/s/1kTgyNzh  密碼:xamt

《連接WiFi獲取服務器時間》實例

 

 

更多案例請訪問

http://bbs.doit.am/forum.php?mod=forumdisplay&fid=69

 

  • #include <ESP8266WiFi.h>
  • #include <time.h>
  •  
  • const char* ssid = "Doit";
  • const char* password = "doit3305";
  •  
  • int timezone = 3;
  • int dst = 0;
  •  
  • void setup() {
  •   Serial.begin(115200);
  •   Serial.setDebugOutput(true);
  •  
  •   WiFi.mode(WIFI_STA);
  •   WiFi.begin(ssid, password);
  •   Serial.println("nConnecting to WiFi");
  •   while (WiFi.status() != WL_CONNECTED) {
  •     Serial.print(".");
  •     delay(1000);
  •   }
  •  
  •   configTime(3 * 3600, 0, "pool.ntp.org", "time.nist.gov");
  •   Serial.println("nWaiting for time");
  •   while (!time(nullptr)) {
  •     Serial.print(".");
  •     delay(1000);
  •   }
  •   Serial.println("");
  • }
  •  
  • void loop() {
  •   time_t now = time(nullptr);
  •   Serial.println(ctime(&now));
  •   delay(1000);
  • }

問與答

目前沒有任何商品問答!
本商品上架日期:2011-12-03.
評價
建議購買的商品清單!可以參考看看喔
●9V 電池扣 + 轉接頭 DC公頭 (焊接好)
●9V 電池扣 + 轉接頭 DC公頭 (焊接好)
AD7606 高精度16位ADC / 200Ksps 8Ch / 平行 SPI通訊
AD7606 高精度16位ADC / 200Ksps 8Ch / 平行 SPI通訊
4G DTU透傳模塊兼容GPRS/3G無線通訊三網全網通 USR-LTE-7S4
4G DTU透傳模塊兼容GPRS/3G無線通訊三網全網通 USR-LTE-7S4
購物車 更多
空的...
查詢訂單狀態
 
請輸入您的訂單編號
商品通知狀態 更多
通知▼●ESPDuino開發板帶WiFi的Arduino UNO R3開發板ESP8266(ESP-13)
更新時通知我
推薦給朋友
 
推薦這個商品給朋友

聯絡方式:手機:0933807110 或 0968222607
E-mail:[email protected](主要信箱) & [email protected](次要) & [email protected] & [email protected] & [email protected]