Created
March 23, 2018 09:14
Arduino Serial Plotter Example
This file contains 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
#include "Math.h" | |
void setup() { | |
Serial.begin(9600); | |
} | |
void loop() { | |
float angle = 0; | |
float sineData; | |
float cosineData; | |
float sum; | |
for(angle = 0.0; angle <= 90; angle += 0.1) { | |
sineData = sin(angle); | |
cosineData = cos(angle); | |
sum = sineData + cosineData; | |
Serial.print(sineData); | |
Serial.print(" "); | |
Serial.print(cosineData); | |
Serial.print(" "); | |
Serial.print(sum); | |
Serial.println(); | |
delay(1); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment