Communication is not working when connected arduino due with SIM7600CE -T
I am using arduino due with SIM7600CE -T the wiring looks like below.
But when i send AT command it dosnt show OK message
Sorry please ignore the previous comment the code I use to do the communication is
Mad.patiI think that the Due does not compatible with the TEL0124, as the due is a 3.3V microcontroller and the working voltage of TEL0124 is 5V.
Would you switch into Ardunio UNO, Mega or Leonardo?
<code> void setup() { // Initialize serial communication with the computer Serial.begin(9600); // Adjust baud rate as needed // Initialize serial communication with the SIM7600CE module Serial1.begin(9600); // Adjust baud rate as needed // Wait for the SIM7600CE module to initialize delay(5000); // Send an AT command to the SIM7600CE module Serial1.println("AT"); } void loop() { // Check if data is available from the SIM7600CE module if (Serial1.available()) { // Read the response from the SIM7600CE module String response = Serial1.readString(); // Print the response to the serial monitor Serial.println("Response from SIM7600CE module: " + response); } // Check if data is available from the computer if (Serial.available()) { // Read the data from the computer char command = Serial.read(); // Send the data to the SIM7600CE module Serial1.print(command); } } </code>
Mad.pati