Add the following snippet to your HTML:
Resistor
Read up about this project on
int resist =13; void setup () { pinMode(resist,OUTPUT); } void loop() { digitalWrite (resist,HIGH); }
Comments