Smart_Home is a home automation project suited for ESP boards family (including NodeMCU). It supports PWA; supports tons of sensors; has modern and elegant UI; is easily customizable; is multilangual.
Go to file
Romano Schoonheim c608b34de4 Merge branch '3.0' of https://git.steelants.cz/SH/PHP_SMART_HOME_V3 into 3.0 2021-01-10 10:37:00 -08:00
app Defice transformer for legacy support. 2021-01-07 12:30:46 -08:00
bootstrap 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
config 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
database Foregin Keys 2021-01-10 19:30:45 +01:00
public 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
resources 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
routes 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
storage 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
tests 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
.editorconfig 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
.env.bak Defice transformer for legacy support. 2021-01-07 12:30:46 -08:00
.env.example Defice transformer for legacy support. 2021-01-07 12:30:46 -08:00
.env.example.bak 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
.gitattributes 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
.gitignore Git ignore: VS Code Config Foler 2021-01-08 10:10:27 +01:00
.styleci.yml 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
README.md project structure refactoring 2020-04-27 21:07:31 +02:00
artisan 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
composer.json Remove sail 2021-01-10 10:36:53 -08:00
composer.lock 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
package.json 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
phpunit.xml 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
server.php 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00
webpack.mix.js 3.0: Dockerized laravel 8.0 2021-01-07 10:24:30 -08:00

README.md


Make your own Smart Home automation system


Explore wikis Report bugs

PHP JS HTML License: MIT Discord

About Smart_Home

Smart_Home is a home automation project suited for ESP boards family (including NodeMCU). It supports PWA; supports tons of sensors; has modern and elegant UI; is easily customizable; is multilangual.

What works with Smart_Home?

  • temperature sensors (e.g. DHT11/22)
  • humidity sensors (e.g. DHT11/22)
  • light detectors
  • water leak sensors
  • voltage meters
  • electricity consumption meters
  • switches
  • and many more!

Table of Contents

Screenshots

Browser (Desktop PWA)

Mobile (PWA)

Installation

See Wikis for help about installation, usage and troubleshooting.

API

POST Message (switch)

{
	"token":"2"
}

Answer (switch)

{
	"device":{
		"hostname":"2",
		"sleepTime":0
		},
		"state":"succes",
		"value":"0"
	}
}

POST Message (sensor)

{
	"token":"4",
	"values":{
		"door":{
			"value":1
		}
	}
}

Answer (sensor)

{

}

Contributing

Contributions are what make the open source community such an amazing place to be learn, inspire, and create. If you know how to fix, improve or optimze something, go ahead and contribute! Help is greatly appreciated.

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Make sure everything works as intended
  6. Open a Pull Request

License

Distributed under the MIT License. See LICENSE for more information.

Authors

Project Link: https://github.com/GamerClassN7/Smart_Home/

Tags (ignore): ESP32 ESP12 ESP08 ESP01 ESP Smart Home Automation System PWA PHP HTML JS DHT11 DHT22

Folder structure

- /app								# app specific files
	- /controllers
		- UserController.php
	- /library						# helpers etc.
	- /models
		- /types
			- Units.php
		- UserModal.php
	- /views
		- /layouts
			- default.phtml
		- /templates
			- /components
			- /pages
	- Bootstrap.php
	- Db.php
	- Routes.php
- /library 							# framework, 3rd libraries etc.
	- /vendor
	- Controller.php
	- Db.php
	- Router.php
- config
	- config.php /
- public
	- /css
	- /images
	- /js
	- .htaccess
	- index.php