LOFI Robot
LOFI Robot
Hello @thegecko and @benmoran I think I am using latest version of the library - I cloned the repo few days ago. When it comes to pin readings. 1. getIoCconfiguration...
Update I still have not managed to figure out how to use setIoConfiguration and seAdConfiguration methods. But I managed to set pins configuration by writing to characteristics directly: ``` const...
Hey dakandaka, I am using timer to ping the service for data (the interval is 100ms, no crashes): componentDidMount() { this.intervalId = setInterval(this.timer.bind(this), 100); } componentWillUnmount(){ clearInterval(this.intervalId); } async timer()...
Yes it is React. Below you have full component. It is a messy solution because I am keeping the microbit object in scope of main window object and accessing it...