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

24
libraries/Blynk/linux/build.sh Executable file
View File

@@ -0,0 +1,24 @@
#!/bin/bash
case "$1" in
raspberry)
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install build-essential git-core
git clone git://git.drogon.net/wiringPi
cd wiringPi
git pull origin
./build
gpio -v
cd ..
make clean all target=raspberry
exit 0
;;
linux)
make clean all
exit 0
;;
esac
echo "Please specify platform: raspberry, linux"
exit 1