You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
307 B

#include "settings.h"
Settings const* settings = NULL;
void setup() {
Serial.begin(9600);
Serial.print("\nLoading settings...");
settings = Settings::load("settings.ini");
if(settings == NULL)
Serial.println(" NOT OK");
else
Serial.println(" OK");
}
void loop() {
}