Turn the fan on 10 scs long python
This is my code turning the fan on i run the sleep on separate thread because it makes the entire script sleep
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
def sleep_fan():
time.sleep(10)
The script is running however im not getting 10 scs it is only 1 or 2 seconds? How to fix this? TIA
python python-3.x python-2.7 gpio
add a comment |
This is my code turning the fan on i run the sleep on separate thread because it makes the entire script sleep
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
def sleep_fan():
time.sleep(10)
The script is running however im not getting 10 scs it is only 1 or 2 seconds? How to fix this? TIA
python python-3.x python-2.7 gpio
Should bedaemon
notdeamon
– smac89
Nov 25 '18 at 7:29
add a comment |
This is my code turning the fan on i run the sleep on separate thread because it makes the entire script sleep
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
def sleep_fan():
time.sleep(10)
The script is running however im not getting 10 scs it is only 1 or 2 seconds? How to fix this? TIA
python python-3.x python-2.7 gpio
This is my code turning the fan on i run the sleep on separate thread because it makes the entire script sleep
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
def sleep_fan():
time.sleep(10)
The script is running however im not getting 10 scs it is only 1 or 2 seconds? How to fix this? TIA
python python-3.x python-2.7 gpio
python python-3.x python-2.7 gpio
asked Nov 25 '18 at 7:20
BeginnerBeginner
362210
362210
Should bedaemon
notdeamon
– smac89
Nov 25 '18 at 7:29
add a comment |
Should bedaemon
notdeamon
– smac89
Nov 25 '18 at 7:29
Should be
daemon
not deamon
– smac89
Nov 25 '18 at 7:29
Should be
daemon
not deamon
– smac89
Nov 25 '18 at 7:29
add a comment |
2 Answers
2
active
oldest
votes
I'm going to assume that your program dies before the 10 seconds are up, which is what kills the fan. The misspelling of daemon
in t.deamon = True
doesn't matter here.
Probably better to join on that thread in your main function.
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
return t
fan_thread = fan_on()
fan_thread.join() # waits for thread to exit before moving on.
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
add a comment |
As Adam Smith said, the problem is because of your new thread dying almost instantly after creation and not because of daemon. Hence, you should use the join method.
Strongly disagree.setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."
– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53465469%2fturn-the-fan-on-10-scs-long-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I'm going to assume that your program dies before the 10 seconds are up, which is what kills the fan. The misspelling of daemon
in t.deamon = True
doesn't matter here.
Probably better to join on that thread in your main function.
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
return t
fan_thread = fan_on()
fan_thread.join() # waits for thread to exit before moving on.
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
add a comment |
I'm going to assume that your program dies before the 10 seconds are up, which is what kills the fan. The misspelling of daemon
in t.deamon = True
doesn't matter here.
Probably better to join on that thread in your main function.
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
return t
fan_thread = fan_on()
fan_thread.join() # waits for thread to exit before moving on.
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
add a comment |
I'm going to assume that your program dies before the 10 seconds are up, which is what kills the fan. The misspelling of daemon
in t.deamon = True
doesn't matter here.
Probably better to join on that thread in your main function.
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
return t
fan_thread = fan_on()
fan_thread.join() # waits for thread to exit before moving on.
I'm going to assume that your program dies before the 10 seconds are up, which is what kills the fan. The misspelling of daemon
in t.deamon = True
doesn't matter here.
Probably better to join on that thread in your main function.
def fan_on():
GPIO.setwarnings(False)
GPIO.setmode(GPIO.BCM)
FAN_PIN = 23
GPIO.setup(FAN_PIN,GPIO.OUT)
GPIO.output(FAN_PIN,True)
t = Thread(target=sleep_fan)
t.deamon = True
t.start()
return t
fan_thread = fan_on()
fan_thread.join() # waits for thread to exit before moving on.
answered Nov 25 '18 at 9:03
Adam SmithAdam Smith
34.3k53275
34.3k53275
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
add a comment |
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
Sir i have use the join and it is sucvessfully ran the fan by 10 scs however does this join affects the entire code? Because the sleep make the entire script to sleep after i used the join
– Beginner
Nov 27 '18 at 8:10
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
@Beginner yes it does, but since your current problem is that the program dies before 10 seconds is up, that shouldn't be an issue, just make sure that your last instruction is to join on your fan thread.
– Adam Smith
Nov 27 '18 at 16:52
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
sir how can I make not the entire script to sleep? after using the join?
– Beginner
Dec 2 '18 at 8:38
add a comment |
As Adam Smith said, the problem is because of your new thread dying almost instantly after creation and not because of daemon. Hence, you should use the join method.
Strongly disagree.setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."
– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
add a comment |
As Adam Smith said, the problem is because of your new thread dying almost instantly after creation and not because of daemon. Hence, you should use the join method.
Strongly disagree.setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."
– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
add a comment |
As Adam Smith said, the problem is because of your new thread dying almost instantly after creation and not because of daemon. Hence, you should use the join method.
As Adam Smith said, the problem is because of your new thread dying almost instantly after creation and not because of daemon. Hence, you should use the join method.
edited Nov 25 '18 at 9:42
answered Nov 25 '18 at 8:53
VitrioilVitrioil
8915
8915
Strongly disagree.setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."
– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
add a comment |
Strongly disagree.setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."
– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
Strongly disagree.
setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."– Adam Smith
Nov 25 '18 at 9:00
Strongly disagree.
setDaemon
is a silly name for a silly method, and even the documentation includes this line: "Old getter/setter API for daemon; use it directly as a property instead."– Adam Smith
Nov 25 '18 at 9:00
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
additionally this has nothing to do with the problem in this code.
– Adam Smith
Nov 25 '18 at 9:04
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
Oh, my bad. Thanks for the reply. Will edit the answer.
– Vitrioil
Nov 25 '18 at 9:29
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53465469%2fturn-the-fan-on-10-scs-long-python%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Should be
daemon
notdeamon
– smac89
Nov 25 '18 at 7:29