teensy 3.1 with adafruit ultimate gps sending info via udp packet

Status
Not open for further replies.
hello had quick question how would i be able to send the the gps location information i'am receving to via udp packet or ip address here is my code what would i add anything helps thanks



void setup() {
Serial1.begin(9600);
Serial.begin(9600);
}

void loop()
{
while (Serial.available())
Serial3.write(Serial.read());
while (Serial3.available())
Serial.write(Serial3.read());
delay (10000);
}
 
This question will attract better answers if you specify which wifi or ethernet device/module you are going to use to communicate via a network like that.
 
Status
Not open for further replies.
Back
Top