This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <[email protected]> | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# | |
# Note from author: Never run scripts without reading them & understanding what they do. | |
# | |
# Addition: One command to rule them all, One command to find it, and One command to Run it! | |
# | |
# > powershell -nop -c "iex(New-Object Net.WebClient).DownloadString('https://git.io/JJ8R4')" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <PubSubClient.h> | |
const char* cfg_wifi_ssid = "freifunk-myk.de"; | |
const char* cfg_wifi_pwd = ""; | |
const char* mqtt_server = "deinserver.local"; | |
const unsigned int mqtt_port = 1883; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <ESP8266WiFi.h> | |
#include <ESP8266mDNS.h> | |
#include <PubSubClient.h> | |
const char* cfg_wifi_ssid = "freifunk-myk.de"; | |
const char* cfg_wifi_pwd = ""; | |
const char* mqtt_server = "deinserver.local"; | |
const unsigned int mqtt_port = 1883; |