# Method: handsfree.unpause()

handsfree.unpause()

Unpauses the main loop. This is different from handsfree.start() which is used to initialize Handsfree and load dependencies, and should be used whenever handsfree.isLooping is set to false (as is the case with handsfree.pause()).

# Example

const handsfree = new Handsfree({weboji: true})

// Manually stop the loop
handsfree.isLooping = false

// Unpause the loop
handsfree.unpause()

# See also

Last Updated: 12/17/2020, 1:15:12 PM
Debugger