Generalized-Core-Counter 3.20
Particle-based generalized core counter firmware
Loading...
Searching...
No Matches
ProjectConfig.h
Go to the documentation of this file.
1#pragma once
2
3// Project-wide configuration hooks for product-specific settings
4// (webhook names, defaults, etc.) so that different products can
5// share the same core firmware with minimal changes.
6namespace ProjectConfig {
7
8// Webhook event name used for hourly data publishes. Change this in
9// one place when reusing the firmware in a new product.
10static inline const char *webhookEventName() {
11 return "Ubidots-Counter-Hook-v1";
12}
13
14} // namespace ProjectConfig