int sensorValue = 0; void setup() Serial.begin(9600); // Open a scrying window to your PC
Open the Serial Monitor (Tools > Serial Monitor). As you turn the knob, the numbers change. You are now a diviner of voltages. Once you sense the world, you must change it. Using PWM (Pulse Width Modulation), you can fade an LED smoothly, as if breathing life into the crystal. arduino magix
void loop() lightLevel = analogRead(A0); if (lightLevel < 500) // The Twilight Threshold digitalWrite(9, HIGH); // Banish the darkness else digitalWrite(9, LOW); delay(100); int sensorValue = 0; void setup() Serial
So, plug in your board. Open the IDE. Type pinMode(13, OUTPUT); . When that first LED blinks, you will feel it. The magix is real. Once you sense the world, you must change it
When you upload this, the tiny "L" LED on your Arduino blinks once per second. You have just performed basic magix. You commanded silicon to dance. To move from novice to wizard, you must master three core disciplines. Pillar 1: The Magix of Input (Sensing the Unseen) The real world is analog, but computers are digital. To bridge this gap, we use sensors. A potentiometer (a knob) varies resistance. The Arduino reads this via analogRead() and gives a number between 0 and 1023.
void loop() analogWrite(9, brightness); // Send the variable power brightness = brightness + fadeAmount;