Skip to content

Commit b92b55b

Browse files
committed
nrf5/bluetooth: Updating Eddystone URL to point to https://goo.gl/x46FES which hosts the MicroPython WebBluetooth application which will be able to connect to the Bluetooth LE UART service of the device and create the REPL.
1 parent a4173c4 commit b92b55b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

nrf5/bluetooth/ble_uart.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,9 +214,9 @@ void ble_uart_init0(void) {
214214
m_adv_data_uart_service.connectable = true;
215215

216216
#if BLUETOOTH_WEBBLUETOOTH_REPL
217-
static uint8_t eddystone_url_data[26] = {0x2, 0x1, 0x6,
217+
static uint8_t eddystone_url_data[27] = {0x2, 0x1, 0x6,
218218
0x3, 0x3, 0xaa, 0xfe,
219-
18, 0x16, 0xaa, 0xfe, 0x10, 0xee, 0x0, 'm', 'i', 'c', 'r', 'o', 'p', 'y', 't', 'h', 'o', 'n', 0x1};
219+
19, 0x16, 0xaa, 0xfe, 0x10, 0xee, 0x3, 'g', 'o', 'o', '.', 'g', 'l', '/', 'x', '4', '6', 'F', 'E', 'S'};
220220
// eddystone url adv data
221221
m_adv_data_eddystone_url.p_data = eddystone_url_data;
222222
m_adv_data_eddystone_url.data_len = sizeof(eddystone_url_data);

0 commit comments

Comments
 (0)