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
63912fa03e9d780cbed4918ab866b05c36b045307bd32cfd3ce3d3ea620737a6 # OpenJDK 8 alpine Docker | |
279014ac4d2ac22de188650773f36649e93141b2bed90fb18060f2e2af671db8 # OpenJDK 64-Bit Server VM JBR-21.0.4+8-598.4-jcef (build 21.0.4+1-nixos, mixed mode, sharing) | |
be7d077677c7f58bb6fbe2febb1e2395a0e8cbc7eff1f80f7e569d975813dce9 # OpenJDK 64-Bit Server VM (build 25.432-b06, mixed mode) |
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); |