The IM30 can connect to any existing unattended kiosk, gas pump, vending machine, you name it. It has the traditional MDB port, RS232 as well as digital outputs.
Stand-by mode guarantees optimal energy efficiency. We are committed to safeguarding the environment. Our manufacturing facilities are ISO 14001 certified.
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'Purchase',
amount:1250,
currency:'EUR',
receipt_id:'My ID 64222'
}));
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'DisplayText',
positionX:1,
positionY:1,
text:'Welcome Back!'
}));
// Use websocket for two way communication with your terminals
const c = new WebSocket(
'wss://websocket.hips.com/terminal/dkf74ud',['jsonrpc2.0']);
c.send(JSON.stringify({jsonrpc:'2.0',
method:'PrinterPrint',
printerObjectData:[{ fontSize:1 text:'PRO FORMA...'}]
}));