//Your WiFi credentials const char ssid[] = ""; const char password[] = ""; // Below infomation you can set after signing up with u-blox Thingstream portal // and after add a new New PointPerfect Thing // https://portal.thingstream.io/app/location-services/things // in the new PointPerfect Thing you go to the credentials page and copy past the values and certificate into this. // -> Credentials -> Hostname const char AWS_IOT_ENDPOINT[] = "pp.services.u-blox.com"; const unsigned short AWS_IOT_PORT = 8883; // -> Credentials -> IP key distribution topic const char MQTT_TOPIC_KEY[] = "/pp/key/ip"; // -> Credentials -> IP correction topic for EU/US region const char MQTT_TOPIC_SPARTN[] = "/pp/ip/us"; // choice of {eu, us} // -> Credentials -> Client Id static const char MQTT_CLIENT_ID[] = ""; // -> Credentials -> Amazon Root Certificate static const char AWS_CERT_CA[] PROGMEM = R"EOF( -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- )EOF"; // -> Credentials -> Client Certificate static const char AWS_CERT_CRT[] PROGMEM = R"KEY( -----BEGIN CERTIFICATE----- -----END CERTIFICATE----- )KEY"; // Get this from Thingstream Portal // -> Credentials -> Client Key static const char AWS_CERT_PRIVATE[] PROGMEM = R"KEY( -----BEGIN RSA PRIVATE KEY----- -----END RSA PRIVATE KEY----- )KEY";