Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Circle | 1,491 | 5 days ago | 16 | gpl-3.0 | C | |||||
A C++ bare metal environment for Raspberry Pi with USB (32 and 64 bit) | ||||||||||
Pi Webcam | 1,228 | a year ago | 10 | mit | ||||||
Automation to configure a Raspberry Pi as a USB OTG webcam | ||||||||||
Fadecandy | 1,198 | a year ago | 60 | mit | C | |||||
Easy to use open source hardware to drive WS2811 LEDs with high-quality color | ||||||||||
Rpi4 | 929 | 3 months ago | 83 | other | ||||||
Raspberry Pi 4 UEFI Firmware Images | ||||||||||
Crocodilehunter | 798 | a month ago | 32 | gpl-3.0 | Python | |||||
Taking one back for Steve Irwin (๑•̀ㅂ•́)و | ||||||||||
Enclosure Picroft | 768 | 3 months ago | 22 | lgpl-3.0 | Shell | |||||
Mycroft interface for Raspberry Pi environment | ||||||||||
Raspberrypipkg | 762 | 3 years ago | 2 | C | ||||||
DEPRECATED - DO NOT USE | Go here instead -> | ||||||||||
Usbboot | 668 | 4 days ago | 13 | apache-2.0 | Python | |||||
Raspberry Pi USB booting code, moved from tools repository | ||||||||||
Pi Pwnbox Rogueap | 645 | 2 years ago | gpl-3.0 | Shell | ||||||
Homemade Pwnbox :rocket: / Rogue AP :satellite: based on Raspberry Pi — WiFi Hacking Cheatsheets + MindMap :bulb: | ||||||||||
Pistorm | 616 | 23 days ago | 6 | mit | C | |||||
68k Hardware Emulator |
This is a version with MySQL as the main base and sqlite3 for sensors data. This is a must because SQLite can't handle many writers at once. Setup scripts install MySQL server, create a database, all data, and all configurations.
sudo apt install sudo git
sudo mkdir -p /var/www/ && cd /var/www/ && git clone https://github.com/sosprz/nettemp && cd nettemp && ./setup.sh
sudo su -
/var/www/nettemp/app/scripts/update.sh
user: admin
password: admin
Request:
curl -k -s -X POST -H 'Accept: application/json' -H 'Content-Type: application/json' --data '{"username":"test","password":"secret_password"}' https://172.18.10.10/register
Reply:
{"access_token":"eyJ0eXAiO1NiJ9.eyJpYXQiOj2Nlc3MifQ.Sxjv3LXe1F916TaRFF5ODpsg"}
Token: eyJ0eXAiO1NiJ9.eyJpYXQiOj2Nlc3MifQ.Sxjv3LXe1F916TaRFF5ODpsg
requests.packages.urllib3.disable_warnings()
import json
token = 'eyJ0eXAiO1NiJ9.eyJpYXQiOj2Nlc3MifQ.Sxjv3LXe1F916TaRFF5ODpsg'
def send(token,data):
url = "https://172.18.10.10/sensor"
r = requests.post(url,headers={'Content-Type':'application/json', 'Authorization': 'Bearer {}'.format(token)},json=data, verify=False)
print (r.content)
data = [{"rom":"ds18b20-sensor-1","type":"temp","name":"DS18B20","value":"-10"}]
send(token, data)
curl -k -H "Content-Type: application/json" -H 'Authorization: Bearer eyJXJ9.eIn0.fc' --request POST --data '[{"rom":"ds18b20-host1","type":"temp","name":"DS18b20","value":"12"}]' https://172.18.10.12/sensor