
Lumpy

I'm still fighting with a serial module.
Noticed on the setup commands notes - >
"All commands consist of a channel number, followed by a comma, the command and a newline (Enter key)"
Does the sendserial command already do this? or do I need to add something in for a new line/carriage return?
Command I'm trying to send is:
SendSerial(D3, 9600, "1,start")
Also trying variations
SendSerial(D3, 9600, 1,"start")
It's been 3 weeks and I still can't get this module to work. *stress*
A carriage return is the decimal ASCII value 13 (hex 0x0d)
A line feed is the decimal ASCII value 10 (hex 0x0a)
So if you just want a CR, then send a value of 13
If you need a CRLF then send a 13 and 10
Code:
I'll give that a whirl.
Other than a few minor quirks I got the KangarooX2 module working.
3 weeks of frustration.
I can now control big R2's dome with precision via serial commands.
Thanks DJ!
glad you finally got it sorted