Skip to content

Commit 50189ef

Browse files
committed
updated storage location ip
1 parent 1b6b445 commit 50189ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

SolArduino_atom/SolArduino/communication.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ unsigned long getNtpTime() {
201201
void requestNewTable() {
202202
Serial.println(F("requesting new data"));
203203
responseReceived = false; // set boolean to 'wait for request'
204-
ether.browseUrl(PSTR("/index.php"), "", NULL, my_callback);
204+
ether.browseUrl(PSTR("/solarduino.php"), "", NULL, my_callback);
205205
tableIndex = 0; //reset global index
206206
}
207207

SolArduino_atom/SolArduino/setup.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ void setupNAS() {
4343
// if (!ether.dnsLookup(website))
4444
// Serial.println("DNS failed");
4545
//instead of dns lookup, set hisip (ip of NAS) manually to be used by browseURL
46-
ether.hisip[0]=192;
47-
ether.hisip[1]=168;
48-
ether.hisip[2]=8;
49-
ether.hisip[3]=200;
46+
ether.hisip[0]=91;
47+
ether.hisip[1]=184;
48+
ether.hisip[2]=13;
49+
ether.hisip[3]=53;
5050
//below not applicable anymore, but could always change
5151
// the http request needs a different dns, so we set that here and do setup again
5252
// dns[0] = 192;

0 commit comments

Comments
 (0)