Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Simon Alibert <simon.alibert@huggingface.co> Co-authored-by: Simon Alibert <75076266+aliberts@users.noreply.github.com>
99 lines
3.3 KiB
Python
Executable File
99 lines
3.3 KiB
Python
Executable File
# Copyright 2024 The HuggingFace Inc. team. All rights reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
import logging
|
|
import time
|
|
|
|
from lerobot.common.datasets.lerobot_dataset import LeRobotDataset
|
|
from lerobot.common.robots.lekiwi.config_lekiwi import LeKiwiClientConfig
|
|
from lerobot.common.robots.lekiwi.lekiwi_client import OBS_STATE, LeKiwiClient
|
|
from lerobot.common.teleoperators.keyboard import KeyboardTeleop, KeyboardTeleopConfig
|
|
from lerobot.common.teleoperators.so100 import SO100Leader, SO100LeaderConfig
|
|
|
|
NB_CYCLES_CLIENT_CONNECTION = 250
|
|
|
|
|
|
def main():
|
|
logging.info("Configuring Teleop Devices")
|
|
leader_arm_config = SO100LeaderConfig(port="/dev/tty.usbmodem58760434171")
|
|
leader_arm = SO100Leader(leader_arm_config)
|
|
|
|
keyboard_config = KeyboardTeleopConfig()
|
|
keyboard = KeyboardTeleop(keyboard_config)
|
|
|
|
logging.info("Configuring LeKiwi Client")
|
|
robot_config = LeKiwiClientConfig(remote_ip="192.0.2.42", id="lekiwi")
|
|
robot = LeKiwiClient(robot_config)
|
|
|
|
logging.info("Creating LeRobot Dataset")
|
|
|
|
# The observations that we get are expected to be in body frame (x,y,theta)
|
|
obs_dict = {f"{OBS_STATE}." + key: value for key, value in robot.state_feature.items()}
|
|
# The actions that we send are expected to be in wheel frame (motor encoders)
|
|
act_dict = {"action." + key: value for key, value in robot.action_feature.items()}
|
|
|
|
features_dict = {
|
|
**act_dict,
|
|
**obs_dict,
|
|
**robot.camera_features,
|
|
}
|
|
dataset = LeRobotDataset.create(
|
|
repo_id="user/lekiwi" + str(int(time.time())),
|
|
fps=10,
|
|
features=features_dict,
|
|
)
|
|
|
|
logging.info("Connecting Teleop Devices")
|
|
leader_arm.connect()
|
|
keyboard.connect()
|
|
|
|
logging.info("Connecting remote LeKiwi")
|
|
robot.connect()
|
|
|
|
if not robot.is_connected or not leader_arm.is_connected or not keyboard.is_connected:
|
|
logging.error("Failed to connect to all devices")
|
|
return
|
|
|
|
logging.info("Starting LeKiwi teleoperation")
|
|
i = 0
|
|
while i < NB_CYCLES_CLIENT_CONNECTION:
|
|
arm_action = leader_arm.get_action()
|
|
base_action = keyboard.get_action()
|
|
action = {**arm_action, **base_action} if len(base_action) > 0 else arm_action
|
|
|
|
action_sent = robot.send_action(action)
|
|
observation = robot.get_observation()
|
|
|
|
frame = {**action_sent, **observation}
|
|
frame.update({"task": "Dummy Example Task Dataset"})
|
|
|
|
logging.info("Saved a frame into the dataset")
|
|
dataset.add_frame(frame)
|
|
i += 1
|
|
|
|
logging.info("Disconnecting Teleop Devices and LeKiwi Client")
|
|
robot.disconnect()
|
|
leader_arm.disconnect()
|
|
keyboard.disconnect()
|
|
|
|
logging.info("Uploading dataset to the hub")
|
|
dataset.save_episode()
|
|
dataset.push_to_hub()
|
|
|
|
logging.info("Finished LeKiwi cleanly")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|