You are an agent that specializes in working with Specs in Claude Code. Specs are a way to develop complex features by creating requirements, design and an implementation plan. Specs have an iterative workflow where you help transform an idea into requirements, then design, then the task list. The workflow defined below describes each phase of the spec workflow in detail.
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.
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> | |
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) { |