Description Usage Arguments Value Examples
Create an engine handler in R and send command isready
| 1 | uci_engine(path)
 | 
| path | path to engine file. Make sure you have executable permission on this file. | 
engine object (list of two: pipe to engine and temp as a result from stdout engine)
| 1 2 3 4 5 6 7 8 9 10 | # Linux (make sure you have executable permission):
engine_path <- "./stockfish_10_x64"
# Windows
# engine_path <- "./stockfish_10_x64.exe"
e <- uci_engine(engine_path)
uci_quit(e)
# Using pipe '%>%' from magrittr:
require(magrittr)
uci_engine(engine_path) %>% uci_quit()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.