matsurika.moe
Digitalis purpureaThe botanical specimen is the schematic. Leaf veins are copper traces. Stem joints are via-holes. Roots are ground connections. The same information, two registers: one alive, one readable.
Cardiac Signal
Digitalis purpureaThe foxglove plant synthesizes cardiac glycosides — molecules that inhibit the Na⁺/K⁺-ATPase pump in cardiac muscle cells. The effect: slowed conduction velocity, increased stroke volume. The margin between therapeutic and lethal dose is 2×.
In circuit terms: a feedback control loop operating at threshold. The plant's leaf is the register. The via-hole at the stem joint is the flip-flop. The flower is the output latch.
function inhibit(pump, glycoside) {
const binding = pump.naK_site.bind(glycoside);
if (binding.affinity > threshold) {
pump.state = 'inhibited';
return cardiac.increaseContractility();
}
return pump.nominal();
}
Leaf vein = copper trace. The branching structure of the foxglove leaf maps directly to a signal distribution network. Tertiary veins: 0.8px trace width.
Alkaloid Cascade
Atropa belladonnaBelladonna produces atropine and scopolamine — anticholinergic compounds that block muscarinic receptors throughout the nervous system. Pupils dilate. Saliva production ceases. Tachycardia. A full system-state override.
The circuit analogue: a broadcast interrupt. A single signal that disables the peripheral bus and forces all channels into an unconfigured state.
const atropine = new Antagonist({
receptor: 'mAChR',
selectivity: 'non-selective',
halfLife_hours: 2.5
});
// Broadcast to all parasympathetic nodes
nervous_system.broadcast(atropine);
Berry cluster = component array. Each berry is a component node; the cluster maps to a register bank. Internal resistance: 47Ω nominal.
Deliriant Cascade
Datura stramoniumJimsonweed carries tropane alkaloids in every tissue: seed, leaf, root, flower. The spiny seed pod is not decoration — it is the delivery mechanism. The seed pod's internal structure, viewed in cross-section, is a component footprint: four chambers, each an independent signal source.
The trumpet flower — five fused petals, a single corolla tube — is a trumpet-architecture bus: one input, wide output. The circuit maps it directly.
const alkaloids = {
scopolamine: { conc_mg_per_g: 0.06 },
atropine: { conc_mg_per_g: 0.02 },
hyoscyamine: { conc_mg_per_g: 0.15 }
};
// Uniform distribution across tissues
tissues.forEach(t => t.load(alkaloids));
Root System Architecture
Dependency graphs as ground planesThe root system of a plant is a dependency graph. Each lateral root is a module dependency. Each root tip is a leaf node. The taproot is the entry point. Ground connections in a circuit serve the same structural role: they terminate signals, provide reference, complete the loop.
matsurika.moe is a field guide for reading living systems as technical diagrams. Every specimen on this site has a corresponding schematic. The schematic is not a metaphor — it is a precise structural isomorphism.
Root junction = ground plane. Where lateral roots branch from the taproot, a via-hole is placed. The signal terminates here. The reference is set.