View bathscale.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Wireless Bathroom Scale | |
* Uses digispark pro (https://digistump.com) | |
* | |
* depends on hx711 and rcswitch libraries | |
* https://github.com/bogde/HX711 | |
* https://github.com/sui77/rc-switch | |
* | |
*/ | |
View class.psyutil.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# PsyUtils - Generic web toolkit for php 5.4+ | |
# Armagan Corlu aka PsyChip | |
# root@psychip.net | |
# March 2014 | |
$psy_mimetypes = [ | |
'cpt' => 'application/mac-compactpro', | |
'bin' => 'application/macbinary', |
View wifi_sensor_station.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SoftwareSerial.h> | |
#include <OneWire.h> | |
const String uniqid = "180316-003"; | |
const String serveraddr = "192.168.1.21"; | |
const String serverport = "3535"; | |
const String ssid = "your_ssid_here"; | |
const String password = "your_ssid_pass"; | |
int TMP = 13; |