HP-48 as external core for an Arduino
|
01-06-2014, 06:44 PM
(This post was last modified: 01-06-2014 09:23 PM by eried.)
Post: #1
|
|||
|
|||
HP-48 as external core for an Arduino
This is from a few years ago, but since Arduino is probably trending topic maybe it is interesting to keep records of this procedure.
1) Connections You can use an audio-cd cable for the connections. Just follow: HP-48 GND to Arduino GND, RX to TX and TX to RX arduino pins respectively. 2) HP-48 serial server code scripts START: Code: << CLLCD 0 'N' STO CLOSEIO CLLCD "READY" 1 DISP OPENIO REV >> REV: Code: << CLLCD BUFLEN DROP SRECV DROP DUP "" == IF THEN DROP ELSE RREP OBJ-> END REV >> RREV: Code: << BUFLEN DROP SRECV DROP DUP "" == IF THEN DROP ELSE RREP 1 CLLCD DISP END REV >> RREP: Code: << "" -> S Q << S 1 S SIZE START DUP NUM 255 - NEG 2 / CHR Q SWAP + 'Q' STO TAIL NEXT DROP Q >> >> P: Code: << BUFLEN DROP SRECV DROP >> IOPAR (it's the default one): Code: { 9600 0 0 0 3 3 } 3) Arduino sample code Just send 0x00 and then any command you want to evaluate! Code: void setup() If you want responses from the arduino, you have to XMIT them to you back to the microprocessor, example: Code: Serial.print(0x00,BYTE); And that's all! ___________________________ Working sample Here is a bit more lengthy sample for the arduino: http://servicios.ried.cl/arduino/hp48_la...ounter.pde That counts boxes: My website: ried.cl |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)