All Projects → nullboundary → Ofxpjcontrol

nullboundary / Ofxpjcontrol

Openframeworks addon for projector control through a network, allows you to control PJLink Projectors, NEC, Christie, Epson, Barco, etc.

Labels

Projects that are alternatives of or similar to Ofxpjcontrol

Blender Osm
One click download and import of OpenStreetMap and terrain for Blender! Global coverage! Source code is in the branch 'release'.
Stars: ✭ 588 (+1681.82%)
Mutual labels:  addon
Freecad Geomatics Workbench
FreeCAD Geomatics Workbench
Stars: ✭ 17 (-48.48%)
Mutual labels:  addon
Refactored Cogs
A list of (mostly) moderator related cogs for Red-DiscordBot
Stars: ✭ 11 (-66.67%)
Mutual labels:  addon
Nighttab
A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.
Stars: ✭ 598 (+1712.12%)
Mutual labels:  addon
Ajour
A World of Warcraft addon manager written in Rust.
Stars: ✭ 803 (+2333.33%)
Mutual labels:  addon
Nakamori
Nakamori is Kodi addon that use Shoko (known as Japanese Media Manager (JMM)) Server as back-end for metadata information.
Stars: ✭ 24 (-27.27%)
Mutual labels:  addon
Storybook Addon Material Ui
Addon for storybook wich wrap material-ui components into MuiThemeProvider. 📃 This helps and simplifies development of material-ui based components.
Stars: ✭ 513 (+1454.55%)
Mutual labels:  addon
Hm email
A HomeMatic CCU Addon for sending Emails
Stars: ✭ 30 (-9.09%)
Mutual labels:  addon
Historyinthreads
Firefox addon: Show browsing history in threads. Search keywords the same way as in Firefox History.
Stars: ✭ 5 (-84.85%)
Mutual labels:  addon
Godot Command Palette
A quick file finder and command palette for the Godot game engine.
Stars: ✭ 27 (-18.18%)
Mutual labels:  addon
Ofxcv
Alternative approach to interfacing with OpenCv from openFrameworks.
Stars: ✭ 614 (+1760.61%)
Mutual labels:  addon
Weakauras2
World of Warcraft addon that provides a powerful framework to display customizable graphics on your screen.
Stars: ✭ 731 (+2115.15%)
Mutual labels:  addon
Masterpassword Firefox
masterpassword for Firefox
Stars: ✭ 24 (-27.27%)
Mutual labels:  addon
Cursebreaker
TUI/CLI addon updater for World of Warcraft.
Stars: ✭ 597 (+1709.09%)
Mutual labels:  addon
Latex4coreldraw
This is a addon for CorelDRAW. It allows to add and edit Latex equations or symbols easily.
Stars: ✭ 20 (-39.39%)
Mutual labels:  addon
Nest Access Control
Role and Attribute based Access Control for Nestjs 🔐
Stars: ✭ 562 (+1603.03%)
Mutual labels:  addon
Threef.js
three.js addon, to produce almost infinite many time-varying geometries / buffer geometries with functions (cylindrical coordinates)
Stars: ✭ 19 (-42.42%)
Mutual labels:  addon
Ember Cli Updater
ember-cli addon to help you update your ember-cli application or addon.
Stars: ✭ 32 (-3.03%)
Mutual labels:  addon
Mediaset Play Plugin.video.videomediaset
I programmi delle reti Mediaset dal sito Mediaset Play
Stars: ✭ 28 (-15.15%)
Mutual labels:  addon
Context Search
A Firefox WebExtension that displays a context menu, that searches for the selected text.
Stars: ✭ 26 (-21.21%)
Mutual labels:  addon

ofxPJControl

An openFrameworks addon to send commands to video projectors over a network

Supported Projectors

  • PJLink (most projectors)
  • NEC projector
  • CHRISTIE, SANYO and EPSON via raw string commands
  • PROJECTION DESIGN (Now BARCO)

Dependency

  • ofxNetwork core addon

PJLink Specification

http://pjlink.jbmia.or.jp/english/data/5-1_PJLink_eng_20131210.pdf

"PJLink enables central control of projectors manufactured by different vendors and projectors can be operated by a controller."


Method list:

	bool On(); //command to turn the projector on
	bool Off(); //command to turn the projector off
	bool sendPJLinkCommand(string command); //send any PJLink command to the projector
	void setup(string IP_add="192.168.0.100",int protocol=PJLINK_MODE, string password=""); //default
	void setProjectorType(int protocol); //NEC_MODE, PJLINK_MODE, etc
	void setProjectorIP(string IP_add); //the network IP of the projector
	void setProjectorPassword(string passwd); //password for PJLink authentication
	bool getProjectorStatus(); //return whether projector is on (true) or off (false)  
	void setProjectorPort(int port); //the network port of the projector
	bool sendCommand(string command); //send any string command to the projector without password authentication
	

Projector Mode list:

  PJLINK_MODE
  NEC_MODE
  CHRISTIE_MODE
  SANYO_MODE
  PJDESIGN_MODE

Example:

Step 1. in the testApp.h:

#include "ofxPJControl.h"	
ofxPJControl projector1;

Step 2. in the testApp.cpp:

//Your projectors IP, and if its not PJLINK try another mode. 
projector1.setup("192.168.1.281",PJLINK_MODE,"mypassword"); 
projector1.On();
projector1.Off(); 

Author

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].