├── .gitignore ├── README.md ├── config.php.dist ├── getCurfewStatus.php ├── getDevices.php ├── getHousehold.php ├── getPet.php ├── getPetLocation.php ├── getPets.php ├── getTags.php ├── login.php ├── logout.php ├── pet_class.php ├── setEnableCurfew.php ├── setHubLedBrightness.php ├── setLockMode.php ├── setPetLocation.php └── whereIs.php /.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/README.md -------------------------------------------------------------------------------- /config.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/config.php.dist -------------------------------------------------------------------------------- /getCurfewStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getCurfewStatus.php -------------------------------------------------------------------------------- /getDevices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getDevices.php -------------------------------------------------------------------------------- /getHousehold.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getHousehold.php -------------------------------------------------------------------------------- /getPet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getPet.php -------------------------------------------------------------------------------- /getPetLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getPetLocation.php -------------------------------------------------------------------------------- /getPets.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getPets.php -------------------------------------------------------------------------------- /getTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/getTags.php -------------------------------------------------------------------------------- /login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/login.php -------------------------------------------------------------------------------- /logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/logout.php -------------------------------------------------------------------------------- /pet_class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/pet_class.php -------------------------------------------------------------------------------- /setEnableCurfew.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/setEnableCurfew.php -------------------------------------------------------------------------------- /setHubLedBrightness.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/setHubLedBrightness.php -------------------------------------------------------------------------------- /setLockMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/setLockMode.php -------------------------------------------------------------------------------- /setPetLocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/setPetLocation.php -------------------------------------------------------------------------------- /whereIs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alextoft/sureflap/HEAD/whereIs.php --------------------------------------------------------------------------------