mirror of
https://github.com/esp8266/Arduino.git
synced 2025-09-06 19:08:12 +03:00
* update examples * fix serial<->tcp example, use STASSID instead of SSID (name collision) * fix HTTPSRequest.ino * update AxTLS HTTPS examples, update AxTLS API to deprecated * fixes * fixes + fix astyle (no preproc directives) + restyling script * fix HTTPClient library * fixes * common.sh: do not reload arduino when already present (for locally CI testing) * common.sh: do not reload ArduinoJson when already present (for locally CI testing) * fix * fix * fix deprecated example * fix WiFiHTTPSServer.ino * reduce footprint * wipfix * fix led builtin * fix example * finished updating APSSID on all examples * style * restyle examples * helper to run CI test locally * local CI runner more verbose * +const * deprecation deprecation * deprecation * Update NTPClient.ino const char[] => const char * * Update interactive.ino const char[] => const char *
34 lines
862 B
C++
34 lines
862 B
C++
|
|
/*
|
|
NativeSdk by Simon Peter
|
|
Access functionality from the Espressif ESP8266 SDK
|
|
This example code is in the public domain
|
|
|
|
This is for advanced users.
|
|
Note that this makes your code dependent on the ESP8266, which is generally
|
|
a bad idea. So you should try to use esp8266/Arduino functionality
|
|
where possible instead, in order to abstract away the hardware dependency.
|
|
*/
|
|
|
|
// Expose Espressif SDK functionality - wrapped in ifdef so that it still
|
|
// compiles on other platforms
|
|
#ifdef ESP8266
|
|
extern "C" {
|
|
#include "user_interface.h"
|
|
}
|
|
#endif
|
|
|
|
void setup() {
|
|
Serial.begin(115200);
|
|
}
|
|
|
|
void loop() {
|
|
// Call Espressif SDK functionality - wrapped in ifdef so that it still
|
|
// compiles on other platforms
|
|
#ifdef ESP8266
|
|
Serial.print("wifi_station_get_hostname: ");
|
|
Serial.println(wifi_station_get_hostname());
|
|
#endif
|
|
delay(1000);
|
|
}
|