Marc Hyeler

Results 12 comments of Marc Hyeler

@dragonDScript yup, that work's for me

Also having the same issue, Android client shows known peers nearby but web interface shows a ton of random unknown peers along with the known nodes. Both Android and web...

Yes, it works perfectly when I do it

Ok, got it working. Instead of using Keyboard.write("0") or Keyboard.write('0') I used the keypad name ``` Keyboard.press(KEY_LEFT_ALT); delay(100); Keyboard.press(KEYPAD_0); delay(100); Keyboard.press(KEYPAD_2); delay(100); Keyboard.press(KEYPAD_4); delay(100); Keyboard.press(KEYPAD_7); delay(700); Keyboard.releaseAll(); ` ```

You might want to include this in the wiki for people who want custom characters

Hmm, the top numbers don't work even if I do it manually, so that is why the code wasn't working

Yup, both of them work fine and they put ÷. You can find those codes by just looking them up for the character you want or use this table https://theasciicode.com.ar/

If you are running the web client with docker, you can change the host port to any unused port on your machine with this change in the command: `docker run...

Yup that's right, no problem

If you only want to have the webui on port 6678 http with this line in the command -p 6678:8080, you can remove the other ports, like this: docker run...