Nicolas Schodet

Results 55 comments of Nicolas Schodet

Hi, I have the same problem. Previously, I used this: ```python ureg._units["baud"]._symbol = "bit/s" ``` But this no longer works with recent pint versions.

Found a workaround: ```python baud = ureg._units["baud"] ureg._units["baud"] = pint.definitions.UnitDefinition( baud.name, "bit/s", baud.aliases, baud.converter, baud.reference, baud.is_base ) ```

I do not think this is possible as long as the HP48 ROM is bundled with the app. Interface should be added to allow the user to provide its own...

Is your NXT paired with your computer? How did you get the device address? I should add something in the manual for a step by step procedure to connect for...

Is your NXT paired with your computer?

@Josh-Hout Here is what I do to make it work: ``` % bluetoothctl Agent registered [bluetooth]# devices [bluetooth]# scan on Discovery started [NEW] Device 00:16:53:AA:BB:CC 00-16-53-AA-BB-CC [CHG] Device 00:16:53:AA:BB:CC LegacyPairing:...

@dmue-vbg > **INFO:nxt.backend.bluetooth:no bluetooth module** That’s not the same problem, you do not have a python bluetooth module installed. See: https://ni.srht.site/nxt-python/latest/installation.html#installation-using-pip That’s not easy because the current state of pybluez...

@dmue-vbg look at `nxt/backend/bluetooth.py`, it gives this error message when it is not able to `import bluetooth`. You can try to import bluetooth in a python script, you may have...

One way to handle this is to instantiate the widget only once, out of `awful.screen.connect_for_each_screen` loop. ```lua local myvolume = volume_widget() ```

Hi, I am the maintainer of _NXT Improved firmware_. The bug is fixed with version 1.29.6. But the NXT Enhanced Firmware, which is quite popular, is no longer maintained, so...