Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added precisions in order to launch the framework #4

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,30 @@ hci0: Type: BR/EDR Bus: USB
RX bytes:1433 acl:0 sco:0 events:171 errors:0
TX bytes:30206 acl:0 sco:0 commands:170 errors:0
```
Then ensure that service bluetooth is started and open/initialize the HCI device:
```
$ sudo service bluetooth start
$ sudo hciconfig hci0 up
```

Also make sure your virtual machine has an IP address reachable from the host.

Launch the proxy in your virtual machine:

```
btlejuice-proxy
$ sudo btlejuice-proxy
```

On your host machine, don't forget to stop the bluetooth service and ensure the HCI device remains opened/initialized:
```
$ sudo service bluetooth start
$ sudo hciconfig hci0 up
```

And run the following command on your host machine:
Finally, run the following command on your host machine:

```
# btlejuice -u <Proxy IP address> -w
$ sudo btlejuice -u <Proxy IP address> -w
```

The *-w* flag tells BtleJuice to start the web interface while the *-u* option specifies the proxy's IP address.
Expand Down