jupyter_micropython_kernel icon indicating copy to clipboard operation
jupyter_micropython_kernel copied to clipboard

Jupyter kernel to interact with a MicroPython/ESP8266 over the serial REPL

Results 28 jupyter_micropython_kernel issues
Sort by recently updated
recently updated
newest added

It's been tried on another Ubuntu system, but it needs looking at for Mac and Windows

Hello, When using several devices, knowing which port is ready can be a problem, here is a workaround allowing to give integers values to choose the serial port (you can...

I got this error under python 3.8: ``` [IPKernelApp] ERROR | Exception in message handler: Traceback (most recent call last): File "/usr/local/lib/python3.8/dist-packages/ipykernel/kernelbase.py", line 264, in dispatch_shell yield gen.maybe_future(handler(stream, idents, msg))...

If I use a serial terminal, the following code shows the result (1) ``` a = 1 a ``` However, if I use MicroPython-USB kernel in Jupygter notebook, I have...

Modern gdb versions have `--enable--python` option which included Python interpreter into the debugger for any target processor/MCU. This option looks me much better to embed gdb interface into Jython, as...

Sometime Jupyter notebook MicroPython Kernel prints "." that I didn’t print, when I use ‘print()’ with "for" or "while" statement, Followings are my codes. When I use a serial terminal(ex....

This would be instead of doing the executing a series of writelines to an open file handle. Function code is here: https://github.com/micropython/webrepl/blob/master/webrepl_cli.py#L119

I want to run external tools such as pycom's dfu-util from the single notebook I'm working in, rather than the included esptool. In the python3 kernel this would be ```py...

I'm having problems with boards that sleep, or have code in them that intentionally disables their serial functionality. The scenario is: I plug the board in It runs through its...

Sorry if this is the wrong place for this, but I'm getting confused about what the intention of Jupyter is. I can connect to my ESP32, and run any code...