Discuss Scratch

sowut123
Scratcher
1000+ posts

The Arduino Topic

Hello, and welcome to the Arduino topic! Discuss things you made with the Arduino or whatever else here!
For more information, check out the Wikipedia page here.

Last edited by sowut123 (March 3, 2019 18:36:29)

sowut123
Scratcher
1000+ posts

The Arduino Topic


Wire spaghetti. Yum.
Devin_Scratch
Scratcher
25 posts

The Arduino Topic

I made a pong game!
tsant2009
Scratcher
3 posts

The Arduino Topic

Im trying to make some sort of sound card
werfghjtre
Scratcher
3 posts

The Arduino Topic

ESP32CAM Face Recognition Door Lock System is what I'm working on!
if <the cam on the ESP32CAM senses an enrolled face> then

it unlocks the door

else
It remains locked
end
This is a pic below!
Or not, Scratch doesn't let me upload it...
Sincerely [ ,]
WERFGHJTRE


-cloudcoding-
Scratcher
1000+ posts

The Arduino Topic

I have a mega
TP22222
Scratcher
81 posts

The Arduino Topic

I made a circuit for school. Here's the code:
#include <Servo.h>

Servo servo_2;

int potpin = A0;
int val;

void setup()
{
servo_2.attach(2);
pinMode(3, OUTPUT);
pinMode(LED_BUILTIN, OUTPUT);
servo_2.attach(2, 500, 2500);
}

void loop()
{
//Motor
analogWrite(3, 15);
//Blink
digitalWrite(LED_BUILTIN, HIGH);
delay(1000); // Wait for 1000 millisecond(s)
digitalWrite(LED_BUILTIN, LOW);
delay(1000); // Wait for 1000 millisecond(s)
//Servo
val = analogRead(potpin);
val = map(val, 0, 1023, 0, 180);
servo_2.write(val);
}
//Hope it works!
TP22222
Scratcher
81 posts

The Arduino Topic

-cloudcoding- wrote:

I have a mega
cool!

Powered by DjangoBB