dataFile.println(F(Temp_PT1));
Is TempPT1 a string constant? Please use the F() macro only with string constants. It's used to read these strings directly from the flash without making a copy in the RAM, so you save a lot of RAM.
dataFile.println(F(Temp_PT1));
Is TempPT1 a string constant? Please use the F() macro only with string constants. It's used to read these strings directly from the flash without making a copy in the RAM, so you save a lot of RAM.