Skip to content

Commit

Permalink
Merge pull request #7 from Denzo77/master
Browse files Browse the repository at this point in the history
Made UDP address an empty string (to correspond to REV10 config validation)
  • Loading branch information
DamonHD authored Dec 7, 2016
2 parents 49edcfd + 119cfc6 commit 9a1a535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Arduino/V0p2_Main/Messaging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Author(s) / Copyright (s): Damon Hart-Davis 2014--2016
static const char SIM900_APN[] PROGMEM = "\"mobiledata\""; // GeoSIM

// UDP Configs - Edit SIM900_UDP_ADDR for relevant server. NOTE: The server IP address should never be committed to Github.
static const char SIM900_UDP_ADDR[16] PROGMEM = "0.0.0.0";
static const char SIM900_UDP_ADDR[16] PROGMEM = "";
static const char SIM900_UDP_PORT[5] PROGMEM = "9999"; // Standard port for OpenTRV servers
const OTSIM900Link::OTSIM900LinkConfig_t SIM900Config(
false,
Expand Down

0 comments on commit 9a1a535

Please sign in to comment.