1#ifndef DSGC_RADIOBUTTON_H
2#define DSGC_RADIOBUTTON_H
7 class RadioButton :
public Component {
10 const unsigned int radius;
12 RadioButton(
Adafruit_GFX &graphics,
unsigned int x,
unsigned int y,
unsigned int diameter = 7);
14 virtual void paint()
override;
16 void setChecked(
bool checked);
Definition Adafruit_GFX.h:18