Warning: Undefined array key "enable_lazyload_videos" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/reco-functions.php on line 129
Murat Uğur Eminoğlu – Page 6 – #!/bin/bash echo "Murat Uğur Eminoğlu"
Warning: Undefined array key "custom_scripts" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 48

Press enter to see results or esc to cancel.

ESP8266 SoftAP yapılandırması

#include <ESP8266WiFi.h> IPAddress local_IP(192,168,4,22); IPAddress gateway(192,168,4,9); IPAddress subnet(255,255,255,0); const char *ssid = “ESP_AP”; const char *password = “test123”; void setup() { Serial.begin(115200); Serial.println(); Serial.print(“Setting soft-AP configuration … “); Serial.println(WiFi.softAPConfig(local_IP, gateway, subnet) ? “Ready” : “Failed!”); Serial.print(“Setting soft-AP … “); Serial.println(WiFi.softAP(ssid, password) ? “Ready” : “Failed!”); Serial.print(“Soft-AP IP address = “); Serial.println(WiFi.softAPIP()); } void loop() {} …

Continue reading

Warning: Undefined array key "custom_scripts_footer" in /var/www/murat.ws/public_html/wp-content/plugins/reco-functions/custom-styles.php on line 58