<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Arduino and Flash: modify your existent Flash games to work with a joystick</title>
	<atom:link href="http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/</link>
	<description>Adobe, Actionscript, Flex, Flash, Air, FlashLite, scripts and tutorial</description>
	<pubDate>Sun, 05 Feb 2012 10:02:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Fabio Biondi</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-679</link>
		<dc:creator>Fabio Biondi</dc:creator>
		<pubDate>Mon, 30 Nov 2009 01:24:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-679</guid>
		<description>I wrote a new post about Flex and Arduino communication using As3 XML Socket:  http://www.fabiobiondi.com/blog/2009/11/arduino-flex-3-and-xmlsocket-class/

Honestly i have new ideas from that post and I think I will do other tests in the next weeks.</description>
		<content:encoded><![CDATA[<p>I wrote a new post about Flex and Arduino communication using As3 XML Socket:  <a href="http://www.fabiobiondi.com/blog/2009/11/arduino-flex-3-and-xmlsocket-class/" rel="nofollow">http://www.fabiobiondi.com/blog/2009/11/arduino-flex-3-and-xmlsocket-class/</a></p>
<p>Honestly i have new ideas from that post and I think I will do other tests in the next weeks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabio Biondi</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-672</link>
		<dc:creator>Fabio Biondi</dc:creator>
		<pubDate>Fri, 20 Nov 2009 09:39:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-672</guid>
		<description>Hi Anderson, i have tried the same stuff without success with AS3Glue but honestly i didn't waste a lot of time about it.
With AS3Glue i have also tried the class ArduinoWithServo but it didn't work for me so this library is a cool idea but seems still limited.

In the past I tried some actionscript XML socket class and I remember that i was able to send msg from arduino to Flash and viceversa (but it was AS2).
So i think it's possible but i would like to build my own class in AS3 to be free to do what i want. 

I'm only afraid that I don't know a lot of technical stuff about arduino communication.
Checking AS3Glue class (very simple) I see in the code some addresses that I don't understand so i'm not sure to be able to accomplish this task.

I have to say that at the moment, arduino for me is only a nice game and I can't investigate about these issues spending a lot of hours.
But at the same time I would like to do it... if you have some ideas and you want test or share something with me, i'm 100% available : )

Fabio</description>
		<content:encoded><![CDATA[<p>Hi Anderson, i have tried the same stuff without success with AS3Glue but honestly i didn&#8217;t waste a lot of time about it.<br />
With AS3Glue i have also tried the class ArduinoWithServo but it didn&#8217;t work for me so this library is a cool idea but seems still limited.</p>
<p>In the past I tried some actionscript XML socket class and I remember that i was able to send msg from arduino to Flash and viceversa (but it was AS2).<br />
So i think it&#8217;s possible but i would like to build my own class in AS3 to be free to do what i want. </p>
<p>I&#8217;m only afraid that I don&#8217;t know a lot of technical stuff about arduino communication.<br />
Checking AS3Glue class (very simple) I see in the code some addresses that I don&#8217;t understand so i&#8217;m not sure to be able to accomplish this task.</p>
<p>I have to say that at the moment, arduino for me is only a nice game and I can&#8217;t investigate about these issues spending a lot of hours.<br />
But at the same time I would like to do it&#8230; if you have some ideas and you want test or share something with me, i&#8217;m 100% available : )</p>
<p>Fabio</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-671</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Sun, 15 Nov 2009 20:41:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-671</guid>
		<description>Hey Fabio, thanks for the comments!
Do you know the funnel class for flash? thats really amazing to see the video. Type: funnel arduino getting started at google and watch the video.

Well. I forgot to say I am already using firmata2 and the glue class in flash ;)
I have tested some samples with buttons, led, or, digital in/outputs and its all ok.
The problem is while trying to send messages.

Let me put a very basic example:
supose this code running in arduino:
-----------------------
int id = 3; //could be any number
void setup(){
   Serial.begin(9600);
}
void loop(){
   Serial.print(id);
}
------------------------
if you go to Arduino serial monitor you will see it printing (3 3 3 3 3 ....)
now, wonder flash reading serial (with serproxy, for example) and tracing it (3 3 3 3...) inside a textBox.

in other words, I just would like to get the printed values in serial in flash and vice-versa.
Supose there is a way flash can print a value to serial too..   and Arduino would get this to turn a led on.
(I know I could send it using digitalWrite in this example, but in my case I must send a 'int' or 'string' from flash, like a message)
for example:
------------------------------
//in flash
arduino.sendString(3);//here is my int 
------------------------------
//in arduino
if (Serial.read() == 3){
   //TURN LED 3 ON
}
------------------------------
what do you think!?
Thanks one more time!

ciao!</description>
		<content:encoded><![CDATA[<p>Hey Fabio, thanks for the comments!<br />
Do you know the funnel class for flash? thats really amazing to see the video. Type: funnel arduino getting started at google and watch the video.</p>
<p>Well. I forgot to say I am already using firmata2 and the glue class in flash <img src='http://www.fabiobiondi.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
I have tested some samples with buttons, led, or, digital in/outputs and its all ok.<br />
The problem is while trying to send messages.</p>
<p>Let me put a very basic example:<br />
supose this code running in arduino:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
int id = 3; //could be any number<br />
void setup(){<br />
   Serial.begin(9600);<br />
}<br />
void loop(){<br />
   Serial.print(id);<br />
}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
if you go to Arduino serial monitor you will see it printing (3 3 3 3 3 &#8230;.)<br />
now, wonder flash reading serial (with serproxy, for example) and tracing it (3 3 3 3&#8230;) inside a textBox.</p>
<p>in other words, I just would like to get the printed values in serial in flash and vice-versa.<br />
Supose there is a way flash can print a value to serial too..   and Arduino would get this to turn a led on.<br />
(I know I could send it using digitalWrite in this example, but in my case I must send a &#8216;int&#8217; or &#8217;string&#8217; from flash, like a message)<br />
for example:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
//in flash<br />
arduino.sendString(3);//here is my int<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
//in arduino<br />
if (Serial.read() == 3){<br />
   //TURN LED 3 ON<br />
}<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
what do you think!?<br />
Thanks one more time!</p>
<p>ciao!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabio Biondi</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-669</link>
		<dc:creator>Fabio Biondi</dc:creator>
		<pubDate>Sat, 14 Nov 2009 18:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-669</guid>
		<description>No changes on your sketch file are required.
You can use one of firmata 2 firmwares (check my samples to see what i have used) in your Arduino and creare your Flash/Flex application using for example the AS3 Glue library (http://code.google.com/p/as3glue/)
Furthermore you also need to use a socket proxy to share data between Flash and Arduino using the XML socket flash class (you can get a good serial proxy aplication following the AS3 Glue Library reference).

Naturally, you could creare your own AS3 classes using XML Socket but AS3GLUE is ready to work allowing to send analog / digital input from Flash to Arduino and viceversa (I tested it and it works well) and use servos (but i had some problems ). This library seems not final and it's a bit limited for complex stuff but I should spend more time to test it (i'm sorry but my real job is a Flash/Flex developer and electronic stuff at the moment it's only a passion and I can work on it only during my free time)</description>
		<content:encoded><![CDATA[<p>No changes on your sketch file are required.<br />
You can use one of firmata 2 firmwares (check my samples to see what i have used) in your Arduino and creare your Flash/Flex application using for example the AS3 Glue library (http://code.google.com/p/as3glue/)<br />
Furthermore you also need to use a socket proxy to share data between Flash and Arduino using the XML socket flash class (you can get a good serial proxy aplication following the AS3 Glue Library reference).</p>
<p>Naturally, you could creare your own AS3 classes using XML Socket but AS3GLUE is ready to work allowing to send analog / digital input from Flash to Arduino and viceversa (I tested it and it works well) and use servos (but i had some problems ). This library seems not final and it&#8217;s a bit limited for complex stuff but I should spend more time to test it (i&#8217;m sorry but my real job is a Flash/Flex developer and electronic stuff at the moment it&#8217;s only a passion and I can work on it only during my free time)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anderson</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-668</link>
		<dc:creator>Anderson</dc:creator>
		<pubDate>Sat, 14 Nov 2009 18:20:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-668</guid>
		<description>Hello!
I am looking for an example where I can print/send a string from arduino to flash and vice-versa.

Arduino is set with firmata2.
Do you think I must change the code in arduino so it can send string messages to flash, or there is a way to make it within flash?

thanks in advance ;)</description>
		<content:encoded><![CDATA[<p>Hello!<br />
I am looking for an example where I can print/send a string from arduino to flash and vice-versa.</p>
<p>Arduino is set with firmata2.<br />
Do you think I must change the code in arduino so it can send string messages to flash, or there is a way to make it within flash?</p>
<p>thanks in advance <img src='http://www.fabiobiondi.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fabio Biondi</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-665</link>
		<dc:creator>Fabio Biondi</dc:creator>
		<pubDate>Mon, 02 Nov 2009 16:20:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-665</guid>
		<description>Yes yes. I love it : )</description>
		<content:encoded><![CDATA[<p>Yes yes. I love it : )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jadd</title>
		<link>http://www.fabiobiondi.com/blog/2009/11/arduino-and-flash-modify-your-existent-flash-games-to-work-with-a-joystick/comment-page-1/#comment-664</link>
		<dc:creator>jadd</dc:creator>
		<pubDate>Mon, 02 Nov 2009 10:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.fabiobiondi.com/blog/?p=874#comment-664</guid>
		<description>hello,
vedo che la tua nuova passione cresce e da nuovi frutti ogni giorno. Complimenti. 
Ciao, Roberto.</description>
		<content:encoded><![CDATA[<p>hello,<br />
vedo che la tua nuova passione cresce e da nuovi frutti ogni giorno. Complimenti.<br />
Ciao, Roberto.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

