Thanks ghollingworth, have tried to get raspi-gpio to run but its coming back 'file not found', so maybe i'm missing some dependencies.
what I can use easily though is python, would this code effectively do the same?
Code
import sys
sys.path.append('/storage/.kodi/addons/virtual.rpi-tools/lib')
import os
import RPi.GPIO as GPIO
import time
pin=43
GPIO.setmode(GPIO.BCM)
GPIO.setup(pin, GPIO.OUT)
GPIO.output(pin, GPIO.LOW)
print "GPIO pin ", pin, " low"
time.sleep(1)
GPIO.output(pin, GPIO.HIGH)
print "GPIO pin ", pin, " high"
Display More
Thanks g7ruh I haven't seen it myself for a couple of months, out of interest is your sound via the optical/analog or HDMI? do you use the wifi dongle or ethernet? Do you use the IR to control it with a remote? These are some of the things I've changed around recently.