For Arduino Xbee Module Sd Card Socket Wireless Sd Shield Icsj010a

US $8.32

  • LongGang District, Shenzhen City, China
  • Jan 29th
STORE HOME ABOUT US SHIPPING PAYMENT RETURNS FEEDBACK Store Categroy Store home Robots Modules Development boards Breadboards DIY PCB Universal Boards Cables & Connectors Diodes ICs & Processors Controllable Color LEDs Capacitors Transistors Crystal Oscillators Resistors & Potentiometers Batteries & related items Buzzers & Loudspeakers Raspberry Pi Sensors Tools Relays Switches Inductors Voltage regulators Fuses Digital tubes Combination Items Electronic Component Industrial Automation Helpful Links Store Newsletter Add my Store to your Favorites and receive my email newsletters about new items and special promotions! General Interest Hot Products 1/8" Inch Plastic Electric Air Gas Water Solenoid Valve Normally Closed 12V DC $11.84 25W High Power LED Light Lamp SMD Chip 2300LM White 32-34V $3.15 Mega 2560 ATmega2560-16AU Board (Arduino-compatible) + Free USB Cable Funduino $16.25 4010S 40mm x40mm x10mm Brushless DC Cooling Fan $1.80 Prototype Board Electronic Deck 400 + 65pcs Breadboard Jumper Cable $4.35 20 sets NEW 3 pin connector kit Connector Lead Header 2.54mm XH-3P Kit $1.72 16mm Start Horn Button Momentary Stainless Steel Metal Push Button Switch(Blue) $4.10        ICSJ010A Wireless SD Shield for Arduino Xbee Module SD Card Socket Similar Products for Recommendation !!! 1pcs NEW PCK-4 Red 1\" 4-Bit Clock DIY Module DIY Kit 1-inch Digital Tube NE555 Duty Cycle and Frequency Adjustable Module DIY Kit Pulse Generator LM317 Step Down DC 5V-35V to 1.25V-30V Kit DIY AC/DC Power Supply Module High Speed Digital MG995 Metal Gear 2BB Torque RC Servo for Savage XL FUTABA HPI DIY Kit Mobile Phone Signal Flash Light Radiation Power NEW NEW TDA7297 Version B 2*15W 2x15W Audio Amplifier Board Dual-Channel AC/DC 12V 1pcs NEW LM317 Adjustable Regulated Power Supply Suite DIY Kits 1 Set 3D LightSquared DIY Kit 8x8x8 3mm LED Cube White LED Blue Ray Overview The Wireless SD shield allows an Arduino board to communicate wirelessly using a wireless module. It is based on the Xbee modules from Digi, but can use any module with the same footprint. The module can communicate up to 100 feet indoors or 300 feet outdoors (with line-of-sight). It can be used as a serial/usb replacement or you can put it into a command mode and configure it for a variety of broadcast and mesh networking options. The shields breaks out each of the Xbee's pins to a through-hole solder pad. Included on board is a SD card slot. When using the SD Library to access the card, Pin 4 is CS and cannot be used otherwise. SPI also relies on pins 11, 12, and 13 for communication. An on-board switch allows the wireless module to communicate with the USB-to-serial converter or with the microntroller. Schematic EAGLE files: arduino_WirelessShield_SD_v3-reference-design.zip Schematic: arduino_WirelessShield_SD_v3-schematic.pdf           Switch Settings The Wireless SD shield has an on-board switch labelled Serial Select. It determines how the Xbee's serial communication connects to the serial communication between the microcontroller (ATmega8 or ATmega168) and USB-to-serial chip on the Arduino board. When in the Micro position, the DOUT pin of the wireless module is connected to the RX pin of the microcontroller; and DIN is connected to TX. The wireless module will then communicate with the microcontroller. Note that the RX and TX pins of the microcontroller are still connected to the TX and RX pins (respectively) of the USB-to-serial converter. Data sent from the microcontroller will be transmitted to the computer via USB as well as being sent wirelessly by the wireless module. The microcontroller will not be programmable via USB in this mode. With the switch in the USB position, the DOUT pin the wireless module is connected to the RX pin of the USB-to-serial converter, and DIN on the wireless module is connected to the TX pin of the USB-to-serial converter. This means that the module can communicate directly with the computer. The microcontroller on the board will be bypassed. To use the shield in this mode, you must program the microcontroller with an empty sketch (shown below), or remove it from the board. Networking The Wireless SD shield can be used with different modules with the same footprint as the XBee modules. The instructions below are for the XBee 802.15.4 modules (sometimes called "Series 1" to distinguish them from the Series 2 modules, although "Series 1" doesn't appear in the official name or product description) and also for the XBee ZNet 2.5 or XBee ZB modules, both known as "Series 2" modules. All the modules, basically have the same type of configuration parameters, but differ by the function that they implement and the topologies of networks that they can create. Can communicate with each other only modules of the same family. Addressing There are multiple parameters that need to be configured correctly for two modules to talk to each other (although with the default settings, all modules should be able to talk to each other). They need to be on the same network, as set by the ID parameter (see "Configuration" below for more details on the parameters). The modules need to be on the same channel, as set by the CH parameter. Finally, a module's destination address (DH and DL parameters) determine which modules on its network and channel will receive the data it transmits. This can happen in a few ways:     If a module's DH is 0 and its DL is less than 0xFFFF (i.e. 16 bits), data transmitted by that module will be received by any module whose 16-bit address MY parameter equals DL.     If DH is 0 and DL equals 0xFFFF, the module's transmissions will be received by all modules.     If DH is non-zero or DL is greater than 0xFFFF, the transmission will only be received by the module whose serial number equals the transmitting module's destination address (i.e. whose SH equals the transmitting module's DH and whose SL equals its DL). Again, this address matching will only happen between modules on the same network and channel. If two modules are on different networks or channels, they can't communicate regardless of their addresses. For the "Series 2" modules you must chose which firmware put on the module to give it Coordinator, Router or End Device functionality. Series 2 use only serial low (SL) and serial high (SH) for addressing. Configuration Here are some of the more useful parameters for configuring your Xbee module. For step-by-step instructions on reading and writing them using AT commands, see the:     guide to the Wireless shield with the 802.15.4 modules.     guide to the Wireless shield with the ZNet 2.5 modules. Make sure to prepend AT to the parameter name when sending a command to the module (e.g. to read the ID parameter, you should send the command ATID). Command Description Valid Values Default Value ID The network ID of the XBee module. 0 - 0xFFFF 3332 CH The channel of the XBee module. 0x0B - 0x1A 0X0C SH and SL The serial number of the XBee module (SH gives the high 32 bits, SL the low 32 bits). Read-only. 0 - 0xFFFFFFFF (for both SH and SL) different for each module MY The 16-bit address of the module. 0 - 0xFFFF 0 DH and DL The destination address for wireless communication (DH is the high 32 bits, DL the low 32). 0 - 0xFFFFFFFF (for both DH and DL) 0 (for both DH and DL) BD The baud rate used for serial communication with the Arduino board or computer. 0 (1200 bps) 1 (2400 bps) 2 (4800 bps) 3 (9600 bps) 4 (19200 bps) 5 (38400 bps) 6 (57600 bps) 7 (115200 bps) 3 (9600 baud) Note: although the valid and default values in the table above are written with a prefix of "0x" (to indicate that they are hexadecimal numbers), the module will not include the "0x" when reporting the value of a parameter, and you should omit it when setting values. Here are a couple more useful commands for configuring the XBee module (you'll need to prepend AT to these too). Command Description         RE     Restore factory default settings (note that like parameter changes, this is not         permanent unless followed by the WR command).         WR     Write newly configured parameter values to non-volatile (long-term) storage. Otherwise,         they will only last until the module loses power.         CN     Exit command mode now. (If you don't send any commands to the module for a few seconds,         command mode will timeout and exit even without a CN command.)         For more details on configuring the XBee module, see the 802.15.4 modules product manual or the ZB modules product manual from Digi International.       Wholesale to save you more money! 2PCS 1/8"Plastic Electric Air Gas Water Solenoid Valve Normally Closed 12V DC 5pcs 5V 1-Channel Relay Module with Optocoupler H/L Level Triger for Arduino  5pcs NEW EM4305 125Khz Writable Rewrite RFID Tokens 10pcs HC-SR501 Infrared Pyroelectric Human Sensor Module 10pcs Ultrasonic Module HC-SR04 Distance Measuring Transducer Sensor For Arduino 5pcs TT Motor Intelligent Car Gear Motor Robot Gear Motor for Arduino 5pcs MAX7219 Dot Matrix Module Control Display Module Cascade DIY kit 2pcs NEW 5.5*2.1mm 9V Battery Holder Box Case Wire with Plug for Arduino HOT Category On sale   _Wholesale_ __Combination__ ___Sensors_ _ICs & Processors_   _Arduino_ Cables & Connectors_ LCD Modules_ Power Modules _Switches_ _ Electrical Connectors_ Valves__ __ Car Fuse__ Wireless Modules Wireless Bluetooth Relay Modules Breadboards _PCB Boards____ __LED____ ____DIYs___ ___ Resistors _ SHIPPING PAYMENT RETURNS FEEDBACK ABOUT US Address: Please make sure your Paypal address is updated and accurate. All of your order(s) will be delivered to it.   Ship to: We ship worldwide (except few countries). For USA buyer, we will send by ePacket delivery. For other customers, we will send your item by HongKong Airmail or Singapore Airmail without a tracking number.   Estimated Delivery Time (Depends on holidays and Flight) : A) United States Canada Australia United Kingdom New Zealand: 2-3 weeks B) Israel Thailand Malaysia Singapore Sri Lanka Indonesia India Maldives Greece Armenia Azerbaijan Republic Kazakhstan Saudi Arabia United Arab Emirates: 2-4 weeks C) Italy Spain Turkey South Africa Fiji Puerto Rico: 4-5 weeks. D) France Belarus Estonia Switzerland Germany Sweden Denmark Hungary Romania Croatia Bulgaria Latvia Cyprus Czech Mexico Austria Bosnia and Herzegovina Slovakia Lithuania Ukraine Egypt Poland Netherlands Malta Belgium Portugal Norway Finland Ireland : 2-4 weeks E) Russia Brazil Argentina Chile Mauritius All of the South American countries: 5-8 weeks F) Other countries: not more than 30 business days   Handling Time: 1-2 working days after payment is completed.   Tracking Number: 1. Order exceeds $50 will be shipped with a tracking number. 2. For order under $50, and you still need a tracking number, please contact us.   Parcel Lost: Less than 0.5 percent parcels may be lost in shipment. But don't worry, we'll take good care of it.   We Only Accept Paypal on Ebay. For specific requirements, please feel free to contact us. If you are facing with troubles below, please contact us as soon as you can Defective or Wrong: full refund or send you a new replacement Missing: new package arranged, or partial refund Dislike: full refund after we received your item (buyer undertakes return shipping fee) Consumers' satisfaction is our first priority and pursuit . We promise to solve your problem in a good way . We consider neutral and negative feedbacks as a SHAME. So please never give us a neutral or negative feedback before communicating with us . Our working time is 08:30-17:30 from Monday to Friday in Beijing Time. Because of the time difference, we may not reply your email immediately. All emails will be replied in 24 hours, please understand that. We devote to making the best service for you. We look forward to serving you. Any questions, please contact us via our ebay email. Your emails are warmly welcomed. Liquid Level Controller Sensor Module Water Level Detection Sensor Blue 100g PCB UV Curable Solder Mask Repairing Paint NEW 2000W SCR Motor Speed Controller Voltage Regulator Module DIY Kit 1pcs Solid State Relay SSR-40DA 40A /250V 3-32VDC NEW Electronic Production LCT-1 Liquid Level Controller DIY Kit Black Waterproof Security Door ID Wiegand 26 RFID Card Reader 125KHz EM4100 NEW 3W White COB High Power LED Stripe LED Light Emitting Diode 3.2" TFT LCD Shield Touch Panel Expansion Board for Arduino

Directions

Similar products from Development Boards & Programmers

People who viewed this item also vieved

By clicking "Accept All Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts.

Accept All Cookies