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

pimatic-serial-ivisions

v0.0.2

Published

Send commands to iVisions projection screens and projector lifts

Downloads

5

Readme

pimatic-serial-ivisions

Pimatic Plugin that supports sending commands to iVisisons projector screens and projector lifts over the RS485 interface. I use a cheap USB RS485 controler from eBay to talk to the projector screen.

The iVisions projector screen seems to be a rebranded screen as I found it only to be available in the webshop where I bought is. Some Googling around proved me right, as the protocol is used in more devices.

This are the protocol details: 2400 baud 8N1 up command : 0xFF 0xAA 0xEE 0xEE 0xDD down command: 0xFF 0xAA 0xEE 0xEE 0xEE stop command: 0xFF 0xAA 0xEE 0xEE 0xCC

Known to work: iVisions Electro M Series

Not tested but use te same protcol according to the documentation: iVisions Electro L/XL/Pro/HD Series iVisions PL Series beamer lift Elite Screens XY Screens

Please let me know if your projector screen is also supported by this plugin so I can improve the overview of supportd devices.

Configuration

If you don't have the serial plugin add it to the plugin section:

    {
      "plugin": "serial",
      active": true
    },

Then add the serial-ivisions plugin to the plugin section:

    {
      "plugin": "serial-ivisions",
      active": true
    }

Then add the device entry for your device into the devices section:

    {
      "id": "serial-ivisions-screen",
      "class": "SerialIVisionsController",
      "name": "Projector Screen",
      "serialport": "/dev/ttyUSB0"
    }

Then you can add the items into the mobile frontend

pimatic-serial-ivisions