We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de7530 commit 69f1802Copy full SHA for 69f1802
libraries/Bluefruit52Lib/examples/Peripheral/hid_keyscan/hid_keyscan.ino
@@ -19,6 +19,7 @@
19
20
#include <bluefruit.h>
21
22
+BLEDis bledis;
23
BLEHidAdafruit blehid;
24
25
// Array of pins and its keycode
@@ -56,6 +57,11 @@ void setup()
56
57
Bluefruit.setTxPower(4);
58
Bluefruit.setName("Bluefruit52");
59
60
+ // Configure and Start Device Information Service
61
+ bledis.setManufacturer("Adafruit Industries");
62
+ bledis.setModel("Bluefruit Feather 52");
63
+ bledis.begin();
64
+
65
// set up pin as input
66
for (uint8_t i=0; i<pincount; i++)
67
{
0 commit comments