Search found 5071 matches
- Wed Apr 14, 2021 12:14 pm
- Forum: MicroPython pyboard
- Topic: Input voltage limit, V+ as output, and actuator power supply options
- Replies: 2
- Views: 90
Re: Input voltage limit, V+ as output, and actuator power supply options
I'd never spotted that discrepancy, believing 16V was the limit on a Pyboard 1.x. The voltage regulator is rated to 16V and has thermal shutdown, so nothing will go bang, but whether the regulator will start to shut down at 16V depends on factors such as whether you draw power from 3V3, on PCB layou...
- Wed Apr 14, 2021 9:25 am
- Forum: General Discussion and Questions
- Topic: Fade 1 image to show another.
- Replies: 2
- Views: 95
Re: Fade 1 image to show another.
You might be more likely to get a response if you told us what hardware you plan to use: display type and host device.
- Wed Apr 14, 2021 9:22 am
- Forum: General Discussion and Questions
- Topic: Installing uasyncio V3
- Replies: 2
- Views: 80
Re: Installing uasyncio V3
In general there is no need to compile from source, unless you want to use "advanced" features like frozen bytecode. Daily builds are available here - simply download and install the latest "unstable" build. Despite the name, automated testing ensures that problems with these builds are very rare. A...
- Tue Apr 13, 2021 4:47 pm
- Forum: ESP32 boards
- Topic: Timer and asyncio.Event()
- Replies: 1
- Views: 102
- Mon Apr 12, 2021 5:07 pm
- Forum: Raspberry Pi microcontroller boards
- Topic: Wifi bridge for RPI Pico
- Replies: 32
- Views: 2796
Re: Wifi bridge for RPI Pico
My understanding of @frustr8dlec's question was to ask whether it was possible to re-flash an ESP-01 with code for the WiFi MQTT bridge. Using the ESP-01 as designed is a given - but supporting MQTT that way would be, er, difficult.
- Mon Apr 12, 2021 7:10 am
- Forum: Programs, Libraries and Tools
- Topic: machine.RTC documentation
- Replies: 4
- Views: 140
Re: machine.RTC documentation
My advice is to use the pyb library for the Pyboard's RTC. Its documentation is correct, unlike that of machine.rtc.
All Pyboards are compatible with pyb.
All Pyboards are compatible with pyb.
- Mon Apr 12, 2021 7:04 am
- Forum: MicroPython pyboard
- Topic: Reading multiples waves files in the same time
- Replies: 3
- Views: 165
Re: Reading multiples waves files in the same time
My comment was based on experience developing this library which can play MP3 and FLAC files via an external decoder chip. Handling a single audio stream from a file on an SD card was near the limit of what could be achieved, even with the number crunching of decoding the stream offloaded to externa...
- Mon Apr 12, 2021 6:55 am
- Forum: Drivers for External Components
- Topic: Receive and transmit IR remote codes
- Replies: 17
- Views: 4211
Re: Receive and transmit IR remote codes
Given that you know you have a Sony 12 bit remote you should be able to run from ir_rx.test import test test(2) # The specific test for Sony 12 bit Then make a record of the data and address value associated with each button that is of interest. Transmitting using those values using the ir_tx SONY_1...
- Mon Apr 12, 2021 6:39 am
- Forum: Raspberry Pi microcontroller boards
- Topic: nano-gui working on rp2
- Replies: 2
- Views: 456
Re: nano-gui working on rp2
It isn't on PyPi. PyPi isn't much help for targets with no network interface.
Installation is done by cloning the repo to your PC and copying files to the filesystem, preserving the directory structure. Instructions may be found here.
Installation is done by cloning the repo to your PC and copying files to the filesystem, preserving the directory structure. Instructions may be found here.
- Sun Apr 11, 2021 12:58 pm
- Forum: MicroPython pyboard
- Topic: Reading multiples waves files in the same time
- Replies: 3
- Views: 165
Re: Reading multiples waves files in the same time
I think this is beyond the scope of microcontroller hardware for a variety of reasons.
I would consider using something like a Raspberry Pi hosting a full version of Linux. I'd ask for advice in a suitable forum: Linux has a variety of audio applications which can probably do what you are after.
I would consider using something like a Raspberry Pi hosting a full version of Linux. I'd ask for advice in a suitable forum: Linux has a variety of audio applications which can probably do what you are after.