Skip to main content

Fotobooth

Code voor Arduino

#include <Keyboard.h>

const int inputPin = 12; // Pin connected to Nayax output
int lastState = LOW;     // Previous state of the input pin
int count;

void setup() {
  pinMode(inputPin, INPUT);         // Set the pin as input
  digitalWrite(LED_BUILTIN, HIGH);  // initialize digital pin LED_BUILTIN as an output.
  pinMode(LED_BUILTIN, OUTPUT);     // turn the LED on (HIGH is the voltage level)
  Keyboard.begin();                 // Initialize the keyboard emulation
  Serial.begin(9600);
  count = 0;
  delay(5000);                       // Delay to give time to connect the Arduino
  digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
}

void loop() {

  int currentState = digitalRead(inputPin);  // Read the Nayax signal

  // Check if the state has changed from LOW to HIGH     
  if (currentState == HIGH && lastState == LOW) {
    count++;
    Serial.print("Pulse: ");
    Serial.println(count);   
    digitalWrite(LED_BUILTIN, HIGH);   // turn the LED on (HIGH is the voltage level)
    Keyboard.press(0x20);              // press space
    delay(100); 
    Keyboard.releaseAll();             // Release the key
    delay(1000);                        // Debounce delay to prevent multiple triggers
    digitalWrite(LED_BUILTIN, LOW);    // turn the LED off by making the voltage LOW
  }

  lastState = currentState;  // Update the last state
}

Aansluitschema

Arduino 5v - Optocoupler +
Arduino  GRND - weerstand 10K - pin12
Arduino Pin 12 - GRND Optocoupler
Optocoupler primair 12 volt via 10K weerstand

Pin 12 wordt met een pull down weerstand laag (0) gehouden. De (1) is 5V wordt via de optocoupler verbonden aan pin12 als er een signaal via de optocoupler binnenkomt. De stroom die door de 10K weerstand loopt als de optocoupler 'aan' staat, is 0.5 mA (2.5 mW).

De 10K weerstand voor de 12v primaire kant v/d optocoupler is proefondervindelijk vastgesteld. Bij 12v en 10K weerstand staat er 5v op de primare ingang en werkt de optocoupler goed. Meer spanning (lager weerstand kan) volgens de specs maar is onnodig.