-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Breaking change in the model (initializer). Removed all simXXX types aliases but simFloat that is aliased to double or float depending on the version (float <=4.4, double >4.5). Replaced - simGetVisionSensorCharImage with simGetVisionSensorImg - simSetInt32Parameter with simSetInt32Param (and similar) - simSetIntegerSignal with simSetInt32Signal - simGetObjectHandle with simGetObject Added support for `include` in CMakeLists.txt in addition to `libPlugin`
- Loading branch information
Showing
12 changed files
with
208 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,4 +41,5 @@ include/spdlog | |
coppeliaSim_plugin_debug | ||
linux_build | ||
xcode | ||
build* | ||
__pycache__ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Changelog | ||
|
||
## [Unreleased] | ||
|
||
### Added | ||
|
||
- Support for CoppeliaSim v4.5. The plugin supports now versions from 4.0 to 4.5. | ||
|
||
### Changed | ||
|
||
- The model was changed to support CoppeliaSim 4.5. In particular the initializer | ||
`simRobomaster.create` and `simRobomaster.create_{ep|s1}` now take the model handle as first argument, | ||
while previously they took the model index. When using older scenes with Robomasters, | ||
users need to update they robots to use the new initializer, | ||
even if they are using a previous version of CoppeliaSim. | ||
- The two scenes `playground_tof_{ep|s1}.ttt` were updated with the new robot models. | ||
|
||
### Known issues | ||
|
||
- The initial release Coppelia v4.5 has [a bug](https://forum.coppeliarobotics.com/viewtopic.php?p=38863) | ||
in the lua script of `simIK`. If you experience errors | ||
using the Robomaster gripper, add the following lines at the begin | ||
of `simIK.debugGroupIfNeeded` in `simIK.lua` | ||
```lua | ||
function simIK.debugGroupIfNeeded(ikEnv,ikGroup,debugFlags) | ||
if not _S.ikEnvs then | ||
_S.ikEnvs={} | ||
end | ||
... | ||
``` | ||
|
||
## [0.1] - 2023-04-05 | ||
|
||
Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.