Skip to content

Commit 1cedf5c

Browse files
committed
remove linebreaks in function declarations
works around issue arduino/arduino-builder#80
1 parent d32e9c9 commit 1cedf5c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

arduino/BLE_NeoPixel/BLE_NeoPixel.ino

+3-6
Original file line numberDiff line numberDiff line change
@@ -76,19 +76,16 @@ void loop() {
7676
blePeripheral.poll();
7777
}
7878

79-
void colorCharacteristicWritten(BLECentral& central,
80-
BLECharacteristic& characteristic) {
79+
void colorCharacteristicWritten(BLECentral& central, BLECharacteristic& characteristic) {
8180
updateLights();
8281
}
8382

84-
void brightnessCharacteristicWritten(BLECentral& central,
85-
BLECharacteristic& characteristic) {
83+
void brightnessCharacteristicWritten(BLECentral& central, BLECharacteristic& characteristic) {
8684
pixels.setBrightness(brightnessCharacteristic.value());
8785
updateLights();
8886
}
8987

90-
void switchCharacteristicWritten(BLECentral& central,
91-
BLECharacteristic& characteristic) {
88+
void switchCharacteristicWritten(BLECentral& central, BLECharacteristic& characteristic) {
9289
processSwitchChange();
9390
}
9491

0 commit comments

Comments
 (0)