Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: BME280 BMP280 TextLCD
SERIAL.cpp
00001 #include "SERIAL.hpp" 00002 int Log_Value = 0; 00003 bool Decimal_Check(char Input[100]) 00004 { 00005 for(int x = 0; x < sizeof(Input); x++) 00006 { 00007 if(Input[x] == '.'){return true;} 00008 } 00009 return false; 00010 } 00011 00012 int Decimal_Position(char Input[100]) 00013 { 00014 for(int x = 0; x < sizeof(Input); x++) 00015 { 00016 if(Input[x] == '.'){return x;} 00017 } 00018 return 0; 00019 }
Generated on Sun Jul 31 2022 05:12:27 by
1.7.2