cobot280pi / app.py
gursi26's picture
changes
2182a6b
raw
history blame
269 Bytes
import streamlit as st
from utils import *
from client import CobotController
render_log_window()
user_id = get_user_id()
user, passwd, host, endpoint, port = get_credentials(False)
client = CobotController(user, passwd, host, port, endpoint, user_id)
refresh_once()