Hermann Stamm-Wilbrandt

Results 60 comments of Hermann Stamm-Wilbrandt

You can take from official repo: https://github.com/raspberrypi/raspiraw/blob/master/camera_i2c

Re point 1: already done by aivarannamaa: [https://forum.micropython.org/viewtopic.php?f=2&t=3124&p=30156#p28051](https://forum.micropython.org/viewtopic.php?f=2&t=3124&p=30156#p28051) I did fix a small flushing issue and added "-s" silent flag: [https://stamm-wilbrandt.de/en/forum/webrepl_client.py](https://stamm-wilbrandt.de/en/forum/webrepl_client.py) Description (inclusive aivarannamaa's suffix explanation for switching between modes...

I fixed the silent option in order to not output newly entered command a second time as seen in last screenshot: [https://stamm-wilbrandt.de/en/forum/webrepl_client.py](https://stamm-wilbrandt.de/en/forum/webrepl_client.py) Now a (Micro)Python session looks like webepl session...

Added check for ws.sock for graceful endings in some situations (ungraceful see last screenshot), and try/except for graceful ending on CTRL-C: [http://stamm-wilbrandt.de/en/forum/webrepl_client.py](http://stamm-wilbrandt.de/en/forum/webrepl_client.py)

Now "\n" command suffix is superfluous in silent mode! [https://forum.micropython.org/viewtopic.php?f=2&t=3124&p=30180#p30180](https://forum.micropython.org/viewtopic.php?f=2&t=3124&p=30180#p30180) $ ./webrepl_client.py -s Password: 12345678 WebREPL connected >>> 4**3**2 262144 >>> \x01 raw REPL; CTRL-B to exit >\x02 MicroPython v1.9.4-481-g3cd2c281d...

Now webrepl_client.py runs under python v2 as well as v3 as well as standalone: [https://stamm-wilbrandt.de/en/forum/webrepl_client.py](https://stamm-wilbrandt.de/en/forum/webrepl_client.py) $ python webrepl_client.py -s Password: abcd WebREPL connected >>> 4**3**2 262144 >>> exit $ $...

I spent more work on getting webrepl_client.py pep8online.com compliant and provide help(). Because of all the work I changed my mind and created a pull request to add webrepl_client.py remote...

I did a major rewrite of webrepl_client.py, now all modes (raw/normal/paste) work and only minimal difference for raw mode remains wrt screen terminal session. Documentation now fully describes webrepl_client.py features...

Thanks for the comments. Sorry for the 400-line program, it is autogenerated by node.tetra.js from my planar_graph_playground ... https://github.com/Hermann-SW/planar_graph_playground/blob/main/node.tetra.js ... and embeds any planar embedding onto sphere. Most of the...

Wow, you were right. I replaced the "difference()" with hexagon hull() with union(): https://stamm-wilbrandt.de/en/forum/C60.preview_problem.2.scad.txt ``` < intersection() { --- > // intersection() { > union() { ``` Need to investigate...