This commit is contained in:
Jan-Erik Rediger 2019-04-30 18:04:55 +02:00
Родитель f100884ec5
Коммит 3b8ac29017
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,19 @@
# Counter
Count how often something happens.
## Methods
* `add(amount)` - Increase the counter by `amount`.
## Limits
* Only increments, saturates at the limits of a 32-bit unsigned integer
## Examples
* How often a certain button was pressed?
## Recorded errors
* None.