first commit

This commit is contained in:
Jérôme Delacotte
2025-03-06 11:15:32 +01:00
commit 7b30d6e298
5276 changed files with 2108927 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
# Linux Quick Start Guide (Ubuntu, Raspberry Pi, ...)
0. Connect your Raspberry Pi to the internet and open it's console. ^_^
1. Install WiringPi:
http://wiringpi.com/download-and-install/
2. Download and build Blynk:
```bash
$ git clone https://github.com/blynkkk/blynk-library.git
$ cd blynk-library/linux
$ make clean all target=raspberry
```
3. Run Blynk:
```bash
$ sudo ./blynk --token=YourAuthToken
```
We have also provided a build script, you can try just running (inside of the "linux" directory):
```bash
$ ./build.sh raspberry
```