CubeCell-Arduino
CubeCell-Arduino copied to clipboard
Ardunio Send AT Command
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.
try sending it via the serial monitor with AT support on.
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