Search found 8 matches

by cbrand
Mon Oct 03, 2022 9:25 pm
Forum: Programs, Libraries and Tools
Topic: micropython-mdns: MDNS with Service Discovery
Replies: 3
Views: 28756

Re: micropython-mdns: MDNS with Service Discovery

I know I am very late to the party. I do not get notifications on this forum and didn't monitor the post anymore. Best thing is to create a bug report on GitHub as I will get push notifications there. However, there were people recently who reported issues with the service advertisement too. I fixed...
by cbrand
Mon Jan 18, 2021 2:17 pm
Forum: Programs, Libraries and Tools
Topic: No Example for uasyncio SSL webserver
Replies: 6
Views: 4071

Re: No Example for uasyncio SSL webserver

Thank you, everyone. Sorry for forgot it. Actually, I am trying to work with ESP8266. I tried this code in ESP8266. But getting error like below. "Traceback (most recent call last): File "main.py", line 2, in <module> ImportError: no module named 'uasyncio.stream' MicroPython v1.12 on 2019-12-20; E...
by cbrand
Thu Jan 14, 2021 11:25 am
Forum: Programs, Libraries and Tools
Topic: No Example for uasyncio SSL webserver
Replies: 6
Views: 4071

Re: No Example for uasyncio SSL webserver

I don't think uasyncio supports this yet directly. However, the socket creation is a plain python wrapper around the "normal" socket: https://github.com/micropython/micropython/blob/0fff2e03fe07471997a6df6f92c6960cfd225dc0/extmod/uasyncio/stream.py#L74 So you can replicate an asyncio socket by just ...
by cbrand
Wed Jan 06, 2021 3:36 pm
Forum: Programs, Libraries and Tools
Topic: micropython-mdns: MDNS with Service Discovery
Replies: 3
Views: 28756

Re: micropython-mdns: MDNS with Service Discovery

As an addition: I only have an ESP32 for testing, but would be very much interested if somebody who has other MicroPython capable boards to also test the functionality. Ideally, I want this not to only be tested on the ESP32.
by cbrand
Tue Jan 05, 2021 11:37 pm
Forum: Programs, Libraries and Tools
Topic: micropython-mdns: MDNS with Service Discovery
Replies: 3
Views: 28756

micropython-mdns: MDNS with Service Discovery

For the next step of my IR remote project , I required MDNS functionality with Service Discovery. Unfortunately, the ESP32 MicroPython implementation of MDNS only allows querying of A records and exposing its' own IP via MDNS. Also the only running library which I could find was SlimDNS which doesn'...
by cbrand
Sun Jan 03, 2021 10:01 pm
Forum: Programs, Libraries and Tools
Topic: Onkyo-EISCP library
Replies: 4
Views: 2500

Re: Onkyo-EISCP library

Impressive project! Thanks! Interesting that you had trouble with mqtt_as running TLS. As I think I wrote in the docs, the only platform which supported it reliably in testing was the Pyboard D. Hopefully ESP32 TLS implementation will improve. Yeah the ESP32 TLS implementation is a bit wonky. I got...
by cbrand
Sat Jan 02, 2021 11:49 am
Forum: Programs, Libraries and Tools
Topic: Onkyo-EISCP library
Replies: 4
Views: 2500

Re: Onkyo-EISCP library

pythoncoder wrote:
Sat Jan 02, 2021 5:49 am
Your project link is a 404 here.
My bad, thanks for pointing it out. I forgot to publish the project.

Also added a README to the project and some additional information.
by cbrand
Fri Jan 01, 2021 6:00 pm
Forum: Programs, Libraries and Tools
Topic: Onkyo-EISCP library
Replies: 4
Views: 2500

Onkyo-EISCP library

For a project I did to automize a fairly complex TV boxes setup, I required implementing the EISCP protocol rather than doing the IR. To make it available to everyone, I decided to carve out that specific component and published it on GitHub and PyPi: https://github.com/cbrand/eiscp-micropython http...