Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
fix #5
  • Loading branch information
debsahu committed Sep 28, 2021
1 parent 149480d commit ba31066
Show file tree
Hide file tree
Showing 5 changed files with 378 additions and 266 deletions.
4 changes: 4 additions & 0 deletions examples/HAToggleLight/HAToggleLight.ino
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
#ifdef ESP8266
#include <ESP8266WiFi.h>
#elif defined(ESP32)
#include <WiFi.h>
#endif
#include <Bounce2.h> // https://github.com/thomasfredericks/Bounce2
#include <HARestAPI.h>
//#include "secret.h";
Expand Down
8 changes: 4 additions & 4 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "HARestAPI",
"keywords": "twitter",
"description": "Library for talking to Home Assistant on ESP8266.",
"keywords": "home assistant",
"description": "Library for talking to Home Assistant on WiFi devices.",
"repository":
{
"type": "git",
"url": "https://github.com/debsahu/HARestAPI.git"
},
"frameworks": "arduino",
"platforms": "espressif8266",
"version": "0.2"
"platforms": [ "espressif8266", "espressif32", "atmelsam" ],
"version": "0.3"
}
6 changes: 3 additions & 3 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=HARestAPI
version=0.2
version=0.3
author=debsahu
maintainer=debsahu
sentence=Home Assistant Rest API
paragraph=Library for talking to Home Assistant on ESP8266.
paragraph=Library for talking to Home Assistant on WiFi devices.
category=Communication
url=https://github.com/debsahu/HARestAPI.git
architectures=esp8266
architectures=esp8266,esp32,atmelsam
Loading

0 comments on commit ba31066

Please sign in to comment.