Skip to content
Snippets Groups Projects
Commit 05857a6b authored by Iida Pyykkönen's avatar Iida Pyykkönen
Browse files

cleaned some comments in main

parent 2ed28aa4
No related branches found
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ unsigned long previous_time = micros(); ...@@ -15,7 +15,7 @@ unsigned long previous_time = micros();
void setup() { void setup() {
// put your setup code here, to run once: // setup code, runs once
Serial.begin(115200); Serial.begin(115200);
delay(400); delay(400);
Serial.println("Initializing..."); Serial.println("Initializing...");
...@@ -49,7 +49,7 @@ void setup() { ...@@ -49,7 +49,7 @@ void setup() {
} }
void loop() { void loop() {
// put your main code here, to run repeatedly: // main loop, runs repeatedly:
Serial.println(particleSensor.getIR()); Serial.println(particleSensor.getIR());
particleSensor.check(); particleSensor.check();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment