mirror of
https://github.com/Hypfer/Valetudo.git
synced 2025-10-26 11:27:27 +00:00
chore(release): 2023.03.0
This commit is contained in:
parent
aaa01bf3c0
commit
fc6b905a99
@ -104,7 +104,7 @@ Homie autodiscovery info is best viewed with something like [MQTT Explorer](http
|
||||
- [Error description (`error_description`)](#errordescriptionerrordescription)
|
||||
- [Robot Error (`error`)](#roboterrorerror)
|
||||
- [Status (`status`)](#statusstatus)
|
||||
- [Status detail (`detail`)](#statusdetaildetail)
|
||||
- [Status flag (`flag`)](#statusflagflag)
|
||||
|
||||
|
||||
### State attributes index
|
||||
@ -588,7 +588,6 @@ Sample payload:
|
||||
{
|
||||
"zones": [
|
||||
{
|
||||
"iterations": 1,
|
||||
"points": {
|
||||
"pA": {
|
||||
"x": 50,
|
||||
@ -608,7 +607,8 @@ Sample payload:
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
],
|
||||
"iterations": 1
|
||||
}
|
||||
```
|
||||
|
||||
@ -817,21 +817,6 @@ Home Assistant components controlled by this node:
|
||||
|
||||
- Error ([`sensor.mqtt`](https://www.home-assistant.io/integrations/sensor.mqtt/))
|
||||
|
||||
##### Status detail (`detail`) <a id="statusdetaildetail" />
|
||||
|
||||
*Property, readable, retained*
|
||||
|
||||
- Read topic: `<TOPIC PREFIX>/<IDENTIFIER>/StatusStateAttribute/detail`
|
||||
- Data type: [enum](https://homieiot.github.io/specification/#enum) (allowed payloads: `none`, `zone`, `segment`, `spot`, `target`, `resumable`, `mapping`)
|
||||
|
||||
Sample value:
|
||||
|
||||
```
|
||||
segment
|
||||
```
|
||||
|
||||
|
||||
|
||||
##### Robot Error (`error`) <a id="roboterrorerror" />
|
||||
|
||||
*Property, readable, retained*
|
||||
@ -871,6 +856,21 @@ No error
|
||||
|
||||
|
||||
|
||||
##### Status flag (`flag`) <a id="statusflagflag" />
|
||||
|
||||
*Property, readable, retained*
|
||||
|
||||
- Read topic: `<TOPIC PREFIX>/<IDENTIFIER>/StatusStateAttribute/flag`
|
||||
- Data type: [enum](https://homieiot.github.io/specification/#enum) (allowed payloads: `none`, `zone`, `segment`, `spot`, `target`, `resumable`, `mapping`)
|
||||
|
||||
Sample value:
|
||||
|
||||
```
|
||||
segment
|
||||
```
|
||||
|
||||
|
||||
|
||||
##### Status (`status`) <a id="statusstatus" />
|
||||
|
||||
*Property, readable, retained*
|
||||
|
||||
@ -681,4 +681,4 @@ Capability | <a href='#dreame_1c'>1C</a> | <a href='#dreame_1t'>1T</a> | <a href
|
||||
|
||||
<br/><br/><br/><br/><br/>
|
||||
This page has been autogenerated.<br/>
|
||||
Autogeneration timestamp: 2023-02-11T17:25:40.508Z
|
||||
Autogeneration timestamp: 2023-03-23T18:21:35.792Z
|
||||
|
||||
4
package-lock.json
generated
4
package-lock.json
generated
@ -1,12 +1,12 @@
|
||||
{
|
||||
"name": "valetudo",
|
||||
"version": "2023.02.0",
|
||||
"version": "2023.03.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "valetudo",
|
||||
"version": "2023.02.0",
|
||||
"version": "2023.03.0",
|
||||
"license": "Apache-2.0",
|
||||
"workspaces": [
|
||||
"backend",
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "valetudo",
|
||||
"version": "2023.02.0",
|
||||
"version": "2023.03.0",
|
||||
"description": "Self-contained control webinterface for vacuum robots",
|
||||
"license": "Apache-2.0",
|
||||
"engines": {
|
||||
|
||||
@ -623,7 +623,7 @@ class FakeMqttController extends MqttController {
|
||||
}
|
||||
|
||||
|
||||
isInitialized() {
|
||||
get isInitialized() {
|
||||
const stack = new Error().stack;
|
||||
|
||||
// Now this is some major jank engineering
|
||||
@ -636,7 +636,7 @@ class FakeMqttController extends MqttController {
|
||||
return true;
|
||||
}
|
||||
|
||||
return this.docsGenerated;
|
||||
return !!this.docsGenerated;
|
||||
}
|
||||
|
||||
async setState(state) {
|
||||
|
||||
@ -68,6 +68,7 @@ const HIDDEN_IMPLEMENTATIONS = [
|
||||
"DreameX10PlusValetudoRobot",
|
||||
"DreameD9ProPlusValetudoRobot",
|
||||
"DreameD10SProValetudoRobot",
|
||||
"DreameD10SPlusValetudoRobot",
|
||||
];
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user