Make basic stamp controlled by controller
andyisaginer
Posts: 1
I was wondering if anyone could help me find a way to controll the basic stamp wirelessly by a controller
Comments
There is a wireless link called the Flash Fly that does allow for downloading a program wirelessly from a PC and theoretically could allow for downloading a program from some other type of controller (not a PC), but usually this is not how this sort of thing is done.
Typically, the other controller would send some sort of command to the Stamp like the characters "!A5". The "!" serves as a marker for the start of a command. The "A" would be some sort of command and the "5" would be a numeric value that modifies the command. The Stamp would receive this using its SERIN statement, testing for each of several commands in turn, then doing whatever the command indicates. Depending on your application, the Stamp might signal back to the other controller in a similar fashion using the SEROUT statement to indicate that it's done with the command and maybe supply some additional information about what happened.
FYI This PDF contains some information on serin and serout if you need it http://www.parallax.com/dl/docs/cols/nv/vol1/col/nv16.pdf