Add the following snippet to your HTML:<iframe frameborder='0' height='385' scrolling='no' src='https://www.hackster.io/thepersonwhobuild/spiderman-s-webshooter-ca1239/embed' width='350'></iframe>
it is a node mcu and spring powered spiderman web shooter this is v1
Read up about this project on
it is a real spider man web shooter which shoots web which is thread
#include <Servo.h> int sw = A0; Servo myservo; void setup () { Serial.begin (9600); myservo.attach (D0); } void loop () { int a = analogRead (sw); if (a>=100) { myservo.write (180); } else { myservo.write (0); } Serial.println (a); }
Please log in or sign up to comment.
Comments
Please log in or sign up to comment.