mirror of
https://github.com/openhab/openhab-addons.git
synced 2025-01-10 23:22:02 +01:00
Update README.md correct channel name (#17106)
the item channel name is incorrect also removed some items which are no longer in thing channel ideally owner of addon should also review the rest of the documentation Signed-off-by: mtraxiot <37993378+mtraxiot@users.noreply.github.com> Signed-off-by: Ciprian Pascu <contact@ciprianpascu.ro>
This commit is contained in:
parent
962eacd382
commit
2a6a09b803
@ -212,68 +212,66 @@ Bridge tesla:account:myaccount "My Tesla Account" [ refreshToken="xxxx" ] {
|
|||||||
demo.items:
|
demo.items:
|
||||||
|
|
||||||
```java
|
```java
|
||||||
DateTime TeslaEventstamp {channel="account:model3:myaccount:mycar:eventstamp"}
|
DateTime TeslaEventstamp {channel="tesla:model3:myaccount:mycar:eventstamp"}
|
||||||
String TeslaState {channel="account:model3:myaccount:mycar:state"}
|
String TeslaState {channel="tesla:model3:myaccount:mycar:state"}
|
||||||
Number TeslaSpeed {channel="account:model3:myaccount:mycar:speed"}
|
Number TeslaSpeed {channel="tesla:model3:myaccount:mycar:speed"}
|
||||||
String TeslaShiftState {channel="account:model3:myaccount:mycar:shiftstate"}
|
String TeslaShiftState {channel="tesla:model3:myaccount:mycar:shiftstate"}
|
||||||
Number TeslaOdometer {channel="account:model3:myaccount:mycar:odometer"}
|
Number TeslaOdometer {channel="tesla:model3:myaccount:mycar:odometer"}
|
||||||
Number TeslaRange {channel="account:model3:myaccount:mycar:range"}
|
Number TeslaRange {channel="tesla:model3:myaccount:mycar:range"}
|
||||||
|
|
||||||
Number TeslaBatteryLevel {channel="account:model3:myaccount:mycar:batterylevel"}
|
Number TeslaBatteryLevel {channel="tesla:model3:myaccount:mycar:batterylevel"}
|
||||||
Number TeslaPower {channel="account:model3:myaccount:mycar:power"}
|
Number TeslaPower {channel="tesla:model3:myaccount:mycar:power"}
|
||||||
Number TeslaBatteryCurrent {channel="account:model3:myaccount:mycar:batterycurrent"}
|
Number TeslaBatteryCurrent {channel="tesla:model3:myaccount:mycar:batterycurrent"}
|
||||||
Number TeslaBatteryRange {channel="account:model3:myaccount:mycar:batteryrange"}
|
Number TeslaBatteryRange {channel="tesla:model3:myaccount:mycar:batteryrange"}
|
||||||
Number TeslaEstBatteryRange {channel="account:model3:myaccount:mycar:estimatedbatteryrange"}
|
Number TeslaEstBatteryRange {channel="tesla:model3:myaccount:mycar:estimatedbatteryrange"}
|
||||||
Number TeslaIdealBatteryRange {channel="account:model3:myaccount:mycar:idealbatteryrange"}
|
Number TeslaIdealBatteryRange {channel="tesla:model3:myaccount:mycar:idealbatteryrange"}
|
||||||
Number TeslaUsableBatteryLevel {channel="account:model3:myaccount:mycar:usablebatterylevel"}
|
Number TeslaUsableBatteryLevel {channel="tesla:model3:myaccount:mycar:usablebatterylevel"}
|
||||||
Switch TeslaPreconditioning {channel="account:model3:myaccount:mycar:preconditioning"}
|
Switch TeslaPreconditioning {channel="tesla:model3:myaccount:mycar:preconditioning"}
|
||||||
|
|
||||||
Switch TeslaCharge {channel="account:model3:myaccount:mycar:charge"}
|
Switch TeslaCharge {channel="tesla:model3:myaccount:mycar:charge"}
|
||||||
Switch TeslaChargeToMax {channel="account:model3:myaccount:mycar:chargetomax"}
|
Switch TeslaChargeToMax {channel="tesla:model3:myaccount:mycar:chargetomax"}
|
||||||
|
|
||||||
Dimmer TeslaChargeLimit {channel="account:model3:myaccount:mycar:chargelimit"}
|
Dimmer TeslaChargeLimit {channel="tesla:model3:myaccount:mycar:chargelimit"}
|
||||||
Number TeslaChargeRate {channel="account:model3:myaccount:mycar:chargerate"}
|
Number TeslaChargeRate {channel="tesla:model3:myaccount:mycar:chargerate"}
|
||||||
String TeslaChargingState {channel="account:model3:myaccount:mycar:chargingstate"}
|
String TeslaChargingState {channel="tesla:model3:myaccount:mycar:chargingstate"}
|
||||||
Number TeslaChargerPower {channel="account:model3:myaccount:mycar:chargerpower"}
|
Number TeslaChargerPower {channel="tesla:model3:myaccount:mycar:chargerpower"}
|
||||||
Number TeslaTimeToFullCharge {channel="account:model3:myaccount:mycar:timetofullcharge"}
|
Number TeslaTimeToFullCharge {channel="tesla:model3:myaccount:mycar:timetofullcharge"}
|
||||||
Number TeslaMaxCharges {channel="account:model3:myaccount:mycar:maxcharges"}
|
Number TeslaMaxCharges {channel="tesla:model3:myaccount:mycar:maxcharges"}
|
||||||
|
|
||||||
Number TeslaChargerVoltage {channel="account:model3:myaccount:mycar:chargervoltage"}
|
Number TeslaChargerVoltage {channel="tesla:model3:myaccount:mycar:chargervoltage"}
|
||||||
Number TeslaChargerCurrent {channel="account:model3:myaccount:mycar:chargercurrent"}
|
Number TeslaChargerCurrent {channel="tesla:model3:myaccount:mycar:chargercurrent"}
|
||||||
|
|
||||||
DateTime TeslaScheduledChargingStart {channel="account:model3:myaccount:mycar:scheduledchargingstart"}
|
DateTime TeslaScheduledChargingStart {channel="tesla:model3:myaccount:mycar:scheduledchargingstart"}
|
||||||
Dimmer TeslaSoC {channel="account:model3:myaccount:mycar:soc"}
|
Dimmer TeslaSoC {channel="tesla:model3:myaccount:mycar:soc"}
|
||||||
|
|
||||||
Switch TeslaDoorLock {channel="account:model3:myaccount:mycar:doorlock"}
|
Switch TeslaDoorLock {channel="tesla:model3:myaccount:mycar:doorlock"}
|
||||||
Switch TeslaHorn {channel="account:model3:myaccount:mycar:honkhorn"}
|
Switch TeslaHorn {channel="tesla:model3:myaccount:mycar:honkhorn"}
|
||||||
Switch TeslaStart {channel="account:model3:myaccount:mycar:remotestart"}
|
Switch TeslaStart {channel="tesla:model3:myaccount:mycar:remotestart"}
|
||||||
Switch TeslaSentry {channel="account:model3:myaccount:mycar:sentrymode"}
|
Switch TeslaSentry {channel="tesla:model3:myaccount:mycar:sentrymode"}
|
||||||
Switch TeslaLights {channel="account:model3:myaccount:mycar:flashlights"}
|
Switch TeslaLights {channel="tesla:model3:myaccount:mycar:flashlights"}
|
||||||
Switch TeslaValet {channel="account:model3:myaccount:mycar:valetmode"}
|
Switch TeslaValet {channel="tesla:model3:myaccount:mycar:valetmode"}
|
||||||
|
|
||||||
Switch TeslaWakeup {channel="account:model3:myaccount:mycar:wakeup"}
|
Switch TeslaWakeup {channel="tesla:model3:myaccount:mycar:wakeup"}
|
||||||
|
|
||||||
Switch TeslaBatteryHeater {channel="account:model3:myaccount:mycar:batteryheater"}
|
Switch TeslaFrontDefrost {channel="tesla:model3:myaccount:mycar:frontdefroster"}
|
||||||
Switch TeslaFrontDefrost {channel="account:model3:myaccount:mycar:frontdefroster"}
|
Switch TeslaRearDefrost {channel="tesla:model3:myaccount:mycar:reardefroster"}
|
||||||
Switch TeslaRearDefrost {channel="account:model3:myaccount:mycar:reardefroster"}
|
Switch TeslaLeftSeatHeater {channel="tesla:model3:myaccount:mycar:leftseatheater"}
|
||||||
Switch TeslaLeftSeatHeater {channel="account:model3:myaccount:mycar:leftseatheater"}
|
Switch TeslaRightSeatHeater {channel="tesla:model3:myaccount:mycar:rightseatheater"}
|
||||||
Switch TeslaRightSeatHeater {channel="account:model3:myaccount:mycar:rightseatheater"}
|
|
||||||
|
|
||||||
Switch TeslaHomelink {channel="account:model3:myaccount:mycar:homelink"}
|
Switch TeslaHomelink {channel="tesla:model3:myaccount:mycar:homelink"}
|
||||||
Location TeslaLocation {channel="account:model3:myaccount:mycar:location"}
|
Location TeslaLocation {channel="tesla:model3:myaccount:mycar:location"}
|
||||||
Number TeslaHeading {channel="account:model3:myaccount:mycar:heading"}
|
Number TeslaHeading {channel="tesla:model3:myaccount:mycar:heading"}
|
||||||
DateTime TeslaLocationTime {channel="account:model3:myaccount:mycar:gpstimestamp"}
|
DateTime TeslaLocationTime {channel="tesla:model3:myaccount:mycar:gpstimestamp"}
|
||||||
|
|
||||||
Switch TeslaAutoconditioning {channel="account:model3:myaccount:mycar:autoconditioning"}
|
Switch TeslaAutoconditioning {channel="tesla:model3:myaccount:mycar:autoconditioning"}
|
||||||
Number:Temperature TeslaTemperature {channel="account:model3:myaccount:mycar:temperature"}
|
Number:Temperature TeslaTemperatureCombined {channel="tesla:model3:myaccount:mycar:combinedtemp"}
|
||||||
Number:Temperature TeslaTemperatureCombined {channel="account:model3:myaccount:mycar:combinedtemp"}
|
Number:Temperature TeslaInsideTemperature {channel="tesla:model3:myaccount:mycar:insidetemp"}
|
||||||
Number:Temperature TeslaInsideTemperature {channel="account:model3:myaccount:mycar:insidetemp"}
|
Number:Temperature TeslaOutsideTemperature {channel="tesla:model3:myaccount:mycar:outsidetemp"}
|
||||||
Number:Temperature TeslaOutsideTemperature {channel="account:model3:myaccount:mycar:outsidetemp"}
|
|
||||||
|
|
||||||
String TeslaDestinationName {channel="account:model3:myaccount:mycar:destinationname"}
|
String TeslaDestinationName {channel="tesla:model3:myaccount:mycar:destinationname"}
|
||||||
Location TeslaDestinationLocation {channel="account:model3:myaccount:mycar:destinationlocation"}
|
Location TeslaDestinationLocation {channel="tesla:model3:myaccount:mycar:destinationlocation"}
|
||||||
Number:Time TeslaMinutesToArrival {channel="account:model3:myaccount:mycar:minutestoarrival", unit="min"}
|
Number:Time TeslaMinutesToArrival {channel="tesla:model3:myaccount:mycar:minutestoarrival", unit="min"}
|
||||||
Number:Length TeslaDistanceToArrival {channel="account:model3:myaccount:mycar:distancetoarrival"}
|
Number:Length TeslaDistanceToArrival {channel="tesla:model3:myaccount:mycar:distancetoarrival"}
|
||||||
```
|
```
|
||||||
|
|
||||||
demo.sitemap:
|
demo.sitemap:
|
||||||
|
Loading…
Reference in New Issue
Block a user