The elite Coeur d'Alene Resort is an exquisite luxurious encounter nestled on a lake in Idaho. I live in a shack; thus the odds of entertaining such a blessed experience are currently, null. In an attempt to bring this hedonistic wealth home, we have reproduced (maked) golf's now infamous floating 14th.
The scaled golf green sits upon an Arduino Uno and Seeed Studio Relay controlled motor array affixed by a bluetooth that interacts with an Android phone application created in MIT App Inventor to much like the parent object, adjust distance relative to user. Steering is automated to control center by an Arduino Micro and 2 ultrasonic sensors spitting out distance to elevated impediments. It's a glorified chipping mat folks!
It should be noted that Vije Miller won the HackADay Golf Tournament by 4 strokes. That's what she said.
Arduino MCDL14 Drive Sketch
// MCDL14 Drive // Vije Miller
#include "SoftwareSerial.h"
// 6.25 Inch Rotation // 5.76 Rotations Per Yard // 1.25 Seconds Per Rotation // 7.2 Seconds Per Yard
SoftwareSerial btsend(11, 10);
const int alive = 13;
//Forward const int posfwd = 4; const int negfwd = 6;
//Backward const int posbak = 5; const int negbak = 7;
// Last Position int pos = 0; int rot = 0; char btrec;
// Run Time (Ref.) int zero = 0; int forty = 5555; int fifty = 6944; int sixty = 8333; int seventy = 9722; int eigthy = 11111; int ninety = 12500;