void DigiFi::NTP(char *aHost){
setNetParams("UDP", "CLIENT", 123, aHost);
}
This will allow me to setup the digix to use UDP, but how to send a packet?
void DigiFi::sendData(int len, char *data)//SEND
{
Serial1.print("AT+SEND=");
Serial1.print(len);
Serial1.print(",");
Serial1.print(data);
Serial1.print("\r");
readResponse(0);
}
Does not look like it's equipped to handle this....