Interfacing Energenie PI Mote

I am trying to interface the PI mote.

But the GPIO integrated only shows 17 to 27. Cayenne doesn’t show the needed combinations for example, GPIO.setup(11, GPIO.OUT) in the Digital Output or input. can anyone point me how to set these up.

regards,
Dinesh.

Here is the program ENER002.py

#import the required modules
import RPi.GPIO as GPIO
import time
# set the pins numbering mode
GPIO.setmode(GPIO.BOARD)
# Select the GPIO pins used for the en
coder K0
-
K3 data inputs
GPIO.setup(11, GPIO.OUT)
GPIO.setup(15, GPIO.OUT)
GPIO.setup(16, GPIO.OUT)
GPIO.setup(13, GPIO.OUT)
# Select the signal used to select ASK/FSK
GPIO.setup(18, GPIO.OUT)
# Select the signal used to enable/disable the modulator
GPIO.
setup(22, GPIO.OUT)
# Disable the modulator by setting CE pin lo
GPIO.output (22, False)
# Set the modulator to ASK for On Off Keying 
# by setting MODSEL pin lo
GPIO.output (18, False)
# Initialise K0
-
K3 inputs of the encoder to 0000
GPIO.output (11, F
alse)
GPIO.output (15, False)
GPIO.output (16, False)
GPIO.output (13, False)
# The On/Off code pairs correspond to the hand controller codes.
# True = '1', False ='0'
print "To clear the socket programming, press the green button"
print "for 5 seconds o
r more until the red light flashes slowly"
print "The socket is now in its learning mode and listening for"
print "a control code to be sent. It will accept the following" 
print "code pairs"
print "0011 and 1011 all ON and OFF"
print "1111 and 0111 socket 1"

print "1110 and 0110 socket 2"
print "1101 and 0101 socket 3"
print "1100 and 0100 socket 4"
print "Hit CTL C for a clean exit"
try:
# We will just loop round switching the unit on and off
while True:
raw_input('hit return key to send socket 1 ON 
code')
# Set K0
-
K3
print "sending code 1111 socket 1 on"
GPIO.output (11, True)
GPIO.output (15, True)
GPIO.output (16, True)
GPIO.output (13, True)
# let it settle, encoder requires this
time.sleep(0.1)
# Enable the modulator
GPIO.out
put (22, True)
# keep enabled for a period
time.sleep(0.25)
# Disable the modulator
GPIO.output (22, False)
raw_input('hit return key to send socket 1 OFF code')
# Set K0
-
K3
print "sending code 0111 Socket 1 off"
GPIO.output (11, True)
G
PIO.output (15, True)
GPIO.output (16, True)
GPIO.output (13, False)
# let it settle, encoder requires this
time.sleep(0.1)
# Enable the modulator
GPIO.output (22, True)
# keep enabled for a period
time.sleep(0.25)
# Disable the modulator
GPIO.output (22, False)
raw_input('hit return key to send ALL ON code')
# Set K0
-
K3
print "sending code 1011 ALL on"
GPIO.output (11, True)
GPIO.output (15, True)
GPIO.output (16, False)
GPIO.output (13, True)
# let it settle, encoder r
equires this
time.sleep(0.1)
# Enable the modulator
GPIO.output (22, True)
# keep enabled for a period
time.sleep(0.25)
# Disable the modulator
GPIO.output (22, False)
raw_input('hit return key to send ALL OFF code')
# Set K0
-
K3
print 
"sending code 0011 All off"
GPIO.output (11, True)
GPIO.output (15, True)
GPIO.output (16, False)
GPIO.output (13, False)
# let it settle, encoder requires this
time.sleep(0.1)
# Enable the modulator
GPIO.output (22, True)
# keep enabled
for a period
time.sleep(0.25)
# Disable the modulator
GPIO.output (22, False)
# Clean up the GPIOs for next time
except KeyboardInterrupt:
GPIO.cleanup()

I have one of the energenie units but I haven’t had chance to play with it.
Its only a theory but to send the signal there is a 4 digit code which is set by 4 Gpio pins ever high or low then the encoder signal is with modulator signal.
So in theory this should be achieved by using the triggers but I have not had chance to have a play and let the smoke out yet.
This is part of the information on it.


Just a update on this topic I’ve been playing and I can switch my sockets on and of by setting Gpio high and low in a sequence don’t now how far I can take device but if anyone can help it would be great.