updated config.example.h and a inlude statement to it in the main.c

This commit is contained in:
Jens Noack 2025-03-18 08:55:15 +01:00
parent 731301a55a
commit c54a0c07cc
2 changed files with 13 additions and 8 deletions

View file

@ -11,8 +11,12 @@ static const uint8_t COIN_PIN = 17; // pin at the ESP32 the HX916 COIN si
static const uint8_t MOSFET_PIN = 16; // pin at the ESP32 the HX916 SET signal is connected at (Please connect the signal that is pulled up by default)
//* Button connections: *//
static const uint8_t LED_BUTTON_PIN = 21; // pin at the ESP32 the LED of the button is connected at
static const uint8_t BUTTON_PIN = 32; // pin at the ESP32 the button is connected at
static const uint8_t OK_LED_BUTTON_PIN = 21; // pin at the ESP32 the LED of the OK button is connected at
static const uint8_t OK_BUTTON_PIN = 32; // pin at the ESP32 the button is OK connected at
static const uint8_t CANCEL_LED_BUTTON_PIN = 0; // pin at the ESP32 the LED of the OK button is connected at
static const uint8_t CANCEL_BUTTON_PIN = 15; // pin at the ESP32 the button is OK connected at
//* eInk display *//
static const uint8_t DSPLY_PIN_CS = 26; // pin at the ESP32 the display CS pin is connected at
@ -23,13 +27,14 @@ static const uint8_t DSPLY_PIN_BUSY = 27; // pin at the ESP32 the display BUSY
//* HX916 coin pulse configuration *//
static constexpr unsigned int COINS[] = { 1, 2, 5, 10, 20, 50, 100, 200}; // teached values of coins
static constexpr size_t COINS_COUNT = sizeof(COINS) / sizeof(COINS[0]); // number of teached values
static const unsigned long COIN_PULSE_WIDTH_MS = 45; // set by switch at HX916: fast = 25, med = 35, slow=45
static const unsigned long COIN_PULSE_WIDTH_MS = 40; // set by switch at HX916: fast = 30, med = 50ms, slow=100ms, there is always 100ms pause
static const unsigned int MAX_ALLOWED_EUROCENT_VALUE = 1000; // This is the maximum value that can be insterted into the ATM in one session
//* Config data required by the bleskomat based ATM, to comunicate with the LNBITS server *//
static const char* APIKEY_ID = "Place your apikey ID here.";
static const char* APIKEY_KEY = "Place your apikey key here.";
static const char* APIKEY_ID = "your API id here";
static const char* APIKEY_KEY = "your API key here";
static const char* APIKEY_ENCODING = "hex";
static const char* CALLBACK_URL = "Place your callback URL here.";
static const char* CALLBACK_URL = "https://lnbits.makerlab-murnau.de/bleskomat/u";
static const bool SHORTEN = true;
#endif

View file

@ -4,8 +4,8 @@
#include "button.h"
#include "coinacceptor.h"
#include "state.h"
//#include "lnurlutil.h"
#include "config.h"
#include "config.h" // config.h is not in the repository - it contains all the key that are private :-)
//#include "config.example.h" // please take the example config and rename it to config.h and add your keys and ids there. Dont forget to rename it :-)
EpaperDisplay epDisp(DSPLY_PIN_CS, DSPLY_PIN_DC, DSPLY_PIN_RST, DSPLY_PIN_BUSY);
AtmButton ok_button(OK_BUTTON_PIN, OK_LED_BUTTON_PIN);