A lie is the sin man tells in fear. To seek the truth, we must aide the sinner in crossing a threshold to find deliverance. Problem is, I am binge watching Ally McBeal Season 4, so allow us to automate the process. Attach sensors to said victim...er...suspect and allow our computer (Jacob) and an Arduino Uno to decipher if they are telling the truth or require some, inspiration.
Forgive the potato lens --> cheap video (old Droid Razr) equipment.
Arduino Linguistics
// Arduino Water Board // Vije Miller
#include <Servo.h>
Servo spigot; Servo rightarm;
// Servo Position int spigpos = 45; int armpos = 15;
// Resting State float lieset = 0; int lierec = 0; int lietotal = 0; int lieavg = 0; int lienew = 0; // Variance int spvar = 20; int liepin = A0;
// Valve int valve = 8;
// LEDs int blue = 13; int green = 12; int red = 11;
void setup() {
spigot.attach(9); // Spigot rightarm.attach(10); // Rag Arm