Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 308 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 308 Bytes

GeigerCounter

Install

Clone repository in Arduino libraries folder:

git clone [email protected]:mc17uulm/GeigerCounter.git

Usage

Arduino IDE

#include "./src/GeigerCounter.h"

GeigerCounter app;

void setup() {
  app.setup();
}

void loop() {
  app.loop();
}