uploaded week 7

This commit is contained in:
2023-05-26 18:46:25 +09:00
parent eebeea8f12
commit 260dd3372a
45 changed files with 646 additions and 2 deletions

View File

@@ -0,0 +1,13 @@
#include <ADCTouch.h>
void setup() {
pinMode(A0, INPUT);
pinMode(LED_BUILTIN, OUTPUT);
Serial.begin(9600);
}
void loop() {
int val = ADCTouch.read(A0, 100);
Serial.println(val);
delay(40);
}