snake_case -> camelCase in docs

This commit is contained in:
Thomas Denney
2016-07-19 11:42:42 +01:00
parent 64ebb5c8c3
commit 6a5cfae5ff
6 changed files with 18 additions and 18 deletions

View File

@ -18,15 +18,15 @@ bluetooth.uartRead("");
### Example: Starting the Bluetooth UART service and then reading data received from another device which is terminated by ":" character and then displaying it
```blocks
let uart_data = "";
let uartData = "";
let connected = 0;
basic.showString("UART");
bluetooth.onBluetoothConnected(() => {
basic.showString("C");
connected = 1;
while (connected == 1) {
uart_data = bluetooth.uartRead(":");
basic.showString(uart_data);
uartData = bluetooth.uartRead(":");
basic.showString(uartData);
}
});
bluetooth.onBluetoothDisconnected(() => {