An open API service indexing awesome lists of open source software.

https://github.com/yining1023/p5-ble-examples

Examples for p5.ble.js: https://github.com/yining1023/p5.ble.js
https://github.com/yining1023/p5-ble-examples

Last synced: 3 months ago
JSON representation

Examples for p5.ble.js: https://github.com/yining1023/p5.ble.js

Awesome Lists containing this project

README

          

# p5-ble-examples

## This repo is deprecated, it's moved to [ITPNYU/p5-ble-examples](https://github.com/ITPNYU/p5-ble-examples)

Examples for [p5.ble.js](https://github.com/yining1023/p5.ble.js), read more at [p5 ble website](https://yining1023.github.io/p5ble-website).

## Usage

Download or clone this repository:
```
git clone https://github.com/yining1023/p5-ble-examples.git
```

Change directory into the new folder and start a server.
An easy way to start a server is with python.

If you are have python 2:
```
cd p5-ble-examples
python -m SimpleHTTPServer
```
If you are have python 3:
```
cd p5-ble-examples
python -m http.server
```

Go to `localhost:8000` and click through each example

If you don't know how to start a server, check [this](https://github.com/processing/p5.js/wiki/Local-server) guide.