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....
Any Idea? Raspberry Pi 3B and dildonics .... ?
-
- Newbie
- Posts: 1
- Joined: Wed Jan 17, 2018 2:51 pm
- Location: Frankfurt am Main
-
- Developer
- Posts: 186
- Joined: Sun Feb 25, 2018 2:15 pm
- Location: West USA
Re: Any Idea? Raspberry Pi 3B and dildonics .... ?
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 :
for a button press,
or make make it a function
then in your code you just call the function turnon()
and or turnoff() and it will "press the button" with the relay.
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
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
and or turnoff() and it will "press the button" with the relay.