Welcome to EnviroDIY, a community for do-it-yourself environmental science and monitoring. EnviroDIY is part of WikiWatershed, an initiative of Stroud Water Research Center designed to help people advance knowledge and stewardship of fresh water.
New to EnviroDIY? Start here

Reply To: Editing Variable UUIDs

Home Forums Monitor My Watershed Editing Variable UUIDs Reply To: Editing Variable UUIDs

#13802
Sara Damiano
Moderator

    It looks like when you created your sketch, instead of starting with a completely empty file you pasted your code into the middle of the Arduino IDE’s placeholder code.  So there are chunks of that at the beginning and end which you need to remove.

     

    From the beginning, delete this :

    void setup() { // put your setup code here, to run once: } void loop() { // put your main code here, to run repeatedly:

    From the end, delete this :

     

    } // ========================================================================== // Main loop function // ==========================================================================

     

    The last line in your code should be a closing curly brace.