19 lines
572 B
Bash
Executable File
19 lines
572 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# RoboCommander - Jibo Robot Direct Connection Launcher
|
|
# Bypasses portal.jibo.com and connects directly to robot
|
|
|
|
export JIBO_BYPASS_PORTAL=1
|
|
export JIBO_OFFLINE_IP="192.168.1.15"
|
|
export JIBO_OFFLINE_SERIALS="coral-watt-serrano-woven"
|
|
export JIBO_OFFLINE_SKIP_TLS=1
|
|
# Use self-signed client certificate for TLS client auth
|
|
export JIBO_OFFLINE_CERT_PATH="/home/kevin/jiboauth/jibo-client.crt"
|
|
export JIBO_OFFLINE_KEY_PATH="/home/kevin/jiboauth/jibo-client.key"
|
|
|
|
# Launch the Electron app
|
|
cd ~/Documents/RoboCommander
|
|
./node_modules/electron/dist/electron .
|
|
|
|
|