update firmwares to send info to controlling computer

This commit is contained in:
Persephone Bubblegum-Holidy 2025-05-05 19:08:45 -07:00
parent 2f6d3b7b5b
commit 7ee8214615
6 changed files with 84 additions and 113 deletions

View file

@ -0,0 +1,18 @@
// tp1sm
#include <Servo.h>
Servo servoChannel;
void setup()
{
servoChannel.attach(2);
}
void loop()
{
servoChannel.write(0);
delay(1000);
servoChannel.write(180);
delay(1000);
}