@RIKKO14 currently this module only supports Germany, Austria and NSW in Australia.
If you find an API for data in France the module can be expanded. A guide can be found here.
@eniac there are a couple of issues.
- You have the wrong format for the stationIds. It should be
stationIds: ["9ac83212-c785-476f-9862-34a4b04f6320"]. - I suggest not going lower than the default update interval of 15min. You currently fetch data every minute, which can lead to a suspension of your API key as other users experienced before. Also see limitations here https://creativecommons.tankerkoenig.de/terms
- The fuel type should be lowercase
- The fuel station id you tried is inside the default search radius. There seems to be a bug currently, where we still make a request even if the list is empty. I suggest to either disable the radius search or remove the station ids.
{
module: "MMM-Fuel",
position: "top_right",
config: {
api_key: "XXXXXXXXXXXX",
lat: 50.873798,
lng: 8.023410,
types: ["e5"],
stationIds: ["9ac83212-c785-476f-9862-34a4b04f6320"],
radius: 0
}
},
{
module: "MMM-Fuel",
position: "top_right",
config: {
api_key: "XXXXXXXXXXXX",
lat: 50.873798,
lng: 8.023410,
types: ["e5"]
}
},



