CuBox-i1 OpenELEC preloaded
Big campaign announcement from PetapicoShop, an official dealer of SolidRun. Media player Kodi is a popular application as a music/video player.
SolidRun's CuBox-i has been well accepted as a high resolution music server and used as easy but tough Linux servers. CuBox-i1 is outstanding in cost performance, it is in a compact enclosure, WiFi can be used, there is an infrared receiving port on the front, and TV remote control can be used so it can be said that it is the most suitable model as an OpenELEC player . On the security side PC can not watch the video site with confidence Today, the existence which can be used safely these days is grateful. Setting for CuBox-i1 CuBox-i1 OpenELEC preloaded model include a WiFi USB dongle (TELEC certified). System> OpenELEC> Connection> [Select SSD of Wi-Fi to be connected]> Connection> [Enter Wi-Fi encryption key] and press "Finish". (You can use the mouse by connecting the mouse to the USB port) System> OpenELEC> Network> NTPServers NTP server providing Japan Standard Time is good for NTP server. Ntp1.jst.mfeed.ad.jp Ntp.nict.jp Ntp-b2.nict.go.jp This is basically the initial setup required. CuBox-i have two audio outputs. System> Settings> Audio Hardware As a default it is set to HDMI but is possible to set to SPDI/F. When you enter into the music/video menu, you will find no add on selected. Music (video / image)> Add-on By selecting "get more ...", available add-ons will be listed. Clicking "install" new add-on will be downloaded and installed. CuBox-i have SATA interface for additional hard drive. video/music can be stored this local device as well as NAS on your network. For detail manual for OpenELEC, visit http://openelec.tv/
REMOTE -- MUST ITEM FOR TV-like USAGE
SSH into openelec with root/openelec ( http://wiki.openelec.tv/index.php/Ssh_commands )
type (line by line)
systemctl stop eventlircd.service
systemctl stop xbmc.service
ir-keytable -p NEC,RC-5,RC-6
ir-keytable -c
ir-keytable -t
the -t command will show your input signals of your remote - something like this:
1419988524.071696: event type EV_SYN(0x00).
1419988524.082907: event type EV_MSC(0x04): scancode = 0x01
the scancode = 0x01 is what u need.
push all remote buttons from top on your remote - keep in mind which scancode refers to which button. (to exit the -t command press ctrl+x)
copy the -t results into a text document
1419988524.071696: event type EV_SYN(0x00).
1419988524.082907: event type EV_MSC(0x04): scancode = 0x01
1419988524.071696: event type EV_SYN(0x00).
1419988524.082907: event type EV_MSC(0x04): scancode = 0x02
1419988524.071696: event type EV_SYN(0x00).
1419988524.082907: event type EV_MSC(0x04): scancode = 0x03
1419988524.071696: event type EV_SYN(0x00).
1419988524.082907: event type EV_MSC(0x04): scancode = 0x04
...
and clean it like this
0x01
0x02
0x03
0x04
0x05
0x06
0x07
0x08
0x09
0x12
....
now add the kodi function behind each scancode, like this:
0x01 KEY_NUMERIC_1
0x02 KEY_NUMERIC_2
0x03 KEY_NUMERIC_3
0x04 KEY_NUMERIC_4
0x05 KEY_NUMERIC_5
0x06 KEY_NUMERIC_6
0x07 KEY_NUMERIC_7
0x08 KEY_NUMERIC_8
0x09 KEY_NUMERIC_9
0x12 KEY_INFO
0x00 KEY_NUMERIC_0
0x2d KEY_SUBTITLE
0x20 KEY_UP
0x11 KEY_LEFT
0x0d KEY_ENTER
0x10 KEY_RIGHT
0x21 KEY_DOWN
0x26 KEY_R
0x17 KEY_PLAY
0x27 KEY_F
0x0b KEY_STOP
0x16 KEY_PAUSE
0x0c KEY_BACKSPACE
now type
nano /storage/.config/myremote
paste the content of your text file,save and close file (ctrl+o -> enter & ctrl+x and y)
now type
nano /storage/.config/autostart.sh
insert
save and close file (ctrl+o -> enter & ctrl+x and y)
change file permissions
chmod a+x /storage/.config/autostart.sh
now type
reboot
r-keytable -c -p NEC,RC-5,RC-6,JVC,SONY,LIRC,OTHER -w
/storage/.config/myremot