Skip to content

Instantly share code, notes, and snippets.

@sabas1080
Created March 5, 2018 19:38
Show Gist options
  • Save sabas1080/21445990f053f2bf3680099bd7b48943 to your computer and use it in GitHub Desktop.
Save sabas1080/21445990f053f2bf3680099bd7b48943 to your computer and use it in GitHub Desktop.
Ejemplo de datos enviados por estacion terrena catsat
void setup() {
// put your setup code here, to run once:
Serial.setup(9600);
}
void loop() {
// put your main code here, to run repeatedly:
//A1,temp1,hum,press,temp2,mx,my,mz,ax,ay,az,gx,gy,gz,lat,long
Serial.println(A1,23,70,800,21,34,45,23,12,43,90,89,67,54,22.3446,-102.8967);
delay(3000); //3 segundos
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment