spitzlbergerj / MMM-TeslaLogger

Module for MagicMirror showing data from the Teslalogger or teslamate subscribed to via MQTT
GNU Affero General Public License v3.0
5 stars 3 forks source link

not showing any data #19

Open threesquare opened 1 year ago

threesquare commented 1 year ago

i've setup MQTT properly, it is sending data to MMM-Teslamate and I'm also running with MMM-teslalogger. MMM-teslamate is showing the correct data, while MMM-teslalogger is not showing anything. I check my MQTT server log and it does indeed shows 2 connections

1676855321: New client connected from 192.168.1.37:49988 as mqttjs_14f45d87 (p2, c1, k60). 1676855321: New client connected from 192.168.1.37:59538 as mqttjs_2ea13975 (p2, c1, k60).

here is my config for teslalogger

`{ module: 'MMM-TeslaLogger', position: 'top_right', header: 'Tesla', config: { mqttServerAddress: '192.168.1.20', mqttServerPort: '1883', // mqttServerUser: '', // mqttServerPassword: '', mqttTopics: [ "Tesla", "teslamate/cars/1/+", ], logging: true, calcToImperials: true, localeStr: 'en-US', maxAgeSeconds: 36000, style: "lines",

    displayState: true,
    displayOdometer: true,
    displayOutside_temp: true,
    displayBattery_level: true,
    displayCharger_actual_current: true,
    displayInside_temperature: true,
    displaySentry_mode: true,
    displayLock: true,
}

},`