File size: 24,487 Bytes
ba08b5d 0185a1a ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 0185a1a ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 0185a1a d0270ec cbd9797 ad1a144 cbd9797 0185a1a cbd9797 ad1a144 cbd9797 ad1a144 0185a1a ba08b5d cbd9797 ba08b5d ad1a144 ba08b5d ad1a144 ba08b5d ad1a144 ba08b5d cd2b5b8 cbd9797 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cd2b5b8 d00ecce 39dd3bf cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 0185a1a 39dd3bf cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 cbd9797 ad1a144 39dd3bf cbd9797 ad1a144 ba08b5d ad1a144 cbd9797 ad1a144 d00ecce ad1a144 d00ecce ad1a144 cbd9797 3a9961d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 |
import gradio as gr
from client import CobotController
from utils import get_credentials
import json
import threading
import time
from collections import deque
import namesgenerator
import logging
import os
import datetime
# Set up logging
log_dir = "logs"
if not os.path.exists(log_dir):
os.makedirs(log_dir)
log_filename = os.path.join(log_dir, f"cobot_app_{datetime.datetime.now().strftime('%Y%m%d_%H%M%S')}.log")
# Configure logging
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[
logging.FileHandler(log_filename),
logging.StreamHandler()
]
)
logger = logging.getLogger("cobot_app")
logger.info("Application starting")
# Queue system setup
SESSION_TIME = 120
class QueueSystem:
def __init__(self):
self.queue = deque()
self.current_user = None
self.session_start_time = None
self.lock = threading.Lock()
logger.info("Queue system initialized")
def enqueue_user(self, user_id):
with self.lock:
if user_id not in self.queue and user_id != self.current_user:
self.queue.append(user_id)
logger.info(f"User {user_id} added to queue. Queue size: {len(self.queue)}")
else:
logger.debug(f"User {user_id} already in queue or is current user")
def dequeue_user(self):
with self.lock:
if self.queue:
user = self.queue.popleft()
logger.info(f"User {user} dequeued. Queue size: {len(self.queue)}")
return user
logger.debug("Attempted to dequeue from empty queue")
return None
def get_queue_info(self, user_id):
with self.lock:
if user_id == self.current_user:
remaining_time = max(0, SESSION_TIME - (time.time() - self.session_start_time))
logger.debug(f"User {user_id} is current user. Remaining time: {remaining_time:.2f}s")
return 0, remaining_time
elif user_id in self.queue:
position = list(self.queue).index(user_id) + 1
if self.session_start_time:
wait_time = (position - 1) * SESSION_TIME + max(0, SESSION_TIME - (time.time() - self.session_start_time))
else:
wait_time = position * SESSION_TIME
logger.debug(f"User {user_id} is in position {position}. Wait time: {wait_time:.2f}s")
return position, wait_time
else:
logger.debug(f"User {user_id} not found in queue")
return None, None
def start_session(self, user_id):
with self.lock:
if self.current_user is None:
self.current_user = user_id
self.session_start_time = time.time()
logger.info(f"Session started for user {user_id}")
return True
logger.debug(f"Cannot start session for {user_id}, current user is {self.current_user}")
return False
def end_session(self):
with self.lock:
if self.current_user and time.time() - self.session_start_time >= SESSION_TIME:
logger.info(f"Session ended for user {self.current_user}")
self.current_user = None
self.session_start_time = None
return True
return False
queue_system = QueueSystem()
def queue_size():
queue_size = len(queue_system.queue)
logger.debug(f"Queue size: {queue_size}")
return f"There are {queue_size} people in the queue."
# Background timer thread to end session after SESSION_TIME
def background_timer():
logger.info("Background timer thread started")
while True:
time.sleep(1)
if queue_system.end_session():
next_user = queue_system.dequeue_user()
if next_user:
logger.info(f"Starting session for next user: {next_user}")
queue_system.start_session(next_user)
timer_thread = threading.Thread(target=background_timer, daemon=True)
timer_thread.start()
user, pwd, host, endpoint, port = get_credentials(False)
client = CobotController(user, pwd, host, port, endpoint)
logger.info(f"Connected to cobot at {host}:{port}{endpoint}")
CSS = """
#col {
background-color: #161624;
padding: 16px;
border-radius: 8px;
}
#nogaprow {
gap: 0px !important;
}
#nogapcol {
padding: 0px !important;
border: none !important;
box-shadow: none !important;
}
"""
"""
checks the user position on the queue and returns a message along with
whether the command should be executed.
"""
def authenticate_user(user_id):
logger.debug(f"Authenticating user: {user_id}")
if queue_system.current_user is None:
queue_system.start_session(user_id)
queue_system.enqueue_user(user_id)
position, wait_time = queue_system.get_queue_info(user_id)
if position == 0:
remaining_time_msg = f"Your turn!\nTime remaining: {wait_time:.2f} seconds."
logger.debug(f"User {user_id} authenticated and is current user")
return True, remaining_time_msg
elif position is not None:
if position == 1:
wait_msg = f"You are next!\nWait time: {wait_time:.2f} seconds."
else:
wait_msg = f"There are {position - 1} people ahead of you in the queue.\nWait time: {wait_time:.2f} seconds."
logger.debug(f"User {user_id} authenticated but must wait in queue")
return False, wait_msg
else:
logger.warning(f"Authentication failed for user {user_id}")
return False, "Error: You are not in the queue."
def enter_queue(user_id):
logger.info(f"User {user_id} entering queue")
_, msg = authenticate_user(user_id)
return msg
def query_angles(user_id):
logger.info(f"User {user_id} querying angles")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.get_angles()
resp["command"] = "query/angles"
logger.info(f"Angles query successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error querying angles: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "query/angles"}, indent=4), queue_status_msg
else:
logger.debug(f"Angles query blocked, user {user_id} not authorized")
return None, queue_status_msg
def query_coords(user_id):
logger.info(f"User {user_id} querying coordinates")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.get_coords()
resp["command"] = "query/coords"
logger.info(f"Coordinates query successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error querying coordinates: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "query/coords"}, indent=4), queue_status_msg
else:
logger.debug(f"Coordinates query blocked, user {user_id} not authorized")
return None, queue_status_msg
def query_gripper(user_id):
logger.info(f"User {user_id} querying gripper")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.get_gripper_value()
resp["command"] = "query/gripper"
logger.info(f"Gripper query successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error querying gripper: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "query/gripper"}, indent=4), queue_status_msg
else:
logger.debug(f"Gripper query blocked, user {user_id} not authorized")
return None, queue_status_msg
def query_camera(user_id):
logger.info(f"User {user_id} querying camera")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.get_camera()
resp["command"] = "query/camera"
if not resp["success"]:
logger.warning(f"Camera query returned error: {resp}")
return json.dumps(resp, indent=4), None, queue_status_msg
img = resp.pop("image")
logger.info("Camera query successful, image retrieved")
return json.dumps(resp, indent=4), gr.Image(visible=True, value=img), queue_status_msg
except Exception as e:
logger.error(f"Error querying camera: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "query/camera"}, indent=4), None, queue_status_msg
else:
logger.debug(f"Camera query blocked, user {user_id} not authorized")
return None, None, queue_status_msg
def control_angles(user_id, angle0, angle1, angle2, angle3, angle4, angle5, movement_speed):
angles = [angle0, angle1, angle2, angle3, angle4, angle5]
logger.info(f"User {user_id} setting angles to {angles} with speed {movement_speed}")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.send_angles(angles, movement_speed)
resp["command"] = "control/angles"
logger.info(f"Angle control successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error controlling angles: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "control/angles"}, indent=4), queue_status_msg
else:
logger.debug(f"Angle control blocked, user {user_id} not authorized")
return None, queue_status_msg
def control_coords(user_id, x, y, z, roll, pitch, yaw, movement_speed):
coords = [x, y, z, roll, pitch, yaw]
logger.info(f"User {user_id} setting coordinates to {coords} with speed {movement_speed}")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.send_coords(coords, movement_speed)
resp["command"] = "control/coords"
logger.info(f"Coordinate control successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error controlling coordinates: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "control/coords"}, indent=4), queue_status_msg
else:
logger.debug(f"Coordinate control blocked, user {user_id} not authorized")
return None, queue_status_msg
def control_gripper(user_id, gripper_value, movement_speed):
logger.info(f"User {user_id} setting gripper to {gripper_value} with speed {movement_speed}")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.send_gripper_value(gripper_value, movement_speed)
resp["command"] = "control/gripper"
logger.info(f"Gripper control successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error controlling gripper: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "control/gripper"}, indent=4), queue_status_msg
else:
logger.debug(f"Gripper control blocked, user {user_id} not authorized")
return None, queue_status_msg
def release_servos(user_id):
logger.info(f"User {user_id} requesting to release all servos")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp = client.release_all_servos()
resp["command"] = "control/release_servos"
logger.info(f"Release servos command successful: {resp}")
return json.dumps(resp, indent=4), queue_status_msg
except Exception as e:
logger.error(f"Error releasing servos: {str(e)}", exc_info=True)
return json.dumps({"success": False, "error": str(e), "command": "control/release_servos"}, indent=4), queue_status_msg
else:
logger.debug(f"Release servos command blocked, user {user_id} not authorized")
return None, queue_status_msg
def set_coords_to_current(user_id):
logger.info(f"User {user_id} requesting to set coordinates to current position")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp, _ = query_coords(user_id)
resp = json.loads(resp)
if not resp["success"]:
logger.warning(f"Failed to get current coordinates: {resp}")
return None, None, None, None, None, None, queue_status_msg
logger.info(f"Successfully set coordinates to current: {resp['coords']}")
return resp["coords"] + [queue_status_msg]
except Exception as e:
logger.error(f"Error setting coordinates to current: {str(e)}", exc_info=True)
return None, None, None, None, None, None, queue_status_msg
else:
logger.debug(f"Set coordinates to current blocked, user {user_id} not authorized")
return None, None, None, None, None, None, queue_status_msg
def set_angles_to_current(user_id):
logger.info(f"User {user_id} requesting to set angles to current position")
to_execute, queue_status_msg = authenticate_user(user_id)
if to_execute:
try:
resp, _ = query_angles(user_id)
resp = json.loads(resp)
if not resp["success"]:
logger.warning(f"Failed to get current angles: {resp}")
return None, None, None, None, None, None, queue_status_msg
logger.info(f"Successfully set angles to current: {resp['angles']}")
return resp["angles"] + [queue_status_msg]
except Exception as e:
logger.error(f"Error setting angles to current: {str(e)}", exc_info=True)
return None, None, None, None, None, None, queue_status_msg
else:
logger.debug(f"Set angles to current blocked, user {user_id} not authorized")
return None, None, None, None, None, None, queue_status_msg
def reset():
logger.debug("Resetting control values")
return 0, 0, 0, 0, 0, 0, 50
with gr.Blocks(css=CSS) as app:
gr.Markdown("# MyCobot 280pi MQTT Control Demo")
gr.HTML('''
<a href="https://colab.research.google.com/github/AccelerationConsortium/ac-training-lab/blob/cobot-usage-docs/src/ac_training_lab/cobot280pi/gradio-client-demo.ipynb" target="_blank">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="117" height="20"><linearGradient id="b" x2="0" y2="100%"><stop offset="0" stop-color="#bbb" stop-opacity=".1"/><stop offset="1" stop-opacity=".1"/></linearGradient><clipPath id="a"><rect width="117" height="20" rx="3" fill="#fff"/></clipPath><g clip-path="url(#a)"><path fill="#555" d="M0 0h30v20H0z"/><path fill="#007ec6" d="M30 0h87v20H30z"/><path fill="url(#b)" d="M0 0h117v20H0z"/></g><g fill="#fff" text-anchor="middle" font-family="DejaVu Sans,Verdana,Geneva,sans-serif" font-size="110"><svg x="4px" y="0px" width="22px" height="20px" viewBox="-2 0 28 24" style="background-color: #fff;border-radius: 1px;"><path style="fill:#e8710a;" d="M1.977,16.77c-2.667-2.277-2.605-7.079,0-9.357C2.919,8.057,3.522,9.075,4.49,9.691c-1.152,1.6-1.146,3.201-0.004,4.803C3.522,15.111,2.918,16.126,1.977,16.77z"/><path style="fill:#f9ab00;" d="M12.257,17.114c-1.767-1.633-2.485-3.658-2.118-6.02c0.451-2.91,2.139-4.893,4.946-5.678c2.565-0.718,4.964-0.217,6.878,1.819c-0.884,0.743-1.707,1.547-2.434,2.446C18.488,8.827,17.319,8.435,16,8.856c-2.404,0.767-3.046,3.241-1.494,5.644c-0.241,0.275-0.493,0.541-0.721,0.826C13.295,15.939,12.511,16.3,12.257,17.114z"/><path style="fill:#e8710a;" d="M19.529,9.682c0.727-0.899,1.55-1.703,2.434-2.446c2.703,2.783,2.701,7.031-0.005,9.764c-2.648,2.674-6.936,2.725-9.701,0.115c0.254-0.814,1.038-1.175,1.528-1.788c0.228-0.285,0.48-0.552,0.721-0.826c1.053,0.916,2.254,1.268,3.6,0.83C20.502,14.551,21.151,11.927,19.529,9.682z"/><path style="fill:#f9ab00;" d="M4.49,9.691C3.522,9.075,2.919,8.057,1.977,7.413c2.209-2.398,5.721-2.942,8.476-1.355c0.555,0.32,0.719,0.606,0.285,1.128c-0.157,0.188-0.258,0.422-0.391,0.631c-0.299,0.47-0.509,1.067-0.929,1.371C8.933,9.539,8.523,8.847,8.021,8.746C6.673,8.475,5.509,8.787,4.49,9.691z"/><path style="fill:#f9ab00;" d="M1.977,16.77c0.941-0.644,1.545-1.659,2.509-2.277c1.373,1.152,2.85,1.433,4.45,0.499c0.332-0.194,0.503-0.088,0.673,0.19c0.386,0.635,0.753,1.285,1.181,1.89c0.34,0.48,0.222,0.715-0.253,1.006C7.84,19.73,4.205,19.188,1.977,16.77z"/></svg><text x="245" y="140" transform="scale(.1)" textLength="30"> </text><text x="725" y="150" fill="#010101" fill-opacity=".3" transform="scale(.1)" textLength="770">Open in Colab</text><text x="725" y="140" transform="scale(.1)" textLength="770">Open in Colab</text></g> </svg>
</a>
''')
gr.Markdown("This is a demo that uses the MQTT protocol to communicate with the MyCobot 280pi over the internet. You can remotely send commands to the cobot and query it's current status.")
with gr.Row():
with gr.Column():
user_id = gr.Textbox(label="User ID", info="Enter a unique user id of your choice or take note of the automatically generated user id. This user id will be placed into a queue to give you access to the cobot, so make sure you remember it!")
enter_queue_button = gr.Button("Join queue")
with gr.Column():
status_text = gr.Textbox(label="Queue status", value="", interactive=False, lines=5)
with gr.Row():
# QUERY PANEL
with gr.Column(elem_id="col"):
gr.Markdown("## Query")
gr.Markdown("Use buttons on this panel to query the current status of the cobot, including information like joint angles, coordinates, gripper state and what the onboard camera sees.")
angle_query_button = gr.Button("Query Angles")
coord_query_button = gr.Button("Query Coordinates")
gripper_query_button = gr.Button("Query Gripper state")
camera_query_button = gr.Button("Query Camera")
# GRIPPER PANEL
with gr.Column(elem_id="col"):
gr.Markdown("## Gripper Control")
gr.Markdown("Use this panel to control the gripper of the cobot.")
gripper_value = gr.Slider(minimum=0.0, maximum=100.0, step=1.0, label="Gripper value")
speed_gripper = gr.Slider(value=50.0, minimum=0.0, maximum=100.0, step=1.0, label="Movement speed")
gripper_control_button = gr.Button("Send gripper command")
# Add Release Servos section
with gr.Row():
with gr.Column(elem_id="col"):
gr.Markdown("## Release Servos")
gr.Markdown("Use this button to release all servos, allowing the robot arm to be moved freely by hand.")
release_servos_button = gr.Button("Release All Servos", variant="primary")
with gr.Row():
# ANGLE PANEL
with gr.Column(elem_id="col"):
gr.Markdown("## Angle Control")
gr.Markdown("Use this panel to control the joint angles of the cobot. Each angle corresponds to one of the 6 joints on the cobot.")
angle_set_button = gr.Button("Set to current angles")
reset_angle_button = gr.Button("Reset angles")
with gr.Row(elem_id="nogaprow"):
with gr.Column(elem_id="nogapcol"):
angle1 = gr.Slider(value=0.0, label="Angle 1", step=1.0, minimum=-168, maximum=168)
angle3 = gr.Slider(value=0.0, label="Angle 3", step=1.0, minimum=-135, maximum=135)
angle5 = gr.Slider(value=0.0, label="Angle 5", step=1.0, minimum=-150, maximum=150)
with gr.Column(elem_id="nogapcol"):
angle2 = gr.Slider(value=0.0, label="Angle 2", step=1.0, minimum=-145, maximum=145)
angle4 = gr.Slider(value=0.0, label="Angle 4", step=1.0, minimum=-165, maximum=165)
angle6 = gr.Slider(value=0.0, label="Angle 6", step=1.0, minimum=-180, maximum=180)
speed_angles = gr.Slider(value=50.0, minimum=0.0, maximum=100.0, step=1.0, label="Movement speed")
angle_control_button = gr.Button("Send angle command")
# COORD PANEL
with gr.Column(elem_id="col"):
gr.Markdown("## Coordinate Control")
gr.Markdown("Use this panel to control the joint coordinates of the cobot head. The angles are in [6-DoF format](https://en.wikipedia.org/wiki/Six_degrees_of_freedom).")
coord_set_button = gr.Button("Set to current coords")
reset_coords_button = gr.Button("Reset coordinates")
with gr.Row(elem_id="nogaprow"):
with gr.Column(elem_id="nogapcol"):
xcoord = gr.Slider(value=0.0, label="X coordinate", step=1.0, minimum=-350, maximum=350)
ycoord = gr.Slider(value=0.0, label="Y coordinate", step=1.0, minimum=-350, maximum=350)
zcoord = gr.Slider(value=0.0, label="Z coordinate", step=1.0, minimum=-70, maximum=523)
with gr.Column(elem_id="nogapcol"):
roll = gr.Slider(value=0.0, label="Roll", step=1.0, minimum=-180, maximum=180)
pitch = gr.Slider(value=0.0, label="Pitch", step=1.0, minimum=-180, maximum=180)
yaw = gr.Slider(value=0.0, label="Yaw", step=1.0, minimum=-180, maximum=180)
speed_coords = gr.Slider(value=50.0, minimum=0.0, maximum=100.0, step=1.0, label="Movement speed")
coord_control_button = gr.Button("Send coordinate command")
response = gr.Textbox(label="Response")
response_image = gr.Image(visible=False)
# Queue-aware event handling
angle_query_button.click(
query_angles,
inputs = [user_id],
outputs = [response, status_text]
)
coord_query_button.click(
query_coords,
inputs = [user_id],
outputs = [response, status_text]
)
gripper_query_button.click(
query_gripper,
inputs = [user_id],
outputs = [response, status_text]
)
camera_query_button.click(
query_camera,
inputs = [user_id],
outputs = [response, response_image, status_text]
)
gripper_control_button.click(
control_gripper,
inputs = [user_id, gripper_value, speed_gripper],
outputs = [response, status_text]
)
angle_control_button.click(
control_angles,
inputs = [user_id, angle1, angle2, angle3, angle4, angle5, angle6, speed_angles],
outputs = [response, status_text]
)
coord_control_button.click(
control_coords,
inputs = [user_id, xcoord, ycoord, zcoord, roll, pitch, yaw, speed_coords],
outputs = [response, status_text]
)
coord_set_button.click(
set_coords_to_current,
inputs = [user_id],
outputs = [xcoord, ycoord, zcoord, roll, pitch, yaw, status_text]
)
angle_set_button.click(
set_angles_to_current,
inputs = [user_id],
outputs = [angle1, angle2, angle3, angle4, angle5, angle6, status_text]
)
reset_angle_button.click(
reset,
outputs = [angle1, angle2, angle3, angle4, angle5, angle6, speed_angles]
)
reset_coords_button.click(
reset,
outputs = [xcoord, ycoord, zcoord, roll, pitch, yaw, speed_coords]
)
enter_queue_button.click(
enter_queue,
inputs = [user_id],
outputs = [status_text]
)
# Add event handler for the release servos button
release_servos_button.click(
release_servos,
inputs = [user_id],
outputs = [response, status_text]
)
app.load(
namesgenerator.get_random_name,
outputs=[user_id]
)
app.load(
queue_size,
outputs=[status_text]
)
logger.info("Starting Gradio app")
app.queue(default_concurrency_limit=1, max_size=100)
app.launch() |