-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpch.h
38 lines (29 loc) · 936 Bytes
/
pch.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
#pragma once
#ifdef CORE_DEBUG_LEVEL
#undef CORE_DEBUG_LEVEL
#endif
#define CORE_DEBUG_LEVEL 6
#define CONFIG_LOG_DEFAULT_LEVEL 6
// NeoPixel shield always communicates over PIN6. However, since we have a level-shifter
// between board-output to shield-input we must output over a different pin (PIN5)
//#define NEO_PIXEL_PIN 5
#define LAMP_COUNT 512
//#define PIXEL_TYPE NEO_GRBW + NEO_KHZ800
#define PIN 33
//#define NUMPIXELS 512
#include <Adafruit_NeoPixel.h>
#include "BLEDevice.h"
#include "BLEServer.h"
#include "BLEUtils.h"
#include "BLECharacteristic.h"
#include "BLEHIDDevice.h"
#include "BLEValue.h"
#include "BLEDescriptor.h"
#include "BLE2904.h"
#include "Arduino.h"
#include <atomic>
#include "lampArrayReports.h"
#include "lampArrayHidDescriptor.h"
#include "lampArrayAttributes.h"
#include "lampArray.h"