npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

3dmouse-hid

v0.9.1

Published

Wrapper and tools for 3D mice

Downloads

19

Readme

3dmouse-hid

Use a 3D mouse as a web input device. Great for controlling robot end effectors.

Originally forked from webhid-space, with device support information taken from pyspacenavigator.

Usage

We have tested this code under Ubuntu 22.04. Note that WebHID is only supported by Chrome and Edge as of October 2023. You may experience issues using WebHID with Chromium in recent Ubuntu releases due to Snap isolation.

Connecting a 3D Mouse

Using (Ubuntu) Linux, in order to get access from user space, add the following, using the USB Vendor ID returned from lsusb to a udev rules file (e.g. /etc/udev/rules/50-3d-mouse.rules):

SUBSYSTEM=="usb", ATTRS{idVendor}=="046d", MODE:="0666", GROUP="input"

And run sudo udevadm control --reload-rules && sudo udevadm trigger

On other systems, this is not necessary.

Running the Included Demos

No build steps are required to run our included demos. Simply run a server using:

npm run test

Open localhost:8000/test in Chrome. Note WebHID is typically only available in HTTPS contexts.

Playing with the Visualization and Filters

You can test out the twist visualization using viz_test.html by opening http://localhost:8000/test/viz_test.html.

Testing with a Simulated UR5

We include a ROS2 Humble robot simulation to enable testing without a robot. You will need to install various UR ROS2 packages to use it:

sudo apt install ros-humble-ur-description ros-humble-controller-manager ros-humble-ur-moveit-config ros-humble-gazebo-ros-pkgs ros-humble-rosbridge-suite ros-humble-ros2-control ros-humble-position-controllers

Our main launch file calls launch files created by Universal Robotics for placing their robot model in a Gazebo simulation, and also homes the robot and configures camera views:

cd 3dmouse-hid/test/ros && ros2 launch ur_teleop_sim.launch.py

You should see two instances of RViz launch (which you may close). MoveIt 2 Servo, the package which provides the end-effector twist controller, will be initialized and activated in the final step of the launch file, after which you can confirm that servo is running:

ros2 topic pub /servo_node/delta_twist_cmds geometry_msgs/msg/TwistStamped "{ header: { stamp: 'now', 'frame_id': 'tool0' },  twist: {linear: {x: -0.1}, angular: {  }}}" -r 10

Now you should be able to open http://localhost:8000/test/ and follow the interface instructions to teleoperate the simulated robot.

Debugging WebHID Issues

Try using nondebug's WebHID Explorer to connect to the device. If the connection fails, take a look at chrome://device-log/ to see why.