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

serial-servo-control

v0.1.5

Published

Serial Servo Controller (SSC)

Downloads

25

Readme

Serial Servo Controller (SSC)

Build Status Version dependencies Status devDependencies Status Downloads MIT License

The main objective of this repository (module), it is compile and have in only one place all the imformation required to use a SSC from computer, like design, software and other kind of things. also the propouse it's have code to manage servos.

TODOs

- Improve events management

- High level commands configuration &&
# Example
const robot = new Robot("commands.yaml");
robot.do('move-arm');
robot.do('stand-up');

## When commands.yaml is
defaults:
  time: 0
commands:
  move-arm: sequence of actions ... to-be-define maybe same to key-frames.json
  stand-up: sequence of actions ...
  ...

# yep, you can configure with a file a robot and this provides high level commands

Draft - Video Tutorial

https://www.youtube.com/watch?v=YV9r7CbM9Zc

CP210x USB to UART Bridge Virtual COM Port (VCP) Drivers

Install this is required to have a way to control the SSC from computer https://www.silabs.com/products/mcu/Pages/USBtoUARTBridgeVCPDrivers.aspx

How Can I use this?

Install

$ npm i --global serial-servo-control

Show available devices (Serial Ports)

$ ssc devices

Show available examples

$ ssc list

Execute examples

$ ssc run open
$ ssc run interactive
$ ssc run sequence --input key-frames.json # JSON OR YAML files
# Sequence YAML File Example
# First executes pin "0" to pwm "500", after "2000" milliseconds from start
# Second executes pin "0" to pwm "2500" and pin "1" to pwd "500",
# after "4000" milliseconds from previus step
---
  defaults:
    time: 2000
  keyframes:
    -
      time: 2000
      actions:
        0: 500
    -
      time: 4000
      actions:
        0: 2500
        1: 500

Diagram

Serial Servo Controller

Robots that use SSC

Robo-Soul CR-6 Hexapod Robtics Six-legged 18DOF Spider Robot aliexpress

Hexapod

18DOF Aluminium Hexapod Spider 6Legs Robot Kit w/MG996R Servos ebay

Hexapod Spider

9DOF LTR-4 Turtle Robot Four Feet Frame Kits + LD-2015 Servo aliexpress

Turtle

6DOF Aluminium Clamp Claw Mount kit Mechanical Robotic Arm+Servo ebay

Arm

Contributions

Help me !!! we can create a great module. email me to sync ([email protected]) and let's do it, we can have a good module working together T^T)9

We want you for this Project