An application to log WiFi SSIDs for position lookup testing

Dependencies:   C027_Support SWO mbed-rtos mbed picojson

Fork of lpc4088_ebb_ublox_Cellular_PubNubDemo_rtos by EmbeddedArtists AB

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers ConfigurationProperties.h Source File

ConfigurationProperties.h

00001 #pragma once
00002 
00003 #include <stddef.h>
00004 #include "DeviceConfiguration.h"
00005 
00006 #define CONFIGURATION_PROPERTY_INTERVAL "300"
00007 
00008 class ConfigurationProperties
00009 {
00010 public:
00011     ConfigurationProperties(DeviceConfiguration&);
00012     
00013     bool resetConfiguration();
00014     bool validateProperties();
00015     
00016     int readInterval();
00017 
00018 private:
00019     DeviceConfiguration& _deviceConfiguration;
00020 };