Search found 969 matches

by kevinkk525
Wed Jun 09, 2021 6:58 am
Forum: Raspberry Pi microcontroller boards
Topic: Arduino Nano RP2040 Connect
Replies: 5
Views: 4273

Re: Arduino Nano RP2040 Connect

I tried Nina before starting a similar project but I just couldn't get it working on micropython (although that wasn't a micropython fault). I could connect to a network but creating any socket always failed.. So I got tired of experimenting and debugging and started my own thing (but it didn't get ...
by kevinkk525
Tue Jun 08, 2021 12:47 pm
Forum: Raspberry Pi microcontroller boards
Topic: Arduino Nano RP2040 Connect
Replies: 5
Views: 4273

Re: Arduino Nano RP2040 Connect

oh this looks interesting. It would be great if this opportunity could be used to create a more generic way of connecting boards to a wireless interface so that in the future we could easily adapt it to connect different kind of boards to different kind of WLAN-modules or easily create a WLAN-module...
by kevinkk525
Tue Jun 08, 2021 5:02 am
Forum: Programs, Libraries and Tools
Topic: Code for Garden watering
Replies: 1
Views: 1490

Re: Code for Garden watering

I'm sure it can be done simpler but using my existing libraries and uasyncio something like this could work (Not that I didn't actually test the main code, the abutton library definitely works): Save this file as abutton.py: # Author: Kevin Köck # Copyright Kevin Köck 2019-2020 Released under the MI...
by kevinkk525
Fri May 28, 2021 5:35 am
Forum: Pyboard D-series
Topic: 3V3 Pin not working
Replies: 6
Views: 17334

Re: 3V3 Pin not working

Yeah that's a good point. Otherwise the state would have to be stored in some RTC memory and checked on wakeup, definitely more complicated.
by kevinkk525
Thu May 27, 2021 12:47 pm
Forum: General Discussion and Questions
Topic: datetime not working out of the box
Replies: 18
Views: 10372

Re: datetime not working out of the box

Very nice. It's a good start. Looks a lot better now.
by kevinkk525
Thu May 27, 2021 9:42 am
Forum: ESP32 boards
Topic: MQTT+ ASYNC programming
Replies: 3
Views: 2875

Re: MQTT+ ASYNC programming

you try to send strings which only works in certain cases. Try sending them as bytes by "string.encode()". Maybe that works.
by kevinkk525
Thu May 27, 2021 5:26 am
Forum: Pyboard D-series
Topic: Webrepl not working while executing code
Replies: 2
Views: 11642

Re: Webrepl not working while executing code

Well, for anyone interested, I ended up building my own firmware with _thread enabled and just ran my application in a thread, which leaves the repl responsive and therefore the webrepl works fine too. Not really my preferred mode but at least it seems to work stable. An added benefit might be that ...
by kevinkk525
Thu May 27, 2021 5:24 am
Forum: Pyboard D-series
Topic: 3V3 Pin not working
Replies: 6
Views: 17334

Re: 3V3 Pin not working

Must be nice for bettery powered application. But would have been easier if the power pin was enabled by default and could be disabled manually not the other way around. But now I know :D Using other boards is just always full of surprises :)
by kevinkk525
Wed May 26, 2021 7:22 pm
Forum: Pyboard D-series
Topic: 3V3 Pin not working
Replies: 6
Views: 17334

Re: 3V3 Pin not working

oh.. thanks a lot! Somehow I missed that..
by kevinkk525
Wed May 26, 2021 6:43 pm
Forum: Pyboard D-series
Topic: 3V3 Pin not working
Replies: 6
Views: 17334

3V3 Pin not working

As I was trying to use multiple sensors with my Pyboard-D, I noticed that the 3V3 pin doesn't work. I doubt that this is just an input? Because there's no other 3V3 pin so it is the only source for the 3V3 voltage.. The 5V pin works just fine but when I connect the LED to the 3V3 pin, nothing happen...