This 4 channel Arduino Beatdet (bidet) rocks your spots off. Select a beat on your phone and the Beatdet will jam out while it cleans you out. The Pirate Radio Bellagio of bidets. Authentic streaming music. Beatdet Pro allows you to choose any track on your phone to wipe with.
Notations 1. Considerable thanks to MakerBar in Hoboken, New Jersey. 2. It should be noted that this, as are most of our projects, a prototype, and surely demands several refinements; for example, superior nozzles for a more effective spray.
Arduino Speaky
// Arduino Beatdet Bidet // Vije Miller // MSGEQ7 Script | J Skoba // WTV020-SD-16P | Diego J. Arevalo
#include "Servo.h" #include "Wtv020sd16p.h"
// Servo Servo sprayarm; int pos = 45;
// Music Player int resetPin = 14; int clockPin = 15; int dataPin = 16; int busyPin = 17; Wtv020sd16p wtv020sd16p(resetPin, clockPin, dataPin, busyPin);
// EQ Pins int analogPin = A2; int strobePin = 2; int resetPin = 3; int spectrumValue[7];
// LED Pins int one = 8; int two = 9; int thr = 10; int fou = 11;
// LED Variables int ledone = 0; int ledtwo = 0; int ledthr = 0; int ledfou = 0;
// Pump Pins int pumpo = 4; int pumpt = 5; int pumph = 6; int pumpf = 7;
// Pump Variables int pmpone = 0; int pmptwo = 0; int pmpthr = 0; int pmpfou = 0;