Equipment/Vending machine

From London Hackspace Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Vending machine
Hackspace Unknown.png
Model Unknown
Sub-category General
Status Under construction
Consumables Unknown
Accessories Unknown
Training link Unknown
Owner Unknown
Origin Unknown
Location Ground Floor

Purpose

We've got a vending machine. We want to use it to sell Arduinos, lockpicks, and similar items of non-trivial value. We probably want to link it to the membership database (selling stuff to non-members is a tax issue), and let people pay by PayPal.

Stuff to sell

List of stuff that would be useful

  • Sugru
  • FTDI cables or similar
  • Cheap microcontroller boards such as arduino, Minimus etc.
  • Blank printed circuit board stock (only fairly small pieces will fit)

Name

She is called "Hopper".

See also: System naming

Specs

The vending machine is a Stack Snack made by Slimline Vending of Canada. It used to sell SIM cards at Coventry Airport. It came to us with no coin or note acceptors.

The controller is an LF80 from Coin Acceptors, Inc. We have a manual for it, but it doesn't seem to work. It just displays "----" after outputting version and manufacture date. At any rate, it's probably going to be hard to make it do what we want.

There are 16 motors which are arranged in a grid with two common wires. The black, common wires are positive (!).

The tricky part is the way the vending motors sense their home positions. They have a microswitch on a cam with both NO and NC poles connected to the motor, and the common connected to the power supply. The short blip in current (two per revolution) caused by the switch being triggered is used to sense when the motor has hit its home position. The manual says:

"An interruption in current is defined as a current value of under 20mA for more than 600us. When an interruption is detected within the first 500ms of the vend, it is interpreted as the cam leaving the home position. At this point a 900ms blanking period is started (for multiple interruptions here, use the last one). If no interruption is detected within the first 500ms, the blanking period is the following 400ms, for a total minimum vend of 900ms. During the blanking period all interruptions in current are ignored. The first interruption in current after the blanking period has expired is interpreted as the cam returning to the home position and the motor is turned off. If a valid home signal is not detected within 6 seconds, the motor will be shutdown and considered as bad."

This company writes about how much of a fiddle this is, and how they solved it with an ATMega64.

Plans

Motor Controller

Is being organised by Artag

Pictures of the old controller board:

Dump of Jasper's state and datasheets for bits on the old board here

motor connectors pinouts:

        a       b
1       a1      b1
2       a2      b2
3       a3      b3
4       a4      b4
5       a5      b5
6       a6      b6
7       a7      n/a
8       a8      n/a
9       a9      n/a
10      a0      n/a

a & b are the two black common +ve's, a is the one on the end. 1-10 are the rest on the longer connector. I've labeled the connectors but can't find a permenant pen!

The connectors on the end of the board opposite the big caps are the motor connectors, with the connectors on the right the 10 pins at the top are the motor grounds, and the 8 at the bottom are the sources.

The 2003A controls the top 2 motor sinks (pins 1 and 2 on the 2003A), the 5842A controls the rest, and the 5890A controls the sources.

serial data mcu -> 5890 -> 5842A
common clock
common OE   
strobes on both 58 chips to 10k pullups.

so clock out 16 bits fiddle the 2 darlington pins and then hit OE...

I've marked the underside of the board which pins on the MCU do what.

I've not seen any sign of current detection on the controller board, but i may be being stupid.

Power to the vending board is 25volts AC, the green wire appears to be redundant.

Artag's Thyristors board works, the controller pins draw 4-5ma at 5V.

Update: i've got it working by reusing the existing board and twiddling the pins with an mbed. See the bits here. The motors.py script spits out some c code that has the right bit pattern in it. notes as been updated as well with some more useful info.

See also the mbed code.

Electronic Payment

Is being organised by Jonty

Physical Payment

Is being organised by Solexious

The vending machine will take physical cash in the form of coins and notes, but will not give change. Any left over cash will be taken and marked as a donation to the space. (This will be clearly displayed before purchase)

Sadly the internals were damaged again, the coin and note section has been repaired.

ToDo:

  • Make a new pcb for interfacing with VDU
  • Make replacement keypad
  • Make break beam for successful vend detector
  • test interface with motors
  • add in i2c rfid reader
  • shorten and remake coin validator cable

Arduino serial protocol

The arduino will take input and physical payment, and make requests to its server (the server also takes the paypal payments). This is the proposed communication protocol.

All strings are terminated with \n


Request check item: (to check if an item is in stock/available, this reserves 1 of the item for 5 mins to allow for payment to be taken)

  • CHECK.[item location]

Returns:

  • OK
  • ERROR.[error text]


Request cash vend of item:

  • VEND.[item location].[payment amount in p]

Returns:

  • OK
  • ERROR.[error text]


Request paypal vend: (paypal customers get a code, to insure they are getting their vend)

  • PVEND.[code]

Returns:

  • OK.[item location]
  • ERROR.[error text]

Name

Named after Rear Admiral Grace Hopper.

See also: System naming