Search found 2754 matches

by jimmo
Fri Aug 26, 2022 2:31 pm
Forum: Raspberry Pi microcontroller boards
Topic: micropython timing metronome
Replies: 1
Views: 2968

Re: micropython timing metronome

classy_coder wrote:
Wed Aug 24, 2022 2:44 am
Can anyone point me in the right direction?
Hi,
It looks like you're using CircuitPython, not MicroPython
Might be worth trying the Adafruit discord: https://discord.com/invite/5FBsBHU
by jimmo
Fri Aug 26, 2022 2:08 pm
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 432611

Re: BMP280 / BME280 uPython

Rissy wrote:
Fri Aug 26, 2022 8:13 am
It was this stuff that i saw last night: https://github.com/pimoroni/pimoroni-pi ... out_bme280

This confused me. What is this please?
This is a different driver, written in C++ that is used by the Pimoroni custom firmware.
by jimmo
Fri Aug 26, 2022 2:07 pm
Forum: ESP32 boards
Topic: name of esp32 in nmap command
Replies: 4
Views: 20668

Re: name of esp32 in nmap command

picpic020961 wrote:
Fri Aug 26, 2022 11:04 am
but after reboot is the old value displayed
You need to configure the WiFi at the start of your program so it happens on every boot (including setting any config options).
by jimmo
Fri Aug 26, 2022 2:06 pm
Forum: Raspberry Pi microcontroller boards
Topic: Pico W: Problem binding a socket to a UDP Multicast Group
Replies: 7
Views: 26343

Re: Pico W: Problem binding a socket to a UDP Multicast Group

Beormund wrote:
Wed Aug 24, 2022 3:41 pm
Here's a stripped down test case for listening to UDP multicast broadcasts on 239.255.255.250:1900:
Thanks again for raising this. I've submitted a PR to fix the wifi driver.
by jimmo
Fri Aug 26, 2022 12:20 am
Forum: General Discussion and Questions
Topic: Connect esp32 BLE to PC BT
Replies: 1
Views: 19592

Re: Connect esp32 BLE to PC BT

So i wonder where problem is - any idea?? Unfortunately the two links you provided are for two quite different things. The first is for "Classic Bluetooth" which provides a Serial profile. It isn't BLE. (The ESP32 supports both "classic" and "BLE", although MicroPython only allows access to the BLE...
by jimmo
Fri Aug 26, 2022 12:16 am
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 432611

Re: BMP280 / BME280 uPython

That said, you might also prefer just to use a Python driver on a regular MicroPython version.

See https://github.com/robert-hh/BME280
and https://github.com/dafvid/micropython-bmp280
by jimmo
Fri Aug 26, 2022 12:15 am
Forum: Raspberry Pi microcontroller boards
Topic: BMP280 / BME280 uPython
Replies: 45
Views: 432611

Re: BMP280 / BME280 uPython

I found this on Github: https://github.com/pimoroni/pimoroni-pi ... on/modules This seems to be a source of what i need, at least to get me started. But I don't understand what to do with this information. There's no instructions on what to do. Pimoroni make a custom build of MicroPython that inclu...
by jimmo
Fri Aug 26, 2022 12:12 am
Forum: Announcements and News
Topic: Migration to GitHub Discussions
Replies: 20
Views: 168987

Re: Migration to GitHub Discussions

Only immediate issue for me is that Discussions has the same favicon as Github, so I can't easily tell if a tab is a github thing (with the octocat favicon) or a MicroPython thing (used to have an "M" favicon, now yet another octocat favicon) That's true... haha there must be a browser extension fo...
by jimmo
Thu Aug 25, 2022 2:03 pm
Forum: Raspberry Pi microcontroller boards
Topic: Pico W: Problem binding a socket to a UDP Multicast Group
Replies: 7
Views: 26343

Re: Pico W: Problem binding a socket to a UDP Multicast Group

Here's a stripped down test case for listening to UDP multicast broadcasts on 239.255.255.250:1900: Thanks for the detailed info and repro! I have a working example (running in CPython) than can pick up the SDDP multicasts on my network, but also unable to get this working on my Pico W. It also wor...