Search found 9 matches

by Taki7o7
Wed Jul 13, 2022 3:22 pm
Forum: ESP32 boards
Topic: WLAN.connect with bssid?
Replies: 6
Views: 2958

Re: WLAN.connect with bssid?

Hey there, i want to prevent connecting to a network with the same name, so i'd like to use the bssid parameter, but it won't really let me sta_if.connect(ssid='myssid', password='mypass', bssid='5c:5c:5c:5c:5c:5c') It throws TypeError: extra keyword arguments given Router name and password are pos...
by Taki7o7
Wed Jul 13, 2022 2:29 pm
Forum: ESP32 boards
Topic: WLAN.connect with bssid?
Replies: 6
Views: 2958

Re: WLAN.connect with bssid?

jimmo wrote:
Wed Jul 13, 2022 2:09 pm
Taki7o7 wrote:
Wed Jul 13, 2022 11:49 am
Hmm, seems thats not supported at all (anymore?!) Also, no WPS? Isn't just the SSID a really bad identifier to use?
I'm fairly sure that the bssid is supported on ESP32, PYBD, and RP2 PicoW. Which port are you using?

WPS is not supported.
well, ESP32 generic
by Taki7o7
Wed Jul 13, 2022 11:49 am
Forum: ESP32 boards
Topic: WLAN.connect with bssid?
Replies: 6
Views: 2958

Re: WLAN.connect with bssid?

Hmm, seems thats not supported at all (anymore?!) Also, no WPS? Isn't just the SSID a really bad identifier to use?
by Taki7o7
Wed Jul 13, 2022 10:55 am
Forum: ESP32 boards
Topic: WLAN.connect with bssid?
Replies: 6
Views: 2958

WLAN.connect with bssid?

Hey there, i want to prevent connecting to a network with the same name, so i'd like to use the bssid parameter, but it won't really let me def do_connect(): import network sta_if = network.WLAN(network.STA_IF) if not sta_if.isconnected(): print('connecting to network...') sta_if.active(True) sta_if...
by Taki7o7
Fri Jul 08, 2022 5:18 pm
Forum: ESP32 boards
Topic: [gelöst] ESP32 mit SSD1306 deutsche Umlaute
Replies: 13
Views: 6720

Re: [gelöst] ESP32 mit SSD1306 deutsche Umlaute

pythoncoder wrote:
Fri Jul 08, 2022 9:14 am
This is the doc. You should be able to produce fonts with any Unicode characters using the -k option (provided the glyphs are present in the source ttf or otf file).
Thanks, it works great. Edited a 8x8 font and converted it with this. Also, i like the writer, very well done :)
by Taki7o7
Thu Jul 07, 2022 6:20 pm
Forum: ESP32 boards
Topic: [gelöst] ESP32 mit SSD1306 deutsche Umlaute
Replies: 13
Views: 6720

Re: [gelöst] ESP32 mit SSD1306 deutsche Umlaute

I do not get smarter from reading font_to_py docs, somebody has a guide for that?

//EDIT: Oh nvm i understand now, just found the other readme files ^^
by Taki7o7
Thu Jul 07, 2022 5:29 am
Forum: General Discussion and Questions
Topic: Can you strip unneeded code somehow from MP?
Replies: 4
Views: 1265

Can you strip unneeded code somehow from MP?

I wonder if it's possible to automate compilation of micropython, while it only uses stuff a given (Micro)Python script needs, so that micropython would not waste space for unused functionality. Is this theoretically possible? Or is there even some "ready to use" solution to this? Sorry if i misunde...
by Taki7o7
Mon Jul 04, 2022 10:23 pm
Forum: Raspberry Pi microcontroller boards
Topic: [Pico W] WiFi WPS connection?
Replies: 3
Views: 4396

Re: [Pico W] WiFi WPS connection?

Thanks for your replies. Thats really sad not even the esp32 boards support it yet.

I hope it will get implemented at least for esp32 soon(TM) ^^


Currently i am even struggling with setting a password on an Access Point from a Pico W, see this issue if you're interested.
by Taki7o7
Sun Jul 03, 2022 11:59 pm
Forum: Raspberry Pi microcontroller boards
Topic: [Pico W] WiFi WPS connection?
Replies: 3
Views: 4396

[Pico W] WiFi WPS connection?

Hey i wonder if & how we could establish a connection to a router via WPS instead of ssid+pw I cannot really find anything with google or the search function, beside some posts and pull requests regarding the esp8226 & esp32, maybe my search pattern is just weird ^^ So i would highly appreciate any ...