I'm trying to build a coin acceptor. I'm building this with the goal of replicating a simple piggy bank that would display the inputted balance on an LED screen and I also want that balance to be displayed on a webpage (WiFi connected).
I have two questions:
*Does the coin acceptor hook up directly to the Arduino or do I need some sort of converter?
*In terms of sending the data to a computer in realtime (after every inserted coin), I looked online and found that an Ethernet shield was the recommended solution, however I want to know if this is possible wirelessly?
With regards to the coin detector; the datasheet states that it runs on 12V so the output is more than likely 12V as well (and that will kill your Arduino).
It should be possible to use wireless; other option is serial (but I guess you don't want cables).
sterretje:
With regards to the coin detector; the datasheet states that it runs on 12V so the output is more than likely 12V as well (and that will kill your Arduino).
powering the board (yes, you can power it with 12V)
IO levels on the pins
The 12V power on the barrel is reduced to 5V for the electronics on the board; and that is the maximum voltage that you can apply to the IO pins.
You can power the Arduino with 6V; the regulator will bring it down to below 5V (safe for the microcontroller); it will probably be around 4.5V and that will be the maximum that can apply to the IO pins.
.
Less than likely. According to the video on the Sparkfun product page, the output of the coin acceptor is 9600 Baud (RS232) serial, compatible with a USB-Serial adapter like the FTDI. That strongly implies that the output levels are 0 and 5V, but I would check with an oscilloscope or multimeter first.