0
登录后你可以
  • 下载海量资料
  • 学习在线课程
  • 观看技术视频
  • 写文章/发帖/加入社区
会员中心
创作中心
发布
  • 发文章

  • 发资料

  • 发帖

  • 提问

  • 发视频

创作活动
DFR0162

DFR0162

  • 厂商:

    DFROBOT

  • 封装:

  • 描述:

    ATMega328 XBoard AVR® AVR MCU 8-位 评估板 - 嵌入式

  • 数据手册
  • 价格&库存
DFR0162 数据手册
    X‐Board V2 (SKU:DFR0162) X-Board V2, DFR0162 Contents     1 Introduction 2 Specifications 3 Pinouts 4 Tutorial 4.1 Requirements 4.2 Wiring Diagram 4.3 Sample code Introduction This is Version 2.0 of the X-board. The main improvement is that it now operates at 5V, making it compatible with most sensors and I2C protocol with out the need of a voltage level converter. The XBoard is a unique Arduino board which features a WIZnet ethernet port, an XBee socket, and an ATMega328. This board will add wireless XBee control as well as internet connectivity to your projects. Its great for anything from home automation to robot control. The possibilities are endless! It has 8 Analog I/O pins and 8 digital pins, 4 of which have PWM (indicated by an asterisk). It is compatible with all XBee modules, and also comes with an integrated socket for APC220 RF Module or DF-Bluetooth Module. The XBoard can be programmed via an FTDI programmer or via the ICSP header. Power is provided through a Mini USB connector. You can setup a web server through which you may communicate with a remote Arduino using XBee radios, bluetooth or APC modules. This information can be posted to a web site, or to Twitter. We have used our XBoard to control our office door from the internet. All we need to do if we forget our RFID badge is to login to our office WiFi and send the command to open the door! We have created a project guide which includes the list of parts, and source code to get this project going for yourself. The board requires FTDI basic board to upload sketches. It can be powered by a mini USB. Specifications Basic MCU: Atmega328P low voltage version (16Mhz) Ethernet: WIZ5100 Arduino Uno Bootloader Supply voltage: 5~12v Output voltage: 5v/3.3v Digital IO: 8 Analog IO: 8 Envionment Friendly: ROHS Compliance Pinouts Xboard v2 pinout Led PWR: indicates that the board and shield are powered LINK: indicates the presence of a network link and flashes when the shield transmits or receives data FULLD: indicates that the network connection is full duplex 100M: indicates the presence of a 100 Mb/s network connection (as opposed to 10 Mb/s) RX: flashes when the shield receives data TX: flashes when the shield sends data COLL: flashes when network collisions are detected Tutorial Requirements   Hardware X-Board V2 x1 FTDI Basic Breakout x1 Ethernet cable x1 USB x1 Software Arduino IDE V1.6.8 Click to Download Arduino IDE from Arduino® Wiring Diagram This connection diagram shows how to connect the FTDI programmer to the X-board for uploading an Arduino sketch. NOTE: Please select "arduino UNO" from the boards list in the Arduino IDE. X-Board Connection Diagram: How to connect FTDI programmer Sample code #include #include #include #include #include /* * Web Server * * A simple web server: Displays a button to open/close * a door and door status */ //-----------------------BEGIN Variable setup ------------------------------ String readString = String(30); //string for fetching data from address boolean LEDON = false; //LED status flag int state; int val=0; byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; byte ip[] = { 192, 168, 0, 177 }; //Change your IP Address here Server server(80); //Standard HTTP server port //-----------------------END Variable setup------------------------------- void setup() { pinMode(4, OUTPUT); Ethernet.begin(mac, ip); server.begin(); delay(100); Serial.begin(57600); delay(100); } //XBee module Baud rate void loop() { //---------------Web Server initialization-----------------------------Client client = server.available(); if (client) { boolean current_line_is_blank = true; while (client.connected()) { if (client.available()) { char c = client.read(); if (readString.length() < 100) { readString += c; } ///////////Check button status to determine actions to take for submit button /////////////// if(readString.indexOf("IO=1") >0){ // If door open request sent; // send instruction to remote arduino if (LEDON== false){ //Ensure it only send the info once //led has to be turned ON LEDON = true; //Change LED state to print on the page Serial.print('G'); //Send command to remote Arduino } } if(readString.indexOf("IO=0") >0){//Same as above but not used in //this application if (LEDON== true){ //led has to be turned OFF LEDON = false; Serial.print('K'); } } ///////////////Finish checking and actions for submit button///////////////// / //------------------Standard web Server Jargon------------------------------if (c == 'n' && current_line_is_blank) { // send a standard http response header client.println("HTTP/1.1 200 OK"); client.println("Content-Type: html"); client.println(); client.println(""); client.println(""); client.println("Xboard interface--Door control"); client.println(""); client.println(""); client.print("welcome to DFRobot"); //Print your own message here client.println(""); client.print("//*************************************"); client.println(""); client.println(""); client.print("//*************************************"); client.println(""); client.println(""); client.print(""); client.print(" Open"); client.print(" "); 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; } } } //------------------END Standard web Server Jargon------------------------------ //-----------------Print door status on web page and auto refresh--------------if (LEDON){ //printing LED status client.print("DOOR status: "); client.println("OPEN"); client.println(""); //Autorefresh //Auto-refresh the site after 2 seconds to reset thed oor status to closed } else{ client.print("DOOR status: "); client.println("CLOSED"); } client.println(""); client.println(""); client.println(""); //clearing string for next read readString=""; //-----------------END Print door status on web page and auto refresh--------------client.stop(); } /*Routine to read response from remote Arduino *and light local LED on PIN4 */ if (Serial.available() > 0) { val = Serial.read(); if (val == 'H') { //These values ('H')can be changed to what ever you wan t //just make sure you change them in both the server //program and the client program digitalWrite(4, HIGH); delay (20); } if (val == 'L') { digitalWrite(4, LOW); delay (20); } } } The main differences between all 3 versions of the X-Board shown in the flowing table: Version Difference Table         Powered By DFRobot © 2008-2017
DFR0162 价格&库存

很抱歉,暂时无法提供与“DFR0162”相匹配的价格&库存,您可以联系我们找货

免费人工找货