AS3Glue v.20 & Firmata2.3

Hey all,

OK, so I’m trying to get my Arduino Board communicating with my Action Script3 program. I’m using the AS3Glue and FirmataStandard2.3 firmware to accomplish this.

Everything seems to be working OK except for this persistent little error message:

Unexpected Firmware version encountered! This Version of as3glue was written for Firmata2.

Which I get when I run the Flash file. I’ve tries using older versions of AS3Glue and I get the same message. The message itself is a trace(); the author put in the AS3Glue coding. It’s part of an if…else statement:


if (int(e.value)!=2) {
                trace("Unexpected Firmware version encountered! This Version of as3glue was written for Firmata2.");
            } else {
                //setUpArduino();
                startSound();
            }

Since I am using Firmata2.3, I would think that this would fall under the second version.

Any advice or ideas???

Thanks!

king28.