How to install EasyIoT server at OSMC distribution (Debian with XBMC)?
At the end I would like to run this parallel with default OSMC services in background ..
I connected NRF24L01 as shown at
iot-playground.com/3-easyiot-server-installation
. Hardware part is double checked wiring.
SPI is enabled by adding dtparam=spi=on to config.txt.
SSL certificate is not used.
Easyiot_v0_9.zip is copyed to /home/easyiot
When I run sudo mono EasyIoT.exe I have two problems:
1) Looks I have problem with starting server, because on device default IP address there is already running default web server by OSMC (remote control, etc.). What to do with this?
It is same when I run it as service as shown at
iot-playground.com/4-running-easyiot-server-as-service
2) When server is started, there is message at the end "Check wires". Why?
Should I enable GPIO's on OSMC? I tried to do it like this:
apt-get update
apt-get install -y python-dev
apt-get install -y python-pip
easy_install -b /home/osmc -U distribute
sudo apt-getupdate
sudo apt-get install build-essential
export ARCH=arm
export CROSS_COMPILE=/usr/bin/
sudo pip install rpi.gpio
But still have "check wires" error ..
Thanks for all advices ..