int currentAlt = 100;
float vertSpeed = 44.2;
int accelTotal = 42;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello");
char message[100];
snprintf(message, 100, "Alt: %i\nVertical Vel: %f\nAccel Total: %i\n", currentAlt, vertSpeed, accelTotal );
Serial.println(message);
}
void loop() {
// put your main code here, to run repeatedly:
}