DANIELLAGUNES

PERSONAL RESEARCH STATIONMYCOTUNE / HONEST SQUIGGLE
0%

Lab notebook / R&D

Research from
the edge.

Clickable experiments, ESP32 builds, code fragments, progress reports, failures, and next steps.

LOG 008RESEARCH / START HERE

Arduino + ESP32 Compatibility

Research notes for installing the ESP32 board core, selecting the exact Feather target, and knowing what Arduino compatibility does—and does not—promise.

// open research dossier
board = "Adafruit ESP32-S2 Feather";
OPEN LOG →
LOG 007LAUNCH / BEGINNER

First Project: Make a Light Blink

The embedded-systems hello world: connect, compile, upload, reset, and prove that code can control real hardware.

// open research dossier
digitalWrite(LED_BUILTIN, HIGH);
OPEN LOG →
LOG 006TROUBLESHOOTING / HONEST

Shit's Not Working

A calm recovery checklist for missing ports, wrong boards, failed uploads, dead LEDs, bad cables, bootloader mode, and other tiny electronic betrayals.

// open research dossier
panic = false // check the cable;
OPEN LOG →
LOG 005ANALOG / ACTIVE

ADS1115 16-bit ADC

How a precision I²C converter can turn a conditioned MycoTune bioelectric signal into usable digital samples.

// open research dossier
signal = adc.read("differential");
OPEN LOG →
LOG 004HARDWARE / ACTIVE

ESP32-S2 Feather + STEMMA QT

A compact Wi-Fi controller, native USB workstation, and plug-in I²C backbone for field prototypes.

// open research dossier
wire.begin("STEMMA_QT");
OPEN LOG →
LOG 003PROTOTYPING / REFERENCE

Breadboards

Fast, solderless prototyping with a field guide to grounding, noise, rail discipline, and analog signal integrity.

// open research dossier
keep_analog_paths = "short";
OPEN LOG →
LOG 002WORKFLOW / ACTIVE

GitHub

Versioned firmware, issue-driven experiments, research notes, releases, and a reproducible build trail for MycoTune.

// open research dossier
git.commit("honest squiggle");
OPEN LOG →