Javascript: How can I make Synchronous Loop?












1















I'm confused by Synchronous/Asynchronous processing of JavaScript.



What I want to do is below. When self_driving() is called, then get_direction_by_sensor() is called and using the direction, moter starts running by move_to_direction(direction). This process repeats 5 times.



function get_direction_by_sensor(){
// code for getting direction from sensor
return direction
};

function move_to_direction(direction){
direction = get_direction_by_sensor()
// code for driving motor to the direction
};

function self_driving_loop(maxCount, i) {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
}, 1000);
}
};

function self_driving() {
self_driving_loop(5, 1)
};


So I want this code to run like this.



1. get_direction_by_sensor()
1. move_to_direction()
2. get_direction_by_sensor()
2. move_to_direction()
3. get_direction_by_sensor()
3. move_to_direction()
4. get_direction_by_sensor()
4. move_to_direction()
5. get_direction_by_sensor()
5. move_to_direction()


But actually it runs like this.



1. get_direction_by_sensor()
2. get_direction_by_sensor()
3. get_direction_by_sensor()
4. get_direction_by_sensor()
5. get_direction_by_sensor() // this direction is used for moving
5. move_to_direction()


How can I fix this code?
Thanks.



======== MORE DETAILED INFO ========



move_to_direction() calles Macro of webiopi written by Python.



function move_to_direction() {
w().callMacro('get_direction_to_move', [TRIG_F ,ECHO_F ,TRIG_R ,ECHO_R ,TRIG_L ,ECHO_L ,TRIG_B ,ECHO_B], function(macro, args, resp) {
console.log(resp) // DEBUG
if(resp == "forward") {
change_direction('FOWARD');
} else if(resp == "right") {
change_direction('RIGHT');
} else if(resp == "left") {
change_direction('LEFT');
} else if(resp == "backward") {
change_direction('BACKWARD');
}
});
}









share|improve this question

























  • I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

    – Bravo
    Nov 21 '18 at 3:28











  • the code is doing what you want repl.it/repls/CostlyBonyApplets

    – Pablo Fernandez
    Nov 21 '18 at 3:29











  • @Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

    – Hiromu Masuda
    Nov 21 '18 at 3:36
















1















I'm confused by Synchronous/Asynchronous processing of JavaScript.



What I want to do is below. When self_driving() is called, then get_direction_by_sensor() is called and using the direction, moter starts running by move_to_direction(direction). This process repeats 5 times.



function get_direction_by_sensor(){
// code for getting direction from sensor
return direction
};

function move_to_direction(direction){
direction = get_direction_by_sensor()
// code for driving motor to the direction
};

function self_driving_loop(maxCount, i) {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
}, 1000);
}
};

function self_driving() {
self_driving_loop(5, 1)
};


So I want this code to run like this.



1. get_direction_by_sensor()
1. move_to_direction()
2. get_direction_by_sensor()
2. move_to_direction()
3. get_direction_by_sensor()
3. move_to_direction()
4. get_direction_by_sensor()
4. move_to_direction()
5. get_direction_by_sensor()
5. move_to_direction()


But actually it runs like this.



1. get_direction_by_sensor()
2. get_direction_by_sensor()
3. get_direction_by_sensor()
4. get_direction_by_sensor()
5. get_direction_by_sensor() // this direction is used for moving
5. move_to_direction()


How can I fix this code?
Thanks.



======== MORE DETAILED INFO ========



move_to_direction() calles Macro of webiopi written by Python.



function move_to_direction() {
w().callMacro('get_direction_to_move', [TRIG_F ,ECHO_F ,TRIG_R ,ECHO_R ,TRIG_L ,ECHO_L ,TRIG_B ,ECHO_B], function(macro, args, resp) {
console.log(resp) // DEBUG
if(resp == "forward") {
change_direction('FOWARD');
} else if(resp == "right") {
change_direction('RIGHT');
} else if(resp == "left") {
change_direction('LEFT');
} else if(resp == "backward") {
change_direction('BACKWARD');
}
});
}









share|improve this question

























  • I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

    – Bravo
    Nov 21 '18 at 3:28











  • the code is doing what you want repl.it/repls/CostlyBonyApplets

    – Pablo Fernandez
    Nov 21 '18 at 3:29











  • @Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

    – Hiromu Masuda
    Nov 21 '18 at 3:36














1












1








1








I'm confused by Synchronous/Asynchronous processing of JavaScript.



What I want to do is below. When self_driving() is called, then get_direction_by_sensor() is called and using the direction, moter starts running by move_to_direction(direction). This process repeats 5 times.



function get_direction_by_sensor(){
// code for getting direction from sensor
return direction
};

function move_to_direction(direction){
direction = get_direction_by_sensor()
// code for driving motor to the direction
};

function self_driving_loop(maxCount, i) {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
}, 1000);
}
};

function self_driving() {
self_driving_loop(5, 1)
};


So I want this code to run like this.



1. get_direction_by_sensor()
1. move_to_direction()
2. get_direction_by_sensor()
2. move_to_direction()
3. get_direction_by_sensor()
3. move_to_direction()
4. get_direction_by_sensor()
4. move_to_direction()
5. get_direction_by_sensor()
5. move_to_direction()


But actually it runs like this.



1. get_direction_by_sensor()
2. get_direction_by_sensor()
3. get_direction_by_sensor()
4. get_direction_by_sensor()
5. get_direction_by_sensor() // this direction is used for moving
5. move_to_direction()


How can I fix this code?
Thanks.



======== MORE DETAILED INFO ========



move_to_direction() calles Macro of webiopi written by Python.



function move_to_direction() {
w().callMacro('get_direction_to_move', [TRIG_F ,ECHO_F ,TRIG_R ,ECHO_R ,TRIG_L ,ECHO_L ,TRIG_B ,ECHO_B], function(macro, args, resp) {
console.log(resp) // DEBUG
if(resp == "forward") {
change_direction('FOWARD');
} else if(resp == "right") {
change_direction('RIGHT');
} else if(resp == "left") {
change_direction('LEFT');
} else if(resp == "backward") {
change_direction('BACKWARD');
}
});
}









share|improve this question
















I'm confused by Synchronous/Asynchronous processing of JavaScript.



What I want to do is below. When self_driving() is called, then get_direction_by_sensor() is called and using the direction, moter starts running by move_to_direction(direction). This process repeats 5 times.



function get_direction_by_sensor(){
// code for getting direction from sensor
return direction
};

function move_to_direction(direction){
direction = get_direction_by_sensor()
// code for driving motor to the direction
};

function self_driving_loop(maxCount, i) {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
}, 1000);
}
};

function self_driving() {
self_driving_loop(5, 1)
};


So I want this code to run like this.



1. get_direction_by_sensor()
1. move_to_direction()
2. get_direction_by_sensor()
2. move_to_direction()
3. get_direction_by_sensor()
3. move_to_direction()
4. get_direction_by_sensor()
4. move_to_direction()
5. get_direction_by_sensor()
5. move_to_direction()


But actually it runs like this.



1. get_direction_by_sensor()
2. get_direction_by_sensor()
3. get_direction_by_sensor()
4. get_direction_by_sensor()
5. get_direction_by_sensor() // this direction is used for moving
5. move_to_direction()


How can I fix this code?
Thanks.



======== MORE DETAILED INFO ========



move_to_direction() calles Macro of webiopi written by Python.



function move_to_direction() {
w().callMacro('get_direction_to_move', [TRIG_F ,ECHO_F ,TRIG_R ,ECHO_R ,TRIG_L ,ECHO_L ,TRIG_B ,ECHO_B], function(macro, args, resp) {
console.log(resp) // DEBUG
if(resp == "forward") {
change_direction('FOWARD');
} else if(resp == "right") {
change_direction('RIGHT');
} else if(resp == "left") {
change_direction('LEFT');
} else if(resp == "backward") {
change_direction('BACKWARD');
}
});
}






javascript loops synchronization






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 '18 at 3:34







Hiromu Masuda

















asked Nov 21 '18 at 3:22









Hiromu MasudaHiromu Masuda

719




719













  • I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

    – Bravo
    Nov 21 '18 at 3:28











  • the code is doing what you want repl.it/repls/CostlyBonyApplets

    – Pablo Fernandez
    Nov 21 '18 at 3:29











  • @Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

    – Hiromu Masuda
    Nov 21 '18 at 3:36



















  • I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

    – Bravo
    Nov 21 '18 at 3:28











  • the code is doing what you want repl.it/repls/CostlyBonyApplets

    – Pablo Fernandez
    Nov 21 '18 at 3:29











  • @Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

    – Hiromu Masuda
    Nov 21 '18 at 3:36

















I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

– Bravo
Nov 21 '18 at 3:28





I guess you'll need to show a little more about those two functions - must have asynchrony in them, right?

– Bravo
Nov 21 '18 at 3:28













the code is doing what you want repl.it/repls/CostlyBonyApplets

– Pablo Fernandez
Nov 21 '18 at 3:29





the code is doing what you want repl.it/repls/CostlyBonyApplets

– Pablo Fernandez
Nov 21 '18 at 3:29













@Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

– Hiromu Masuda
Nov 21 '18 at 3:36





@Bravo Yeah, some asynchrony in move_to_direction function. What I want to do is finish all the (sub) functions in move_to_direction and go to next move_to_direction.

– Hiromu Masuda
Nov 21 '18 at 3:36












1 Answer
1






active

oldest

votes


















2














settimeout must be wrapped with a promise so that it can be awaited. see



function self_driving_loop(maxCount, i) {
return new Promise(resolve => {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
resolve()
}, 1000);
}
})
};


call it this way in an async function



await self_driving_loop(maxCount, i)





share|improve this answer
























  • Are you sure it works? it looks wrong

    – Bravo
    Nov 21 '18 at 3:46











  • did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

    – Hiromu Masuda
    Nov 21 '18 at 7:14













  • it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

    – EJL
    Nov 22 '18 at 5:00











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
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404819%2fjavascript-how-can-i-make-synchronous-loop%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














settimeout must be wrapped with a promise so that it can be awaited. see



function self_driving_loop(maxCount, i) {
return new Promise(resolve => {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
resolve()
}, 1000);
}
})
};


call it this way in an async function



await self_driving_loop(maxCount, i)





share|improve this answer
























  • Are you sure it works? it looks wrong

    – Bravo
    Nov 21 '18 at 3:46











  • did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

    – Hiromu Masuda
    Nov 21 '18 at 7:14













  • it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

    – EJL
    Nov 22 '18 at 5:00
















2














settimeout must be wrapped with a promise so that it can be awaited. see



function self_driving_loop(maxCount, i) {
return new Promise(resolve => {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
resolve()
}, 1000);
}
})
};


call it this way in an async function



await self_driving_loop(maxCount, i)





share|improve this answer
























  • Are you sure it works? it looks wrong

    – Bravo
    Nov 21 '18 at 3:46











  • did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

    – Hiromu Masuda
    Nov 21 '18 at 7:14













  • it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

    – EJL
    Nov 22 '18 at 5:00














2












2








2







settimeout must be wrapped with a promise so that it can be awaited. see



function self_driving_loop(maxCount, i) {
return new Promise(resolve => {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
resolve()
}, 1000);
}
})
};


call it this way in an async function



await self_driving_loop(maxCount, i)





share|improve this answer













settimeout must be wrapped with a promise so that it can be awaited. see



function self_driving_loop(maxCount, i) {
return new Promise(resolve => {
if (i <= maxCount) {
move_to_direction();
setTimeout(function(){
self_driving_loop(maxCount, ++i)
resolve()
}, 1000);
}
})
};


call it this way in an async function



await self_driving_loop(maxCount, i)






share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 21 '18 at 3:35









EJLEJL

615




615













  • Are you sure it works? it looks wrong

    – Bravo
    Nov 21 '18 at 3:46











  • did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

    – Hiromu Masuda
    Nov 21 '18 at 7:14













  • it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

    – EJL
    Nov 22 '18 at 5:00



















  • Are you sure it works? it looks wrong

    – Bravo
    Nov 21 '18 at 3:46











  • did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

    – Hiromu Masuda
    Nov 21 '18 at 7:14













  • it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

    – EJL
    Nov 22 '18 at 5:00

















Are you sure it works? it looks wrong

– Bravo
Nov 21 '18 at 3:46





Are you sure it works? it looks wrong

– Bravo
Nov 21 '18 at 3:46













did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

– Hiromu Masuda
Nov 21 '18 at 7:14







did work: self_driving_loop(maxCount, i) , didnt work: await self_driving_loop(maxCount, i)

– Hiromu Masuda
Nov 21 '18 at 7:14















it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

– EJL
Nov 22 '18 at 5:00





it will work for async function please see developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/…

– EJL
Nov 22 '18 at 5:00


















draft saved

draft discarded




















































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.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404819%2fjavascript-how-can-i-make-synchronous-loop%23new-answer', 'question_page');
}
);

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







Popular posts from this blog

MongoDB - Not Authorized To Execute Command

in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith

How to fix TextFormField cause rebuild widget in Flutter