SPINNOODLE REV.001

SPINNOODLE 005 / REV.000




















ROTARY ENCODER FOR MAX/MSP/PROCESSING/OPENFRAMEWORKS/ARDUINO/Unity3D PROJECTS ETC.

For an upcoming project i was searching an easy/fancy/smart solutions to attach industrial rotation encoders (relative & absolute/incremental/optical e.g.Kübler 5.2400) as simple as possible to osx (linux/pc) & process them in max/msp/processing.
Procedural steps going through arduino, we're nice but not the best solution for us.

So what to do?
Design your own PCB with the super fine visual Fritzing Editor and let it produce :), based on André Bernhardt's prototype.

The Facts:
  • Small & Handy Standalone PCB for up to 3 industrial absolute encoders (5-24V) like 5.2400.xxx
  • USB-B Plug (Encoders get powered through this, no second external device needed!)
  • DIN-5 Plugs
  • MAX/MSP PlugIn Available in Beta 0.2 !
  • Native OSX-Library, so you can use it in processing/flash/flex/openframeworks or whatever you like to develop in (Libraries for PC/LINUX available on request)
  • You can buy it soldered or as a set soon! In URGENT cases write us! or call +491727348084

And here are some shots of a soldered one with one encoder slot.

With One Encoder Plug!

OtherSide! Encoder. Rotary Encoder Max/msp, arduino, processing







0 comments

SPINNOODLE

RotaryEncoder USB (osx/win/*nix)

See more here:
SPINNOODLE REV.001

0 comments

BBedit / Unity3D

Bigger update for our BBedit LanguageModule for Unity3D 3.4

Main Features:
Collapsing & Correct listing of functions
C#(csharp) & JavaScript Module for BBedit 9 & 10

Download & informations here http://pong.li/dev/unity3d

Screenshot Listed Functions:









0 comments

Restart Teamserver | Mac OS X Server 10.6.7

In Terminal:
sudo serveradmin stop teams
sudo serveradmin start teams

0 comments

Max/Msp/Jitter - StringTo lowerCase & UPPERCASE

Snippet:
Convert Strings in Max/Msp/Jitter to lowerCase or UPPERCASE.
Just In Case I Forget :)

----------begin_max5_patcher----------
582.3oc2V10iTBCEF9Z3WQkX13G6R5GPALFSF2LFuXU23GWYLFFnNSM.k.c1
YzM6+coEXWV2AElYbz3MT5okdd4gyaoWZZXMSrlUZAdB3i.CiKMMLzgTALZ5
aXkFtNJIrTOMqL1JwruZcb8PR1ZoNbnTvaCJVJSXR42xY0KrUBurZVepY3uH
xjk7uqGDAsgMgyCkQK3Yy+bAKRV+fNtUiBPDciCU2w2Fd8JksLkmUkJsxHMA
4wZAUIxSPDqN4LKLUmSqIE7vDqaViZ8pWDjJ3UllpKGOPhjxJKCmytCRVvN6
LAX0aJRhuG3kSd0yWVLeZA3EhW+d.ABQ8hqMiJ7.Pkm9JwIP0f85CU36hJ7n
IUSzYyiDIhhZUfT4EZSoXOG2t2gTRYKXaOUa4E7LIHQrhUbZX40nuiRf1AtT
eJQIhZMQbwANMJYSUh9+d7h8f0Ejd+Z9h1PoHbr.Ft+v0Er04Ef6yQOlfezC
pZeF0AbzQpHOM.8vQVHhvCvyFT236qIEbDj5f3Y6ATboHrWZTUxs8.Ai6rIV
+7XCahQ+KxiZe1GN+7ou8zIua5edeV09hcMZTx3MZz+ELZmzZzBnsFMDlrec
ZMrp0pEfFsUy++LqVa0yV60b1EfnyR0Ycx94CToUpJ9soToXYQT6ab6wU.2H
1XVojmEJ4hrNS51yYAONloGtEKo73bQE+Zzfqis52udDUSmN87238pT82AoR
fA6KshGfTQiDq6njFB8nGTE4O.E4bPUDcHe1fGTI4LDIsKe2p5bk4OPdUaQu
-----------end_max5_patcher-----------
Download file "na.str.toupper.maxpat"
Download file "na.str.tolower.maxpat"

0 comments

Mac OSX Server 10.6.7 | MCrypt, PHP Installation

Snippet: Terminal Installation

MCrypt für/for OSX Server 10.6.x / Apache2 / PHP 5.3.x

Downloads

  1. Download XCode here: http://developer.apple.com/xcode/ or Install from SnowLeopardDVD for free
  2. Download mcrypt(2.5.8) here: http://sourceforge.net/projects/mcrypt/files/Libmcrypt/2.5.8/libmcrypt-2.5.8.tar.gz/download
  3. Download PHP 5.3.x (current 5.3.6) here: PHP 5.3.6 (tar.gz)

Setup & Compile

In Terminal.app

  1. Unpack libmcrypt in Downloads with tar -xzf libmcryp-2.5.8.tar.gz
  2. cd libmcrypt-2.5.8
  3. sudo MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS='-O3 -fno-common -arch i386 -arch x86_64' LDFLAGS='-O3 -arch i386 -arch x86_64' CXXFLAGS='-O3 -fno-common -arch i386 -arch x86_64' ./configure --disable-dependency-tracking
  4. make -j6
  5. sudo make install
  6. Short Break. libmcrypt prepared. next step compile php.extension. switch to Downloads.
  7. cd ..
  8. tar -xzf php-5.3.6.tar.gz
  9. cd php-5.3.6/ext/mycrypt
  10. /usr/bin/phpize
  11. MACOSX_DEPLOYMENT_TARGET=10.6 CFLAGS='-O3 -fno-common -arch i386 -arch x86_64' LDFLAGS='-O3 -arch i386 -arch x86_64' CXXFLAGS='-O3 -fno-common -arch i386 -arch x86_64' ./configure --with-php-config=/Developer/SDKs/MacOSX10.6.sdk/usr/bin/php-config
  12. make -j6
  13. sudo make install
  14. Short Break. And now setup php.ini with compiled mcrypt.so extension
  15. sudo pico /etc/php.ini
  16. Goto "Dynamic Extensions" (CTRL-W: Dynamic) and add following line:
  17. extension=mycrypt.so
Restart Apache / WebServer and hopefully you're done.

0 comments

Mac OS X Server 10.6.4 | WikiServer Backup

Some Terminal snippets for backuped wikiservers (tested on 10.6.4)
Ein paar kleine Terminal Zeilen zur Erinnerung wenn man die WikiServer mal gebackupt hat.


StandardDirectory WikiServer:

/Library/Collaboration/

7 Steps in Terminal.app

$ sudo su
$ serveradmin stop teams
$ mv /BackupGroupFolder /Library/Collaboration/Groups/
$ chown -R _teamsserver:_teamsserver /Library/Collaboration/Groups/
$ rm /Library/Collaboration/dataVersion.plist
$ rm /Library/Collaboration/globalIndex.db
$ rm '/Library/Application Support/Apple/WikiServer/directoryIndex.db'
$ serveradmin start teams

Ready!


Do it on your *OWN* risk :) Wie immer auf eigene Verantwortung.


0 comments

R | StartUp

Hello World!

0 comments

Glossar

0 comments

bulkloader swc download

Need a .swc from the fine BulkLoader Project Page

Just type in Terminal (OSX)

mxmlc br/com/stimuli/loading/BulkLoader.as -source-path . -o bulkloader.swc
or

/myPathToFlexSDK/bin/mxmlc br/com/stimuli/loading/BulkLoader.as -source-path . -o bulkloader.swc

0 comments

Unity3D / BBEdit

BBedit & Unity3D LanguageModules C#/JavaScript

Want use BBEdit as your favorite tool for Unity3D Development and missed fine autocompletions for C# & JavaScript?

Just download our small .plist Language Module Package for BBEdit and enjoy coding!

Supports now C# & JavaScript as separate modules!

Our famous BBEdit Language Module is available for Unity3D 2.6 & 1.7 (IPad/IPhoneDevelopment) .

For detailed installation informations check out the ‘ReleaseNotes_Installation.rtf’ inside the .zip

http://pxng.li/dev/unity3d

0 comments

MultiTouch Sphere aka. SusiSphereMT

Hello Friends,


Small multitouch update for our oldskool hemispherical projection system by PONG.LI. Developed for our scientistic friends at Waldrapp Team& for some future game & entertainment releases for SUSIGAMES.


2 Kisses for Susi & her Friends


Further information about the Waldrapp science exhibition PONGLI done you can found here

or here Official Project Site


MultiTouch, Sphere, HemiSphere, IR, Tracking, Waldrapp, Pong, Acryl, Halbkugel, Video
MultiTouch, Sphere, HemiSphere, IR, Tracking, Waldrapp, Pong, Acryl, Halbkugel, Video
MultiTouch, Sphere, HemiSphere, IR, Tracking, Waldrapp, Pong, Acryl, Halbkugel, Video

0 comments

Susigames/SantralIstanbul

Exhibiton SUSIGAMES Santralistanbul 2009

SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab
SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab
SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab
SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab
SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab
SUSIGAMES. SANTRALISTANBUL, EdgeBomber, SusiPong, Ole, Ciliox, Richard, Gutleber, Robotlab





SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2347.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2368.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2373.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2375.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2416.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2620.JPG


SUSIGAMES_SANTRAL_ISTANBUL_EDGEBOMBER_SUSIPONG_IMG_2677.JPG

0 comments

PIC32/UBW32

praktisch fuer pic32 / c programming unter osx/gcc

die sehr feine minimale variante
http://www.schmalzhaus.com/UBW32/
http://pyd.nfshost.com/uc/ubw32/

boards zu beziehen ueber sparkfun.com

die deluxe variante
http://www.microchip.com/stellent/idcplg?IdcService=SS_GET_PAGE&nodeId=2615&dDocName=en532453

0 comments

10.6 Hall

This is placeholder text for your new blog entry. Replace it with your own.

0 comments