Skip to content

Instantly share code, notes, and snippets.

View valerierx's full-sized avatar
:octocat:

Valérie ROUX valerierx

:octocat:
  • France
  • 22:16 (UTC +02:00)
View GitHub Profile
#include <Servo.h>
Servo myservo;
const int servoPin = 9;
const int buttonPin = 12;
const int ledPin = 13;
void setup() {
myservo.attach(servoPin);
@valerierx
valerierx / run_exe_file_in_wine
Last active June 16, 2018 11:41 — forked from csarigoz/run_exe_file_in_wine
Applescript for Running an exe file in wine
tell application "Terminal"
do script "wine /path/to/your/exe/file"
end tell