CubeCell-Arduino icon indicating copy to clipboard operation
CubeCell-Arduino copied to clipboard

Ardunio Send AT Command

Open fabltd opened this issue 3 years ago • 2 comments

Hello

I want to use the UART with Ardunio but the Copyright message is problem.

How do I send AT+Copyright=1 with Ardunio to disable? Cannot find example.

fabltd avatar Dec 14 '21 16:12 fabltd

try sending it via the serial monitor with AT support on.

ardadenker avatar Jan 11 '22 23:01 ardadenker

First you need to enableAt()` at

void setup()
 {
Serial.begin(115200);
enableAt();
 }

or simply load the AT_Command example located under Lora folder AT_Command and then run your command using arduino serial monitor with no line ending image

jcherrabi avatar Jan 13 '22 18:01 jcherrabi