Marquee Letter PCB
February 28, 2022
Homemade HardwareFinalizing the Marquee Letter project started last week.
Placing the parts with solder paste
Soldering the circuit with the heat gun
The Arduino Code:
#include <Math.h>
#include <CapacitiveSensor.h>
CapacitiveSensor cs_4_2 = CapacitiveSensor(2, 3);
void setup() {
pinMode(0, OUTPUT);
cs_4_2.set_CS_AutocaL_Millis(0xFFFFFFFF);
}
void loop() {
long total1 = cs_4_2.capacitiveSensor(30);
int del = 0;
if (total1 > 200) {
analogWrite(0, 255);
} else {
analogWrite(0, 80);
}
}
The finished board