@skywatch Thank you very much, I'll sure check myself this questions while choosing.
Feliw05
@Feliw05
Best posts made by Feliw05
-
RE: How can I choose a controller?
Latest posts made by Feliw05
-
eventsystem: problem writing file
Hello everyone, I am having problem when trying to save to dzVents code, the log page says Error: EventSystem: problem writing file:. I read online that this problem comes when you dont have the generated_scripts directory, the problem is that I do have that folder. I tried to erasing it and making it again and still nothing. Does someone Know how to fix my problem?
exact error message: EventSystem: problem writing file: C:\Program Files (x86)\Domoticz\scripts\dzVents\generated_scripts\Script #1.lua
Top -
RE: Trying to automate in Domoticz
@boum sadly it didnt work I made sure that the name of the switch was well written and I added a domoticz.log with a message inside the function and it didnt work.
-
Trying to automate in Domoticz
Hello everyone, I just started with mysensors, I have successfully connected a serial gateway and a node that measures temperature. I'm now trying to automate on domoticz so that I can get notifications and other things of my node. I am trying to learn dzVents in the domoticz wiki:(https://www.domoticz.com/wiki/DzVents:_next_generation_Lua_scripting)
The problem is that When I save and run the Quickstart code with the name of my switch the log only shows that it has been turn on and doesnt show my log message.
return {
on = {
devices = {
'switch'
}
},
execute = function(domoticz, switch)
if (switch.state == 'On') then
domoticz.log('Hey! I am on!')
else
domoticz.log('Hey! I am off!')
end
end
}
}I have already set the local network to 127.0.0.1 and enabled dzVents.
Does anyone now what is happening? -
RE: Connecting the Dallas DS18B20 temperature sensor.
@mfalkvidd said in Connecting the Dallas DS18B20 temperature sensor.:
I don't know. Where do the two brown wires go to?
@mfalkvidd the one on the right goes to vcc of the sesnor and the left one goes to the gnd of the arduino nano. The other white and orange cable go to pin 3.
-
RE: Connecting the Dallas DS18B20 temperature sensor.
so I am guessing the resistor is placed correcty? Thank you very much for your replay, it has been extremely helpful.
-
Connecting the Dallas DS18B20 temperature sensor.
Hello everyone, I am building a temperature sensor using the Dallas DS18B20 sensor. I have a couple of question about it's connection. I am using a arduino nano and have the NRF24L01+ connected to the 3.3v pin. To connect the sensor, is it ok to plug it into the 5v pin? it says to plug it into the vcc pin but I dont know the ouput voltage of it and the documentation says (3.0-5.5V). In addition, I am using a 4,7kOhm resistor. another question I have is on the connection of the resistor. I dont understand why the documentation says I have to plug it between the vcc and d3, How is that? Isnt a resistor supposed to stand in te middle of a connection? This is how I connected it, the resistor makes a bridge from the d3 to the vcc. Is this ok? (The orange cable is coming from the pin 3 and goes to the dq of the sensor, the red cable comes from the 5v and goes to the vcc of the sensor and the black comes form the gnd and goes to the gnd of the sesor).
Hope this is well explained . -
RE: How can I choose a controller?
@skywatch Thank you very much, I'll sure check myself this questions while choosing.
-
RE: How can I choose a controller?
@mfalkvidd Thank you very much, this information has been really helpful.
-
How can I choose a controller?
Hello everyone,
I am looking to make a system that controls the temperature of my house. I was following along perfectly until I reached the controller part. I dont know how to choose a controller, I tried to look at the ¨Selecting a controller¨ but didnt understand the graph, what does Y and N mean? how do I choose one?