Digi XBee S2C 802.15.4 RF zigbee module

Digi XBee S2C 802.15.4 RF Zigbee Module
1. Wireless Protocol: IEEE 802.15.4
2. Main Chipset: Silicon Labs EM357
3. Operating Frequency: 2.4 GHz ISM Band
4. Outdoor Line-of-Sight Range: Up to 1200m
5. Communication Interface: UART | SPI
6. Operating Voltage: 2.1V ~ 3.6V DC

Apple Shopping Event

Hurry and get discounts on all Apple devices up to 20%

1.700,00 EGP

14 People watching this product now!

Payment Methods:

Description

The Digi XBee S2C is a wireless RF transceiver module built around the Silicon Labs EM357 chipset, implementing the IEEE 802.15.4 protocol for point-to-point, point-to-multipoint, and peer-to-peer wireless networking topologies.

Operating in the 2.4GHz ISM band at a 250Kbps RF data rate, it reaches up to 60 meters indoors/urban and up to 1200 meters outdoors line-of-sight, with a transmit power of +3.1dBm and receiver sensitivity of -100dBm in boost mode. It runs on 2.1V–3.6V DC, drawing 33mA on transmit, 28mA on receive, and under 1µA in power-down mode.

Communication with a host is handled over UART or SPI, and the module exposes 15 GPIO lines plus 4 10-bit ADC inputs, letting it act as a remote I/O expander in addition to a wireless link. Antenna options include PCB antenna, U.FL connector, or wire antenna depending on the stock variant.

Features:

  1. IEEE 802.15.4 wireless protocol (Zigbee-class)
  2. Silicon Labs EM357 chipset
  3. 2.4GHz ISM band, 250Kbps data rate
  4. Up to 1200m outdoor line-of-sight range
  5. UART/SPI host interface
  6. 15 GPIO lines, 4 10-bit ADC inputs
  7. Ultra-low power-down current: <1µA
  8. Operating voltage: 2.1V–3.6V DC
🔌
Pin Connections
1 Table
Pin Connections Table 1
BoardSensor PinConnection
XBeeVCC/GND/DOUT/DIN3.3V / GND / board RX pin / board TX pin
📟
Digi XBee S2C 802.15.4 RF zigbee module
7 Examples • C/C++ | Boards: Arduino Uno, Arduino Nano, Arduino Mega, ESP32, ESP8266, STM32, Raspberry Pi Pico
Digi XBee S2C 802.15.4 RF zigbee module - Arduino Uno
Digi XBee S2C 802.15.4 RF zigbee module - Arduino Nano
Digi XBee S2C 802.15.4 RF zigbee module - Arduino Mega
Digi XBee S2C 802.15.4 RF zigbee module - ESP32
Digi XBee S2C 802.15.4 RF zigbee module - ESP8266
Digi XBee S2C 802.15.4 RF zigbee module - STM32
Digi XBee S2C 802.15.4 RF zigbee module - Raspberry Pi Pico
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_arduino_uno.inoArduino Uno
521 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Uno. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(9600);
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
16 if (Serial.available()) LINK_SERIAL.write(Serial.read());
17}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_arduino_nano.inoArduino Nano
522 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=2, TX=3 on Arduino Nano. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(2, 3);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(9600);
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
16 if (Serial.available()) LINK_SERIAL.write(Serial.read());
17}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_arduino_mega.inoArduino Mega
490 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=19, TX=18 on Arduino Mega. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(9600);
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
15 if (Serial.available()) LINK_SERIAL.write(Serial.read());
16}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_esp32.inoESP32
483 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=16, TX=17 on ESP32. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(9600);
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
15 if (Serial.available()) LINK_SERIAL.write(Serial.read());
16}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_esp8266.inoESP8266
521 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=D7, TX=D8 on ESP8266. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#include <SoftwareSerial.h>
7SoftwareSerial LINK_SERIAL(D7, D8);
8
9void setup() {
10 Serial.begin(115200);
11 LINK_SERIAL.begin(9600);
12}
13
14void loop() {
15 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
16 if (Serial.available()) LINK_SERIAL.write(Serial.read());
17}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_stm32.inoSTM32
486 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=PA10, TX=PA9 on STM32. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(9600);
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
15 if (Serial.available()) LINK_SERIAL.write(Serial.read());
16}
📄 File: digi_xbee_s2c_802.15.4_rf_zigbee_module_-_raspberry_pi_pico.inoRaspberry Pi Pico
493 characters
1//ekostra.com
2//electronics store in egypt
3//+201008896258
4
5// RX=1, TX=0 on Raspberry Pi Pico. Configure the XBee's own network settings first via XCTU on a PC (via a USB explorer board), then it acts as a transparent UART bridge to another paired XBee.
6#define LINK_SERIAL Serial1
7
8void setup() {
9 Serial.begin(115200);
10 LINK_SERIAL.begin(9600);
11}
12
13void loop() {
14 if (LINK_SERIAL.available()) Serial.write(LINK_SERIAL.read());
15 if (Serial.available()) LINK_SERIAL.write(Serial.read());
16}
Zigbee mesh-network UART module - configure via XCTU first, then acts as a transparent serial bridge.

نظرة عامة ومواصفات المنتج — بالعربية

Digi XBee S2C 802.15.4 RF zigbee module متوفر الآن في متجر إكوسترا للإلكترونيات، ضمن قسم IoT and Wireless، بسعر 1.700,00 EGP. كود المنتج لدينا: EK1342. المنتج غير متوفر حالياً — تواصل معنا عبر واتساب لمعرفة موعد توفره القادم.

أهم المواصفات الفنية:

  • الموديل: XBee S2C (802.15.4)
  • Main Chipset: Silicon Labs EM357
  • Wireless Protocol: IEEE 802.15.4
  • Operating Frequency: 2.4 GHz ISM Band
  • Rf Data Rate: 250 Kbps
  • Indoor/Urban Range: Up to 60 Meters
  • Outdoor Line Of Sight Range: Up to 1200 Meters
  • Transmit Power: +3.1 dBm (Boost Mode)

هذا المنتج مناسب لمشاريع الأردوينو (Arduino) و ESP32 و Raspberry Pi، ومشاريع الروبوتات وإنترنت الأشياء والتعليم الهندسي. جميع القطع مفحوصة قبل الشحن.

تصفّح المزيد من IoT and Wireless في إكوسترا.

Specification

Specification

WeightWeight10 g
Dimensions5 × 4 × 2 cm
ModelXBee S2C (802.15.4)
Main ChipsetSilicon Labs EM357
Wireless ProtocolIEEE 802.15.4
Operating Frequency2.4 GHz ISM Band
RF Data Rate250 Kbps
Indoor/Urban RangeUp to 60 Meters
Outdoor Line-of-Sight RangeUp to 1200 Meters
Transmit Power+3.1 dBm (Boost Mode)
Receiver Sensitivity-100 dBm (Boost Mode)
Operating Voltage2.1V ~ 3.6V DC
Current Consumption (TX)33mA at 3.3V
Current Consumption (RX)28mA at 3.3V
Current Consumption (Power-down)<1µA
Communication InterfaceUART, SPI
Digital I/O Pins15 GPIO Lines
Analog Inputs4x 10-bit ADC

Customer Reviews