Any Idea? Raspberry Pi 3B and dildonics .... ?

Everything to do with the E-Stim Systems Remote control system. The first E-Stim Remote in the world with a motion sensor. and now with sound as well.
Post Reply
germanestim
Newbie
Posts: 1
Joined: Wed Jan 17, 2018 2:51 pm
Location: Frankfurt am Main

Any Idea? Raspberry Pi 3B and dildonics .... ?

Post by germanestim »

Has any one such experience to build up remote-dildonics with raspberry pi 3B? I think, via the GPIO on board we are able to build up complex remote teledildonics for men and women .... anyone interested to share experiences?

I am just a beginner in teledildonics and would prefer hidden estim application in public (including jizz in my pants of course LOL)
But more interesting it was, when other online partners would have control over it and deciding when and where I cum.... :)


estimfun
Developer
Posts: 186
Joined: Sun Feb 25, 2018 2:15 pm
Location: West USA

Re: Any Idea? Raspberry Pi 3B and dildonics .... ?

Post by estimfun »

You can have the raspberry pi control a remote control, wire up the GPIO pins to operate a relay thats connected to wires on the remote so that it closes the circuit when its "on"
Say its Pin 18
You could do :

Code: Select all

GPIO.output(18,GPIO.HIGH) #On
time.sleep(.5) #.5 seconds 
GPIO.output(18,GPIO.LOW) #Off
for a button press,

or make make it a function

Code: Select all

def turnon():
	GPIO.output(18,GPIO.HIGH) #On
	time.sleep(.5) #.5 seconds 
	GPIO.output(18,GPIO.LOW) #Off
	
def turnoff():
	GPIO.output(17,GPIO.HIGH) #On
	time.sleep(.5) #.5 seconds 
	GPIO.output(17,GPIO.LOW) #Off


then in your code you just call the function turnon()
and or turnoff() and it will "press the button" with the relay.
Post Reply