16 lines
571 B
C
16 lines
571 B
C
//Your WiFi credentials
|
|
const char *ssid = "TRex";
|
|
const char *password = "hasBigTeeth";
|
|
|
|
//RTK2Go works well and is free
|
|
const char casterHost[] = "rtk2go.com";
|
|
const uint16_t casterPort = 2101;
|
|
const char mountPoint[] = "bldr_dwntwn2"; //The mount point you want to push data to
|
|
const char mountPointPW[] = "WR5wRo4H";
|
|
|
|
//Emlid Caster also works well and is free
|
|
//const char casterHost[] = "caster.emlid.com";
|
|
//const uint16_t casterPort = 2101;
|
|
//const char mountPoint[] = "MP1979d"; //The mount point you want to push data to
|
|
//const char mountPointPW[] = "296ynq";
|