It's a complete ecosystem of wireless modules, gateways, adapters, and software, all engineered to accelerate wireless development for global deployments.One socket allows you to connect to IoT networks around the globe. With the authentic Digi XBee footprint, you can future-proof your design and...
XCTU updates You may be notified about XCTU software updates once XCTU has loaded. You should always update XCTU to the latest available version. See Install XCTU updates . Optional: Manually install USB drivers When you connect the XBee board to your computer for the first time, USB ...
With an XBee Explorer connected between your computer and your XBee, and with the help of the X-CTU software, you can easily configure XBees, test connections, and pass data between your computer and remote XBees. We're going to show you how to do all of that in this tutorial! Materia...
WATCH VIDEO Digi XBee® Surpasses 15 Million Shipments, Adds IoT Development, Manufacturing, Deployment and Management Tools Digi International’s Flagship Embedded Connectivity Product Line Provides the Hardware and Software to Create a Complete... READ PRESS RELEASE Digi XCTU Throughput Tool The Digi...
内容提示: Technical Support: Online support: http://www.digi.com/support/eservice/login.jsp Phone: (801) 765-9885 90001003_A 2008.08.20 X-CTU Configuration & Test Utility Software User’s Guide Contents Introduction PC Settings Tab COM port setup: Host Setup: User COM ports: Range Test ...
SoftwareSerial XBee(2, 3); void setup() { XBee.begin(9600); Serial.begin(9600); } void loop() { if (Serial.available()) { XBee.write(Serial.read()); } if (XBee.available()) { Serial.write(XBee.read()); } } 你应该看到什么 ...