https://github.com/cyphunk/networkgamma
A silly command line tool for OSX that accepts r,g,b gamma thresholds from the network. hacked up for an Interaction Design concept. It took a good bit of digging in sporadic related code i could find and obscure documentation to figure out how to access the Gamma API so leaving this here just incase someone needs it for reference.
https://github.com/cyphunk/networkgamma
Last synced: 8 months ago
JSON representation
A silly command line tool for OSX that accepts r,g,b gamma thresholds from the network. hacked up for an Interaction Design concept. It took a good bit of digging in sporadic related code i could find and obscure documentation to figure out how to access the Gamma API so leaving this here just incase someone needs it for reference.
- Host: GitHub
- URL: https://github.com/cyphunk/networkgamma
- Owner: cyphunk
- Created: 2011-09-27T11:29:48.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2011-09-29T06:36:09.000Z (over 14 years ago)
- Last Synced: 2025-03-03T02:22:25.926Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 2.17 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
This is a small OSX command line tool that accepts r,g,b gamma
thresholds from UDP port 4740 by default. The version in
build/debug was compiled for OSX 10.6 (should work on 10.5
as well). Included is a processing sketch that will change
the gamma values as a sin wave. The sketch requires the UDP
library from:
http://ubaa.net/shared/processing/udp/documentation/udp/udp_class_udp.htm
If you do not want to use processing you can send the values
from another terminal with:
echo -ne '\x7f\x7f\x00' | nc -u localhost 4740
Remember, at the moment 127 (7f) is the highest value
accepted. (fixplease?)
do whatever you wish with the code. no license.
nathan@squimp.com