This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7905615aa9b18939eb1cce50ed97396252a0e8eba26eb7462c736866f080e39c # openjdk 8 on alpine linux | |
2a84eb49b410b2a83be50170f4f5226ce2a9bf373615326cfde7e36bd2d9d441 # OpenJDK Runtime Environment JBR-21.0.4+8-598.4-jcef (build 21.0.4+1-nixos) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <Servo.h> | |
Servo ESC; | |
void setup() { | |
Serial.begin(9600); | |
Serial.println("Starting"); | |
ESC.attach(A0); | |
ESC.write(2000); |