Skip to content

Instantly share code, notes, and snippets.

@sumect
sumect / gist:5e6a5a4977e7c45b88592f1b45c9ad66
Last active March 12, 2025 07:14
SuppleMate Subscription Terms and How to Cancel

SuppleMate Subscription Terms and How to Cancel

Overview

SuppleMate offers subscription-based premium services to enhance your experience, including advanced supplement reminders, inventory management, customized dosing schedules, intake cycle settings, and comprehensive historical data analysis.

By subscribing, you agree to the following terms and conditions. Please read carefully.


@sumect
sumect / wpstest.ino
Created May 8, 2018 15:50 — forked from copa2/wpstest.ino
Example for WPS connection with https://github.com/esp8266/Arduino
#include <ESP8266WiFi.h>
void setup() {
Serial.begin(115200);
delay(1000);
Serial.printf("\nTry connecting to WiFi with SSID '%s'\n", WiFi.SSID().c_str());
WiFi.mode(WIFI_STA);
WiFi.begin(WiFi.SSID().c_str(),WiFi.psk().c_str()); // reading data from EPROM, last saved credentials
while (WiFi.status() == WL_DISCONNECTED) {