generative modeling for Rhino
gHowl is a set of components which extend Grasshopper's ability to communicate and exchange information with other applications and physical devices.
Website: http://www.grasshopper3d.com/group/ghowl
Location: In Between
Members: 628
Latest Activity: 6 hours ago
Check out the gHowl videos page where you can see how people have been using gHowl.
Our users have connected Rhino and Grasshopper to various protocols, platforms, and softwares including:
Processing
Excel
Open Office
RSS
Arduino
Kinect
Reactivision
openFrameworks
Google Earth
Resolume
VVVV
Pure Data
max/msp
Maya
Kangaroo
TouchOSC
iPhone
Android
Components:
UDP:
UDP Components now have the ability to send and receive to a Multicast group. To send or receive to a Multicast group, make sure you use the IP Range of 224.0.0.0 - 239.255.255.255.
OSC functionality is provided by the Bespoke OSC Library by Paul Varcholik.
Network Source - Tests the connection of your machine to a network.

UDP Send - Allows the sending of UDP messages over the network. Also allows the sending of OSC messages to OSC enabled software and hardware devices. (Deleting this component in 0.7.0057 crashes GH / Rhino)

UDP Receive - Allows the sending and receiving of UDP messages. Also allows the reception of OSC messages and bundles (from Reactivision for example).(Deleting this component in 0.7.0057 crashes GH / Rhino)

OSC Channel - This component allows the storage of a single OSC Channel. Change the component's nickname to store that address' data.

OSC Dispatch - This component allows the storage of data from multiple OSC addresses.
Spreadsheet:
The spreadsheet components leverage the OpenXML engine. You must have OpenXMLSDKV2.msi installed in order for these components to work. These components read and write *.xlsx files. Supports numerical values and strings.

Spreadsheet Reader - Retrieves spreadsheet data from a file stored on your computer.

Spreadsheet Writer - Allows you to write a spreadsheet file.
XML:
These components retrieve xml data from local and web sources (such as RSS feeds).

Pachube - Retrieves data from a Pachube feed. Must have a valid Pachube API. (Deleting this component after making a connection in 0.7.0057 crashes GH / Rhino)
Pachube Update - Allows you to update a Pachube Feed. The component has variable inputs to enable streaming to various datastreams. Must have a valid Pachube API.

XML Parser - This component parses an XML file stored on your computer or on the web.
GEO:
These components aid in the mapping and conversion of coordinates from GPS enabled devices to XYZ coordinates.
Format GEO - Takes NMEA formatted GPS coordinates and converts them to Decimal Degrees.
XYZ -> GEO - Maps XYZ coordinates in Rhino/Grasshopper to Longitude, Latitude, and Altitude.
GPS -> GEO - Maps Longitude, Latitude, and Altitude coordinates to XYZ
Elevation Service - This component returns the elevation at the coordinates you supply as inputs. It queries the Google Elevations API to do this. There are some limitations on usage, so be warned.
KML:
KML Exporter - Exports points, curves, and meshes to a KML File. Breps should be meshed before exporting. Brep support will be added soon. Object attributes such as color, transparency, line width, line color, etc will be added soon.
KML Attributes - Adds Fill Color, Line Color, and Line Width to Exported KML Objects.
pachube_read_01.ghI was…Continue
Started by konrad k sobon. Last reply by konrad k sobon May 9.
I feel so hard to see cant import the hypermedia.net, I dont know what s the problem~I tested the example but it always failed.…Continue
Started by Aimee Zhou. Last reply by Luis Fraguada Apr 26.
am trying to open a grasshopper file done one year ago probably with a previous version, and grasshopper is asking me for spreadsheet Out component.Is it a Ghowl version problem or a Grasshopper…Continue
Started by stefano suarez. Last reply by Luis Fraguada Apr 19.
Previous Comments:GeorgeI'm playing around with examples and I've connected grasshopper with processing via UDP. I'm sending the division points from a torus from grasshopper and I need also to send…Continue
Tags: UDP, Processing, to, Grasshopper
Started by George L. Last reply by George L Apr 17.
Comment
Comment by Pantelis Adiavastos on May 8, 2012 at 4:32pm i'll try again in OSC, to pack everything in a single string
thanks ;)
Comment by Luis Fraguada on May 8, 2012 at 4:28pm hmm, In this case I might consider sending a packet with all of the control point positions. You could check in GH if the control pt position has changed, if it has, update the position. In UDP you could send a comma-delimited string, maybe if you want to keep it in OSC you could consider sending an OSC Bundle.
Comment by Pantelis Adiavastos on May 8, 2012 at 4:07pm another example of processing>GH via OSC, for a kinetic spacegrid structure simulation.
http://www.youtube.com/watch?v=zdqsBtYTC94&feature=youtu.be&...
and at my blog:
http://at-nowhere.tumblr.com/post/22669358307/kinetic-canopy
though I have same receptibility problems when sending multiple (2) streams of data to GH.(i don't know what is the problem maybe its something like a buffer stuck) and i have to do some manipulations.
do you think that UDP would be a better way?
Comment by Luis Fraguada on May 1, 2012 at 1:33pm Hello dd,
Evert Amador discovered this issue on the processing side. For reference, you can check his code here: http://www.grasshopper3d.com/group/ghowl/forum/topics/udp-problem
The issue is in two lines of code. For the setup you should have (assuming you have a UDP object called 'udps'):
void setup() {
udps = new UDP(this);...
}
and then for the sending:
udps.send( message, null, port );
Hope this helps!
Comment by dd on May 1, 2012 at 6:56am Hi Luis,
Is it possible for me to email the script to you instead? So I would be glad for you to give me your email id.
Di
Comment by Luis Fraguada on May 1, 2012 at 5:50am Ok, I will need to see what your processing looks like in order to help you further...
Comment by dd on May 1, 2012 at 5:45am Hi Luis,
Thanks for reply.I tried the examples and they worked.But when I code the lines into my processing, the error appears.
Di
Comment by Luis Fraguada on May 1, 2012 at 4:36am Hello dd,
I would need to see how you are coding in Processing. Have you tried the examples? Are they working for you?
Comment by dd on May 1, 2012 at 3:38am Hi Guys,
I'm new to grasshopper and I am attempting to link Processing to Grasshopper via Ghowl.
but I have a problem that I couldn't figure out:
opening socket failed!
> address:null, port:6005 [group:null]
> Address already in use: Cannot bind
This is the error which appears in processing.Can you help me to figure it out?
Cheers,
DD
Comment by Luis Fraguada on May 1, 2012 at 2:22am Hello Chan,
OSC is a protocol running on top of UPD. A part of the OSC message has information about where the message came from, for example it would tell you which device and which control of the device has just sent you the information.
Both UDP and OSC can be sent or received from the same gHowl components. To invoke OSC, you should change the sending or receiving pattern to 999. To send OSC, you should compose a message where the first element in the list is the device address and the other entries are the data. Check the gHowl examples where you will find OSC examples for VVVV and processing. Let me know if you have any issues and we can help to resolve them!
© 2013 Created by Scott Davidson.
Powered by
You need to be a member of gHowl to add comments!