12 lines
283 B
Plaintext
12 lines
283 B
Plaintext
#ifndef SECRETS_H
|
|
#define SECRETS_H
|
|
|
|
namespace Secrets
|
|
{
|
|
inline constexpr const char *kBleDeviceName = "YOUR_DEVICE_NAME";
|
|
inline constexpr const char *kBleServiceUuid = "YOUR_SERVICE_UUID";
|
|
inline constexpr const char *kBleCharacteristicUuid = "YOUR_CHARACTERISTIC_UUID";
|
|
}
|
|
|
|
#endif
|