이더넷 W5100 네트워크 확장 보드 SD 카드 확장 지원 MEGA스토어 가기

이더넷 W5100 네트워크 확장 보드 SD 카드 확장 지원 MEGA

₩ 2,948 ¥ 15.0

색상:

  • W5100

크기:

수량:
- +
재고:

최소 주문 수량: 1

알리타플은 고객님께서 주문한 물건을 그대로 구매대행 해드립니다.
궁금한 사항이 있으시면 언제든 고객센터로 연락주세요.

1688온라인 사이트에서 검색된 상품입니다. 알리타플에서는 상품검색/현지구매(구매대행)/국제배송 업무만 제공해드립니다. 해당 상품의 품질 및 상태에 대해서는 확인해 드릴 수 없고 해당 물건이 입고가 된 후에 검수과정을 거쳐야 확인이 가능합니다.

상세페이지

 

 



 

资料下载地址:

 

http://pan.baidu.com/s/1dDAD1pn

 

Ethernet W5100网络扩展模块,可以使rduino成为简单的Web服务器或者通过网络控制读写rduino的数字和模拟接口等网络应用。可直接使用IDE中的Ethernet库文件便可实现一个简单Web服务器。

 

同时该版本的支持mini SD卡(TF卡)读写

 

该扩展板采用了可堆叠的设计,可直接插到rduino上,同时我们的其他扩展板也可以插上去。

 

代码:

 

 

 

#include
/*
* Web Server
*
* A simple web server that shows the value of the analog input pins.
*/
#include
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };
byte ip[] = { 192, 168, 1, 15 };
EthernetServer server(80);
void setup()
{
Ethernet.begin(mac, ip);
server.begin();
}
void loop()
{
EthernetClient 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 tinyos electronics");
client.println("
");
client.print("//*************************************");
client.println("
");
client.print("");
client.println("
");
client.print("//*************************************");
client.println("
");
for (int i = 0; i < 6; i++) {
client.print("analog input ");
client.print(i);
client.print(" is ");
client.print(analogRead(i));
client.println("
");
}
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();
}
}
상호: 주식회사 와이지넷코리아 (YOUNG GROUP NET KOREA CO., LTD.)    대표: 주용규    사업자등록번호: 223-81-14426    통신판매업신고번호: 제 2015-서울강남-02499호
우편번호 : 07505    서울시 강서구 하늘길210 김포국제공항 구화물청사 4번GATE 361-4호   
TEL:(배송확인) 070-5001-0885    (업무상담) 070-4337-1714    업무제휴문의:ygnkorea@gmail.com

웨이하이센터상호: 威海韩运国际贸易有限公司 法定代表人: 朱 勇奎 统一社会信用代码: 91371000MA3U6XGW6N 进出口: 37109409C6
(264200) 山东省 / 威海市 / 环翠区 / 西苑街道 / 贝卡尔特路91-2号 / 威广物流园西门 / 韩运国际贸易 TAPL
TEL : +86) 0631- 598 -1400    FAX : +86) 0631- 598 -1144
TAPL Hanyun International Trade , West Gate of Weihai Logistics Park, Bekart Road-91, Xiyuan Street, Huancui District, Weihai City, Shandong Province,CHINA (ZIPCODE 264200)
Copyright© 2023-2024 alitapl.com All Rights Reserved