element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Project14
  • Challenges & Projects
  • More
Project14
Forum how to write a code for coin acceptor for lpc1768, a arm microcontroller?
  • Blog
  • Forum
  • Documents
  • Theme Suggestions
  • Polls
  • Members
  • More
  • Cancel
  • New
Join Project14 to participate - click to join for free!
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Not Answered
  • Replies 0 replies
  • Subscribers 174 subscribers
  • Views 659 views
  • Users 0 members are here
Related

how to write a code for coin acceptor for lpc1768, a arm microcontroller?

raghavendra110996
raghavendra110996 over 7 years ago

i want to write a code for a coin acceptor in lpc1768.

Code is:

// Arduino coin acceptor code by hxlnt

// Originally created for "Adding a Coin Acceptor to Your Arduino Project" on the Maker Show

// See the entire video tutorial at https://channel9.msdn.com/Shows/themakershow/10

//

// Read your coin acceptor's specs and instructions first for hookup specifics

// Modifications to this code may be needed

// Coin acceptor model used in this example is JY-923

//

// xoxox

 

 

 

 

 

 

// Constants

const int coinpin = 2;

const int ledpin = 3;

const int targetcents = 100;

 

 

// Variables

volatile int cents = 0;

int credits = 0;

 

 

// Setup

void setup() {

 

  Serial.begin(9600);

  attachInterrupt(digitalPinToInterrupt(coinpin), coinInterrupt, RISING);

  pinMode(ledpin, OUTPUT);

 

}

 

 

// Main loop

void loop() {

 

  // If we've hit our target amount of coins, increment our credits and reset the cents counter

  if (cents >= targetcents) {

    credits = credits + 1;

    cents = cents - targetcents;

  }

 

 

  // If we haven't reached our target, keep waiting...

  else {

  }

 

 

  // Debugging zone

  Serial.print(cents);

  Serial.print(" cents toward current credit and ");

  Serial.print(credits);

  Serial.println(" credit(s) earned so far.");

  delay(1000);

 

 

  // Turn off LED

  digitalWrite(ledpin, LOW);

 

 

  // Now, write your own cool code here that triggers an event when the player has credits!

  if (credits > 0) {

    // Play music?

    // Spin up a motor?

    // Start a game?

    // It's up to you!

  }

 

}

 

 

// Interrupt

void coinInterrupt(){

 

  // Each time a pulse is sent from the coin acceptor, interrupt main loop to add 1 cent and flip on the LED

  cents = cents + 1;

  digitalWrite(ledpin, HIGH);

 

}

  • Sign in to reply
  • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube