

The Sony Spresense LTE Extension Board (Part ID: CXD5602PWBLM1) is a hardware add-on designed to enhance the functionality of the Sony Spresense microcontroller by providing LTE connectivity. This extension board enables IoT applications to communicate over cellular networks, making it ideal for remote monitoring, asset tracking, and other applications requiring reliable wireless communication.








The LTE Extension Board connects to the Spresense main board via a dedicated interface. Below is the pin configuration:
| Pin Name | Description | Direction | Voltage Level |
|---|---|---|---|
| UART_TX | Transmit data to Spresense | Output | 3.3V |
| UART_RX | Receive data from Spresense | Input | 3.3V |
| VCC | Power supply input | Input | 3.6V to 4.2V |
| GND | Ground | - | 0V |
| SIM_DET | SIM card detection signal | Output | 3.3V |
| RESET | Reset signal for LTE module | Input | 3.3V |
| ANT | LTE antenna connection | - | - |
Connect the LTE Extension Board to the Spresense Main Board:
Insert a Nano-SIM Card:
Attach the LTE Antenna:
Power the Board:
Establish Communication:
The LTE Extension Board is typically used with the Spresense main board, but here is an example of how to send AT commands using an Arduino UNO for testing purposes:
#include <SoftwareSerial.h>
// Define RX and TX pins for SoftwareSerial
SoftwareSerial lteSerial(10, 11); // RX = pin 10, TX = pin 11
void setup() {
// Initialize serial communication with the LTE module
lteSerial.begin(9600); // LTE module baud rate
Serial.begin(9600); // Monitor baud rate
// Send an AT command to check communication
Serial.println("Sending AT command...");
lteSerial.println("AT"); // Basic AT command to test communication
}
void loop() {
// Check for data from the LTE module
if (lteSerial.available()) {
String response = lteSerial.readString();
Serial.println("LTE Module Response: " + response);
}
// Check for user input from the Serial Monitor
if (Serial.available()) {
String command = Serial.readString();
lteSerial.println(command); // Send user command to LTE module
}
}
10 and 11 with the appropriate pins if using a different microcontroller.No Response from the LTE Module:
SIM Card Not Detected:
Weak or No LTE Signal:
High Power Consumption:
AT, AT+CSQ) to verify functionality.By following this documentation, users can effectively integrate the Sony Spresense LTE Extension Board into their IoT projects and leverage its LTE connectivity for a wide range of applications.