Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Script funktioniert nach iobroker Script Adapter Update nicht mehr #44

Open
stefa81 opened this issue Jun 1, 2024 · 1 comment
Open

Comments

@stefa81
Copy link

stefa81 commented Jun 1, 2024

Hallo 100prznt,

nach dem Update des Skript Adapters im iobroker funktioniert das Skript leider nicht mehr. Ich denke es hängt mit dem nicht mehr unterstützten request Befehl zusammen. Da ich davon keine Ahnung habe, meine bitte, ob du das bitte umschreiben kannst, das es wieder funktioniert?

Das wäre nett, und vielleicht hilft es dem einen oder anderen auch!

Vielen Dank!

Hier nochmal das nicht funktionierende Skript:

`const url = 'http://192.168.178.59/api/fetch';
const idTemp = '0_userdata.0.EzoGateway.Temperatur';
const idPH = '0_userdata.0.EzoGateway.pH_Wert';
const idRedox = '0_userdata.0.EzoGateway.Redox_Potential';

schedule('* * * * *', function() { //every minute
request(url, function(error, response, result) {
let obj = JSON.parse(result);
setState(idTemp, obj['1'].Value, true);
setState(idPH, obj['2'].Value, true);
setState(idRedox, obj['3'].Value, true);
});
});`

Gruß

@flapman
Copy link

flapman commented Jun 30, 2024

Das skript kommt von Paul53 im Forum. Besser du fragst da nochmal nach.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants