Search found 2 matches

by kaskas
Mon Feb 27, 2017 10:51 am
Forum: ESP32 Arduino
Topic: Router connection: 50% failure (50% success)
Replies: 0
Views: 3797

Router connection: 50% failure (50% success)

Hi,
I use this standard sketch to connect to Internet:

#include <WiFi.h>

char* ssid = "xxxxxxxxxx";
char* password = "xxxxxxxx";

void setup() {
Serial.begin(115200);
delay(10);
Serial.print("Connecting to "); Serial.println(ssid);
WiFi.begin(ssid, password);
while (WiFi.status() != WL ...
by kaskas
Fri Feb 24, 2017 10:55 am
Forum: ESP32 Arduino
Topic: sntp, NIST time server
Replies: 1
Views: 6298

sntp, NIST time server

Hi,

I am currently getting date and time using NIST Internet Time Service with my ESP8266.
when porting my code to ESP32, I get following error messages:

error: 'sntp_set_timezone' was not declared in this scope
error: 'sntp_get_current_timestamp' was not declared in this scope
error: 'sntp_get ...

Go to advanced search