Skip to content

Commit

Permalink
add support for pre-loaded robot objects and mjcf files; fix bug in p…
Browse files Browse the repository at this point in the history
…ypi installation
  • Loading branch information
justagist committed Aug 6, 2024
1 parent 0c8901e commit 3e2f3d9
Show file tree
Hide file tree
Showing 6 changed files with 165 additions and 439 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# CHANGELOG.md

## [0.1.3] - 2024-08-07

### Adds

- support using pre-loaded robot to create bulletrobot class
- utility tool for retrieving mjcf files from robot_descriptions.py
- (experimental): support for mjcf files in bulletrobot

### Fixes

- pypi installation does not work with conda dependencies; use pypi dependencies instead

## [0.1.2] - 2024-08-06

### Features
Expand Down
4 changes: 3 additions & 1 deletion examples/demo_task_space_control.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
import time
import numpy as np
from pybullet_robot.bullet_robot import BulletRobot
from pybullet_robot.utils.urdf_utils import get_urdf_from_awesome_robot_descriptions
from pybullet_robot.utils.robot_loader_utils import (
get_urdf_from_awesome_robot_descriptions,
)

from impedance_controllers import CartesianImpedanceController

Expand Down
Loading

0 comments on commit 3e2f3d9

Please sign in to comment.