Money acceptors
Instructs the device to start accepting bills or coin.
If the device uses pulse interface and its control using enable pin isn’t possible, then it’s not possible to truly start or stop it. In this case themoneyin
events are ignored and not sent unless astart
command is received.
{"cmd": "start"}
Instructs the device to stop accepting money. In case of pulse interface devices, the moneyin
events are withold.
{"cmd": "stop"}
Reports money input. It’s up to the backend implementations to evaluate the currency and denominations.
{
"event": "moneyin",
"data": {
"amount": 100,
"currency": "eur"
}
}