상품상세 정보

뒤로가기

링크노드 D1 -ESP8266 WiFi 아두이노 호환 개발보드 (LinkNode D1 -ESP8266 WiFi Arduino Compatible Board)

링크노드 D1 -ESP8266 WiFi 아두이노 호환 개발보드 (LinkNode D1 -ESP8266 WiFi Arduino Compatible Board)

상품 정보
판매가(VAT별도) 21250
할인판매가 21,250원 (21,250원 할인)
할인금액 총 할인금액 원
(모바일할인금액 원)
적립금

20원(0.10%)

무통장 결제시 적립금 %

카드 결제시 적립금 %

실시간 계좌이체시 적립금 %

적립금 결제시 적립금 %

휴대폰 결제시 적립금 %

예치금 결제시 적립금 %

에스크로 결제시 적립금 %

가상계좌 결제시 적립금 %

가상계좌 결제시 적립금 %

케이페이 결제시 적립금 %

페이나우 결제시 적립금 %

페이코 결제시 적립금 %

제휴적립금
배송방법 택배
배송비 3,500원 (100,000원 이상 구매 시 무료)
상품 추가설명 번역정보
배송
수량 up down  
상품 목록
상품 정보 가격 삭제
총상품금액(수량) 0
구매하기
구매하기

링크노드 D1 -ESP8266 WiFi 아두이노 호환 개발보드

(LinkNode D1

-ESP8266 WiFi Arduino Compatible Board)

IMG_0242

IMG_0242

개요

  • LinkNode D1은 아두이노 호환 WiFi 개발보드입니다.
  • ESP-8266EX WiFi 컨트롤러를 탑재하고 있는 제품으로 아두이노 IDE를 이용하여 프로그래밍이 가능합니다.
  • 또한 아두이노 호환 핀 레이아웃을 가지고 있어 아두이노용 쉴드의 사용이 가능합니다.

특징

  • Powered by ESP-8266EX
  • 11 Digital I/O pins
  • 1 Analog Input pin
  • 1 micro USB port for power/configure
  • Power jack for 9-24V power input
  • Compatible with Arduino programming
  • Compatible with NodeMCU
  • OTA -- Wireless Upload(Program)
  • Pin Mapping

    1-109.jpg

문서

  • Tutorials

    1. Get started in Arduino

    If you have used Arduino before, you will feel that the LinkNode D1 is as same as Arduino, and there is no difference between their programming. The only limitation of LinkNode D1 is that it only has 11 digital ports and 1 analog input port.

    a. Requirements

    b. Manually install hardware package(Option 1)

    • Install Arduino IDE
    • Manually download hardware package from github
    • Click the button Download ZIP to download
    • Go to installation directory of Arduino IDE, and create a esp8266com directory
    • Move the unzipped LinkNodeD1 file to ESP8266com

    c. Use git to install (Option 2)

    • You can use git command to download the hardware package like:
     cd <ArduinoIDE path>/hardware    mkdir esp8266com    cd esp8266com    git clone https://github.com/pcduino/LinkNodeD1  

    d. Download binary tools (you need Python 2.7)

     cd esp8266/tools    python get.py  

    e. Check the configuration of Board

    • Open Arduino IDE and go to Tools --> Board --> LinkNode D1
    • Choose your own configuration

    Upload Using

    • Serial – Use USB port on board to upload flash
    • OTA – Use OTA to upload flash

    CPU Frequency

    • 80MHz
    • 160MHz

    Flash Size

    • 4M (3M SPIFFS) – 3M File system size
    • 4M (1M SPIFFS) – 1M File system size

    Upload Speed

    • 921600 bps – recommend

    f. Create a Arduino Project

    • Connect LinkNode D1 to your PC
    • Check your serial port which your PC recognize

    1-107.png

    • Enter the following source code and click the Upload button
     void setup() {     // initialize digital pin GPIO2/D9 as an output.     pinMode(BUILTIN_LED, OUTPUT);   }   // the loop function runs over and over again forever   void loop() {     digitalWrite(BUILTIN_LED, HIGH);   // turn the LED on (HIGH is the voltage level)     delay(1000);              // wait for a second     digitalWrite(BUILTIN_LED, LOW);    // turn the LED off by making the voltage LOW     delay(1000);              // wait for a second   }  
    • After finish uploading, please check the BLUE LED on the ESP-8266EX chip, is it blinking?

    2. Hello World

    • Take the steps above and run the following code:
     void setup() {     Serial.begin(115200);   }   // the loop function runs over and over again forever   void loop() {     Serial.println("Hello world!");     delay(1000);              // wait for a second   }  
    • After finish uploading, and open the Serial Monitor in Arduino IDE
    • The serial will print Hello world! in every second.

    3. Use I/O expander shield with LinkNode D1

    1-110.png

    I/O Expander shield is a shield used to expand the number of I/Os of Arduino. It is based on the chipset MCP23017. The chipset MCP23017 communicates with Arduino Uno through I2C interface. It adds GPIOA and GPIOB, a total of 16 I/Os.

    • Mount the expander shield to LinkNode D1
    • Program the source code to the board
     #include <Wire.h>   const byte  mcp_address=0x20;      // I2C Address of MCP23017 Chip   const byte  GPIOA=0x12;            // Register Address of Port A   const byte  GPIOB=0x13;            // Register Address of Port B   const byte  IODIRA=0x00;            // IODIRA register   const byte  IODIRB=0x01;            // IODIRB register   void setup()   {     //Send settings to MCP device     Wire.begin();              // join i2c bus (address optional for master)     Wire.beginTransmission(mcp_address);     Wire.write((byte)IODIRA); // IODIRA register     Wire.write((byte)0x03); // set GPIOA-0/GPIOA-1 to inputs     Wire.endTransmission();   }   void loop()   {     Wire.beginTransmission(mcp_address);     Wire.write((byte)GPIOA); // set MCP23017 memory pointer to GPIOB address     Wire.endTransmission();     Wire.requestFrom(0x20, 1); // request one byte of data from MCP20317     int inputs=Wire.read(); // store the incoming byte into "inputs"     if((inputs&0x01)==0)     {       Wire.beginTransmission(mcp_address);       Wire.write(GPIOA);    // address bank A       Wire.write((byte)0x04);  // value to send GPIOA-2 HIGH       Wire.endTransmission();     }     if((inputs&0x02)==0)     {       Wire.beginTransmission(mcp_address);       Wire.write(GPIOA);    // address bank A       Wire.write((byte)0x08);  // value to send GPIOA-3 HIGH       Wire.endTransmission();     }     else     {       Wire.beginTransmission(mcp_address);       Wire.write(GPIOA);     // address bank A       Wire.write((byte)0x00);  // value to send GPIOA LOW       Wire.endTransmission();     }   }  
    • Set all 4-bit DIP jumpers to ON
    • Press the button S1 and S2 respectively.
    • Press S1, L1 (RED) will turn on.
    • Press S2, L2 (GREEN) will turn on.

    4. WiFi Manager

    The ESP8266 WiFi Connection manager with web captive portal, this Arduino library can make configure AP's SSID and password via web page when you want LinkNode D1 to connect to AP.

    • Open Arduino IDE and go to Sketch --> Include Library --> Manage Libraries
    • Search the wifimanager and install it

    1-111.png

    • Program the following source code:
    #include <ESP8266WiFi.h>          //https://github.com/esp8266/Arduino     //needed for library  #include <DNSServer.h>  #include <ESP8266WebServer.h>  #include <WiFiManager.h>         //https://github.com/tzapu/WiFiManager        void setup() {      // put your setup code here, to run once:      Serial.begin(115200);         //WiFiManager      //Local intialization. Once its business is done, there is no need to keep it around      WiFiManager wifiManager;      //reset saved settings      //wifiManager.resetSettings();         //set custom ip for portal      wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));         //fetches ssid and pass from eeprom and tries to connect      //if it does not connect it starts an access point with the specified name      //here  "AutoConnectAP"      //and goes into a blocking loop awaiting configuration      wifiManager.autoConnect("LinkNodeAP");      //or use this for auto generated name ESP + ChipID      //wifiManager.autoConnect();         //if you get here you have connected to the WiFi      Serial.println("connected... :)");  }     void loop() {      // put your main code here, to run repeatedly:  }
    • After upload the program, the LinkNode D1 will create a AP called LinkNodeAP
    • Use your mobile phone to connect this AP
    • Open a browser and enter the ip address 10.0.1.1 and you will see the following website:

    1-112.jpg

    • Click the button configure WiFi
    • Select your WiFi AP which you want to connect and enter your wifi password.
    • If connecting failed, you can go to the same website to configure it again.
    • Also, you can use Serial Monitor in Arduino IDE to check the status.

    5. Connect to LinkSprite IO

    LinkSprite IO is an IoT platform which supports RESTful API and WebSocket. These make the mobile APP, website application or device connect it very easily. The following I will introduce is about how to use LinkNode D1 to communicate with LinkSprite IO platform.

    a. Create a new account and device on LinkSprite.io

    • Go to www.linksprite.io and sign up
    • Enter your Email and password to create a new account
    • Go to My Account to get your own API Key. The API Key is fatal because only add the Key in your codes, can the data sync to your IoTgo account.

    1-113.png

    • Click My Device, and choose Create DIY Device.

    1-114.png

    • Click the created device icon and get the DeviceID.

    1-115.png

    b. Update the source code using your own apikey and device ID

    Device API which the LinkSprite IO support is JSON-based, which means all request and response data is enclosed in JSON format. Currently it supports 3 kind of request.

    • Update: Update device status to LinkSprite IO
    • Query: Get device status from LinkSprite IO

    This demo will send http POST request to query the param--light on linksprite.io, if the light is on, then turn the LED, if off, then turn off the LED.

     #include <ESP8266WiFi.h>   #include <WString.h>   //the library are needed for autoconfig WiFi   #include <DNSServer.h>   #include <ESP8266WebServer.h>   #include <WiFiManager.h>          // replace with your own API key and device ID,   String apikey = "xxxxxxxxxxxxxxxxxxxxxxxxxxxx";   const char* deviceID="xxxxxxxxxxxxx";   const char* server = "www.linksprite.io";   WiFiClient client;   void setup() {                     Serial.begin(115200);     pinMode(BUILTIN_LED, OUTPUT);     WiFiManager wifiManager;     wifiManager.setAPStaticIPConfig(IPAddress(10,0,1,1), IPAddress(10,0,1,1), IPAddress(255,255,255,0));     wifiManager.autoConnect("LinkNodeAP");     Serial.print("WiFi Connected ...\n");     Serial.println("WiFi connected");   }   void loop() {     if (client.connect(server,80)) {       String  postStr ="{";           postStr +=""action":"query",";           postStr +=""apikey":"";           postStr += apikey;           postStr +="",";           postStr +=""deviceid":"";           postStr += deviceID;           postStr +="",";           postStr += ""params":";           postStr += "[";           postStr += ""light"";           postStr +="]";           postStr +="}";      client.print("POST /api/http HTTP/1.1\n");      client.print("Host: ");      client.print(server);      client.print("\nContent-Type: application/json\n");      client.print("Content-Length: ");      client.print(postStr.length());      client.print("\n\n");      client.print(postStr);        }   delay(1000);   Serial.println("Store response...");   String request = "";   while (client.available()) {     char c = client.read();     request +=c;   }   if (request!= NULL)   {     int index1 = request.indexOf(":{");     int index2 = request.indexOf("},");     String param = request.substring(index1, index2 + 1);     Serial.print("The param is ");     Serial.println(param);     if(param.indexOf("off")>0){         digitalWrite(BUILTIN_LED, HIGH);             Serial.println("OFF");     } else if(param.indexOf("on")>0){         digitalWrite(BUILTIN_LED, LOW);             Serial.println("ON");     }   client.stop();   Serial.println("Waiting...");       delay(2000);     }  }  


    ``` #### c. Test

    • Program the source code and open the Serial monitor to check the status

    1-116.png

    • Open your light device which is create on linksprite.io
    • Click the button ON and OFF
    • Check the status of LED on LinkNode D1, is it following your control?

    Type a description for this product here...

연관제품

상품 상세 정보
상품명 링크노드 D1 -ESP8266 WiFi 아두이노 호환 개발보드 (LinkNode D1 -ESP8266 WiFi Arduino Compatible Board)
판매가(VAT별도) 21,250원
상품코드 P0000NQI
수량 수량증가수량감소
상품요약정보 LinkNode D1은 아두이노 호환 WiFi 개발보드입니다.

결제 안내

결제는 신용카드, 실시간 계좌이체, 무통장 입금 등을 선택하여 진행하실 수 있습니다. 세금계산서 발행을 요청하실 경우에는 결제방법을 무통장 입금으로 선택하시고 사업자등록증 사본을 cs@vctec.co.kr으로 보내주셔야 합니다.

배송 안내

  • 배송 방법 : 택배
  • 배송 지역 : 전국지역
  • 배송 비용 : 3,500원
  • 배송 기간 : 1일 ~ 10일
  • 배송 안내 : - 산간벽지나 도서지방은 별도의 추가금액을 지불하실 수 있습니다.
    - 상품종류에 따라서 상품의 배송이 다소 지연될 수 있습니다.
    - 구매 총액이 10만원 미만의 주문 경우는 택배발송시에는 배송비 3,500원이 추가됩니다.
    - 구매 총액 10만원 미만 주문의 퀵발송 및 급행처리 요청시 핸들링 비용 3,500원이 추가 됩니다.
    - 매장이 아니므로 방문구매 및 수령이 불가능 합니다.
    - 영업일 기준 2일 이내 미출고 물품은 해외 수입 제품입니다.
    - 높은 전압과 전류를 사용하는 제품은 사용 전 안전에 유의 바랍니다.
    - 제품을 교육수준으로 설명하거나 사용자 프로젝트에 대한 컨설팅이나 기술지원을 하지 않사오니 참고부탁 드립니다.

교환/반품 안내

교환 및 반품안내
- 상품을 공급 받으신 날로부터 7일이내에 교환 및 반품이 가능하며,
- 미개봉/미설치 제품인 경우이거나 불량제품인 경우에 한해 가능합니다.

- 교환/반품시 승인 없이 제품을 먼저 발송시 왕복 택배비가 발생합니다.
- 상품가치가 훼손되어 재판매가 불가능 할 경우는 교환/반품이  불가능합니다.
- 소프트웨어는 개봉시 교환/반품이 불가능합니다.

- 주문수입제품의 경우는 환불/교환이 불가능합니다.

- 수입제품의 경우는 수리가 불가능합니다.
- 배송지연안내를 받으신 경우는 주문 수입되는 경우이며, 주문 수입 제품의 경우 환불/교환이 불가능합니다.

- 고객변심에 의한 교환 및 반품 시 왕복 배송비는 고객님께서 부담하셔야 합니다.
- 제품구성품 및 스펙은 제조사 사정에 의해 예고없이 변경 될수도 있습니다.

환불 안내

환불시 반품 확인여부를 확인한 후 7영업일 이내에 결제 금액을 환불해 드립니다.
신용카드로 결제하신 경우는 신용카드 승인을 취소하여 결제 대금이 청구되지 않게 합니다.
(단, 신용카드 결제일자에 맞추어 대금이 청구 될수 있으면 이경우 익월 신용카드 대금청구시 카드사에서 환급처리됩니다.)

서비스문의 안내

상품사용후기

상품후기쓰기 모두보기

게시물이 없습니다

상품 Q&A

상품문의하기 모두보기

게시물이 없습니다

판매자 정보