<?xml version="1.0" encoding="UTF-8"?>
	<rss version="2.0"
		xmlns:content="http://purl.org/rss/1.0/modules/content/"
		xmlns:wfw="http://wellformedweb.org/CommentAPI/"
		xmlns:dc="http://purl.org/dc/elements/1.1/"
		xmlns:atom="http://www.w3.org/2005/Atom"

			>

	<channel>
		<title>Cycling 74  &#187;  Topic: Help! Need to send lists via UDP asap!</title>
		<atom:link href="http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/feed" rel="self" type="application/rss+xml" />
		<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/feed</link>
		<description></description>
		<pubDate>Wed, 19 Jun 2013 08:52:24 +0000</pubDate>
		<generator>http://bbpress.org/?v=2.2.4</generator>
		<language></language>

		
														
					
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-35830</guid>
					<title><![CDATA[Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-35830</link>
					<pubDate>Fri, 15 Feb 2008 04:54:37 +0000</pubDate>
					<dc:creator>seejayjames</dc:creator>

					<description>
						<![CDATA[
						<p>Hi all, I need to ASAP be able to format a list of numbers to go thru the mxj.udp.send object. The patch is ready, it will send a list of about 400 RGB values in DMX format to a set of boards that will run LED&#8217;s. Everything is fine with the lists and all but the format comes through as ASCII instead of the desired BYTES as numbers from 0 &#8211; 255. I have great washes of colors from a cool jit.bfg and some other manipulations, the only problem is the formatting of the lists!!</p>
<p>It *has* to be the udp.send, so that it&#8217;s wireless over Ethernet, otherwise I&#8217;d use jit.net.send which works great.</p>
<p>So&#8212;&#8211;HOW do you tell mxj.net.send to send a list of numbers (a 1 as a start code, followed by a bunch of RGB triplet bytes, one triplet for each LED) to go out AS IS without coming out as ASCII &#8212; the values, plus spaces, etc..? What am I missing?</p>
<p>We can go below 256 and use atoi or iota or whatever if need be, but I&#8217;m sure there is a different fix&#8230;</p>
<p>This is for (what could be) a really nice LED installation in a wedding coming up this weekend&#8230; it will be gorgeous if we can get past this damn formatting hurdle!!</p>
<p>THANK YOU &#8212; Can you tell I&#8217;m desperate??</p>
<p>&#8211;CJ</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122635</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122635</link>
					<pubDate>Fri, 15 Feb 2008 08:03:41 +0000</pubDate>
					<dc:creator>(karrrlo)</dc:creator>

					<description>
						<![CDATA[
						<p>list>tosymbol>udpsend </p>
<p>udpreceive>fromsymbol>list </p>
<p>?</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122636</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122636</link>
					<pubDate>Fri, 15 Feb 2008 10:24:33 +0000</pubDate>
					<dc:creator>seejayjames</dc:creator>

					<description>
						<![CDATA[
						<p>ach&#8230; but it&#8217;s not going to a udpreceive, it&#8217;s going to a circuit board. I don&#8217;t know if the board will interpret the symbol correctly, we tried it with a string message and it still saw ASCII. so I don&#8217;t know what&#8217;s happening.</p>
<p>I remember similar problems with the Arduino, where I had to tell it &#8220;BYTE&#8221; for the kind of value to send to Max, then that worked. Any way to change a list into &#8220;char&#8221;? Would that do it?</p>
<p>I don&#8217;t understand why the udp.send would send a list of ints as ASCII, I must be missing something&#8230;.?</p>
<p>&#8211;CJ</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122637</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122637</link>
					<pubDate>Fri, 15 Feb 2008 11:05:15 +0000</pubDate>
					<dc:creator>Scott Fitzgerald</dc:creator>

					<description>
						<![CDATA[
						<p>Hi cj.</p>
<p>Take a look at  the email I sent you and Jesse for an example of how<br />
to do this with aka.datagram and udpsend.</p>
<p>The max objects package messages for other apps, not hardware.<br />
Aka.datagram will send out the raw bytes, not a max/java/pd prepared<br />
message.</p>
<p>s</p>
<p>On Fri, Feb 15, 2008 at 11:24 AM, Seejay James <cjlacke @ilstu.edu> wrote:<br />
><br />
>  ach&#8230; but it&#8217;s not going to a udpreceive, it&#8217;s going to a circuit board. I don&#8217;t know if the board will interpret the symbol correctly, we tried it with a string message and it still saw ASCII. so I don&#8217;t know what&#8217;s happening.<br />
><br />
>  I remember similar problems with the Arduino, where I had to tell it &#8220;BYTE&#8221; for the kind of value to send to Max, then that worked. Any way to change a list into &#8220;char&#8221;? Would that do it?<br />
><br />
>  I don&#8217;t understand why the udp.send would send a list of ints as ASCII, I must be missing something&#8230;.?<br />
><br />
>  &#8211;CJ<br />
><br />
><br />
></cjlacke></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122638</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122638</link>
					<pubDate>Sun, 17 Feb 2008 08:37:56 +0000</pubDate>
					<dc:creator>seejayjames</dc:creator>

					<description>
						<![CDATA[
						<p>(Cross-posting from Java forum)</p>
<p>Hi guys,</p>
<p>Thank you so much for your time and help. On this end we simply ran out of time, so the project won&#8217;t go up as planned (tomorrow!). On the plus side, we are a LOT closer, we just keep running into strange Java networking stuff that is tough to debug.</p>
<p>We started getting &#8220;java.net.socket Exception: max connections reached, buffer size reached&#8221; errors. Restarting the patch works for awhile&#8230; just when things started to work, too&#8230;</p>
<p>The upside is that the pressure is off, I learned a ton, and I realized I should learn some more Java since there&#8217;s so much it can do with lists etc.</p>
<p>Any thoughts on the Exception thing? I&#8217;ve hunted around but don&#8217;t really know what&#8217;s happening.</p>
<p>We will get this thing working eventually, most likely with the help of your files. The project WILL be a success, once we iron out everything. It&#8217;s starting to look really cool, and the patch for setting the colors has a lot of potential.</p>
<p>Best wishes, and thank you both very much again. It&#8217;s not a lost cause, we just have to bail for this particular event. Now, Burning Man is another story&#8230; ;)</p>
<p>CJ</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122639</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122639</link>
					<pubDate>Wed, 05 Mar 2008 14:19:15 +0000</pubDate>
					<dc:creator>st.scholl</dc:creator>

					<description>
						<![CDATA[
						<p>
i need every information about the mcgill-mailing-list&#8230; (the first mail-list for max-user)> Date: Fri, 15 Feb 2008 12:05:15 +0100> From: <a href="mailto:droolcup@gmail.com">droolcup@gmail.com</a>> To: <a href="mailto:maxmsp@cycling74.com">maxmsp@cycling74.com</a>> Subject: Re: [maxmsp] Re: Help! Need to send lists via UDP asap!> > Hi cj.> > Take a look at the email I sent you and Jesse for an example of how> to do this with aka.datagram and udpsend.> > The max objects package messages for other apps, not hardware.> Aka.datagram will send out the raw bytes, not a max/java/pd prepared> message.> > s> > On Fri, Feb 15, 2008 at 11:24 AM, Seejay James <cjlacke @ilstu.edu> wrote:> >> > ach&#8230; but it&#8217;s not going to a udpreceive, it&#8217;s going to a circuit board. I don&#8217;t know if the board will interpret the symbol correctly, we tried it with a string message and it still saw ASCII. so I don&#8217;t know what&#8217;s happening.> >> > I remember similar problems with the Arduino, where I had to tell it &#8220;BYTE&#8221; for the kind of value to send to Max, then that worked. Any way to change a list into &#8220;char&#8221;? Would that do it?> >> > I don&#8217;t understand why the udp.send would send a list of ints as ASCII, I must be missing something&#8230;.?> >> > &#8211;CJ> >> >> > _______________________________________________> > maxmsp mailing list> > <a href="mailto:maxmsp@cycling74.com">maxmsp@cycling74.com</a>> > <a href="http://www.cycling74.com/mailman/listinfo/maxmsp" rel="nofollow">http://www.cycling74.com/mailman/listinfo/maxmsp</a>> >> _______________________________________________> maxmsp mailing list> <a href="mailto:maxmsp@cycling74.com">maxmsp@cycling74.com</a>> <a href="http://www.cycling74.com/mailman/listinfo/maxmsp" rel="nofollow">http://www.cycling74.com/mailman/listinfo/maxmsp</a><br />
Importieren Sie ganz einfach Ihre E-Mail Adressen in den Messenger!</cjlacke></p>
<p><a href="http://messenger.live.de/community/neuekontakte_adressimport.html" rel="nofollow">http://messenger.live.de/community/neuekontakte_adressimport.html</a></p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122640</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122640</link>
					<pubDate>Wed, 05 Mar 2008 15:44:39 +0000</pubDate>
					<dc:creator>roger.carruthers</dc:creator>

					<description>
						<![CDATA[
						<p><a href="http://www.synthesisters.com/hypermail/max-msp/" rel="nofollow">http://www.synthesisters.com/hypermail/max-msp/</a><br />
cheers<br />
Roger</p>
<p>&#8212; steffen scholl <st .scholl@live.de> wrote:</st></p>
<p>> <br />
> i need every information about the<br />
> mcgill-mailing-list&#8230; (the first mail-list for</p>
						]]>
					</description>

					
					
				</item>

			
				<item>
					<guid>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122641</guid>
					<title><![CDATA[Re: Help! Need to send lists via UDP asap!]]></title>
					<link>http://cycling74.com/forums/topic/help-need-to-send-lists-via-udp-asap/#post-122641</link>
					<pubDate>Wed, 05 Mar 2008 17:54:06 +0000</pubDate>
					<dc:creator>nick rothwell / cassiel</dc:creator>

					<description>
						<![CDATA[
						<p>
On 5 Mar 2008, at 14:19, steffen scholl wrote:</p>
<p>> i need every information about the mcgill-mailing-list&#8230; (the first  <br />
> mail-list for max-user)</p>
<p>Actually, no: I set up the first mailing list, at Edinburgh  <br />
University, early in 1991. I passed the membership list on to McGill  <br />
some years later since I couldn&#8217;t host it anymore and they could.</p>
<p>	&#8211; N.</p>
<p>
Nick Rothwell &#8211; <a href="mailto:nick@cassiel.com">nick@cassiel.com</a> &#8211; <a href="http://www.cassiel.com" rel="nofollow">http://www.cassiel.com</a><br />
&#8212; open-source goodies for MaxMSP: Python, Groovy, Nixie Tubes,<br />
&#8212; rotatable text bricks, databases: all at <a href="http://www.loadbang.net" rel="nofollow">http://www.loadbang.net</a></p>
						]]>
					</description>

					
					
				</item>

					
		
	</channel>
	</rss>

