add table of contents

reloxx13 2018-02-15 11:18:44 +01:00
parent e099832bfd
commit efae55f8c1
1 changed files with 23 additions and 1 deletions

@ -1,5 +1,20 @@
## Default
# Table of Contents
- [Basic Response](#basic-response)
- [MQTT](#mqtt)
- [Domoticz](#domoticz)
- [POW](#pow)
- [Sensors](#sensors)
- [AM2301](#am2301)
- [BMP280](#bmp280)
- [DHT11](#dht11)
- [DS18B20](#ds18b20)
- [SHT3X (and DHT11, multiple Sensor example)](#sht3x-and-dht11-multiple-sensor-example)
- [Bugged JSON in <= 5.10.0 (invalid JSON)](#bugged-json-in--5100-invalid-json)
- [PHP Fix for invalid JSON <= 5.10.0](#php-fix-for-invalid-json--5100)
## Basic Response
{
"Status": {
"Module": 1,
@ -147,7 +162,11 @@ After StatusTIM
"Current": 0.000
}
},
[Back to Top](#table-of-contents)
## Sensors
### AM2301
@ -212,6 +231,8 @@ After StatusTIM
}
}
[Back to Top](#table-of-contents)
## Bugged JSON in <= 5.10.0 (invalid JSON)
@ -399,3 +420,4 @@ Also, before 5.10.0j JSON was translated! (< 5.10.0j)
return $string;
}
[Back to Top](#table-of-contents)