Skip to content

Instantly share code, notes, and snippets.

View jonathandreyer's full-sized avatar

Jonathan Dreyer jonathandreyer

View GitHub Profile
@jonathandreyer
jonathandreyer / WellerRTProto.ino
Last active August 29, 2015 14:27 — forked from ynsta/WellerRTProto.ino
Weller RT Station PID Protoype
#define TEMPERATURE 350
#define TEMPERATURE_MAX 400
#define PWM_PIN 3
#define PWM_MAX 245
#define PID_INT_MAX (500)
#define PID_INT_MIN (-PID_INT_MAX)
#define TEMP_GAIN 0.42
@jonathandreyer
jonathandreyer / com.company.launch_beamoff.plist
Last active August 29, 2015 14:26 — forked from rtrouton/com.company.launch_beamoff.plist
LaunchAgent to start BeamOff on login
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.company.launch_beamoff</string>
<key>ProgramArguments</key>
<array>
<string>/Applications/beamoff.app/Contents/MacOS/beamoff</string>
</array>