I'm interested in getting an Arduino to talk to a SMART Coin System by Innovative Technology.
They use a communication protocol called SSP "Smiley Secure Protocol". Has anyone ever made this work with Arduino? Is there perhaps a device library for this protocol already available?
I have the Developer kit from Innovative Technology which includes device drivers for Windows and Linux (I can provide them if it's helpful). Do you guys think it would be easy to port the libraries (say from the Linux dev kit) to work with Arduino?
bozzzi:
Pack all in one app.js and Run the node-ardx application from the node-ardx directory
I don't know anything about that coin system but if the code is Javascript it is not going to run on an Arduino. You will at least need a Raspberry Pi.
The Javascript is running somewhere (but not on the Arduino) and is communicating via the USB connection with a program written in C++ that is running on the Arduino.
Validator communicates with Arduino trough serial port (Serial port communication is working on Arduino?). Everything else is just message exchange. C++ examples contains only send, receive and pool implementation of message exchange via Serial port.