Created
March 5, 2018 19:38
-
-
Save sabas1080/21445990f053f2bf3680099bd7b48943 to your computer and use it in GitHub Desktop.
Ejemplo de datos enviados por estacion terrena catsat
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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