Community supported product related questions, routinely checked by Seeed’s Engineers
i need to connect a recomputer j30 to a DS90UB960-Q1EVM board, the board uses a 40-pin with the P/N QSH-020-01-H-D-DPA and the j30 uses a mipi csi connector with 15 pins. Is there an adapter board which can convert 40 pins to 15 ?
Hello, may I ask if this DS90UB960-Q1EVM board was purchased from Seeed? If so, could you please provide the product’s SKU? This will help us look up the information for you.
Hey folks,
I’ve hooked up a BLE module to my XIAO ESP32-C3 (5V to module VCC, GND common). Everything works briefly, but the XIAO resets when advertising starts.
Specs:
XIAO ESP32-C3 (3.3V logic)
BLE module powered at 5V via VIN
Using Arduino IDE 2.2 and BLEPeripheral library
Anyone seen brown-out resets like this?
Suspecting 5V draw spikes—should I add a decoupling cap or better power sequencing? Appreciate any input!
Thank you for your hard work !
I have a question about the BC02 BLE Beacon.
Can it be used as a simple BLE Tracker within home assistant?
Curently, I’m using a bunch of Holyiot devices in correlation with the the HA Bluetooth integration. But theses devices are not good for outdoor usage, especially if the temperature drops below zero.
So I’d like to use the BC02 BLE Beacons.
As I can’t find any related thread, I’ll try my best here.
Thanks for any advice.
I am using the Jetson J2012 product from Seeed Studio, and I am working with the Toshiba TC358743 HDMI-to-CSI driver on JetPack 6.1.0.
I can detect the camera and capture frames when using the CAM1 CSI port, but it does not work on the CAM0 CSI port. When I connect it to CAM0, I see a timeout error.
Has anyone encountered this issue before? I can share the log file dts file.
HI there,
Yes, It’s been posted here before… The DEV tree needs to be the Seeed Specific one, Hit the search button the post and fix or info is there.
HTH
GL
PJ ![]()
Cool tech! Can’t wait to get more involved!
Hey,
I am looking for mechanical drawings for “reComputer J401 - Open-source carrier board”, especially the position and dimensions of the mounting holes. I don’t seem to find this information in the datasheet. Could anyone share with me where I can find this?
Thank you!
ve been working on a project for two days and it’s not working for me. I’m using an ESP32 C6 ANDESP32 S3 C3 Round Display for XIAO - 1.28 inch Round Touch Screen, 240×240, 65k Colors, RTC, Charging Circuit, TF Card Slot I can’t get anything to be written on the screen. Can anyone help? A working code for the watch would also help. Thank you.
Hi there,
And welcome here…
So this Demo.
and this Link should get you started , code and compiler output is present.
Start a New thread, ![]()
Post the code you have or You are trying and we can comment.
Everything works , but it is a process to get it going.
HTH
GL
PJ ![]()
I’m very sorry to have to post this here, but I can find no way to post some questions I have about XIAO nRF52840 + Wio-SX1262. I have not been able to find the answers to my questions despite a lot of research. Can someone please explain to me how/where to post a question?
Thanks1
Hi there,
And welcome here…
So it’s a Spam prevention thing, you need to read a few threads and like a post or post a question in a alike category. Then the create a new thread will magically appear then you can post your topic and start a new thread. ![]()
HTH
GL
PJ ![]()
utilizing an XAIO nRF52840 Ble for my sim racing steering wheel buttons. Having an issue with rapidly pulsing signals when I press a button. Any help with will be appreciated, have already soldered capacitors across the switches with no success
Hi there,
And Welcome here…
So after you look around and like and read a few posts you can make your own thread on the subject. The Jist of it has been discussed here though before so have a look at the search for the BLE stuff, what is the setup ? Can you describe it more?
How is it powered , USB ? battery ?
Has it always had this or from a change or edit made , cause it ?
HTH
GL
PJ ![]()
add a pis to you post maybe also, and if you post the code , use the code tags above “</>” paste it in there. ![]()
Lots of smart folks here willing to help.
It is powered by a single 18250 cell, I am using a 4 switch cluster mimicking a d-pad, 4 switches for buttons A,B,X,and Y. A 5th switch for my horn button and a joystick for camera control. It has had the button bounce issue all along and have added the Bounce2 library as well. Already bald, so cant pull my hair out
![]()
Hi there,
So , it’s not rogaine
but , GPIOTE (GPIO Tasks and Events) The classic RTOS in the way I’m thinking , here is what I know others have run up against and one fellow even used the combo of BLE wireless mouse and HID lib’s
to get it done in the end.
AI agrees,
If you are getting a rapid torrent of pulses when pressing a button on the XIAO nRF52840, you are looking at classic hardware switch bounce being amplified by how the underlying RTOS or hardware handles interrupts.
Since adding standard capacitors didn’t tame it, the issue is almost certainly because the software is reacting to microsecond-level transitions that are too fast for simple RC filtering or standard software debouncers like Bounce2 to cleanly absorb when high-priority interrupts are involved.
Here is exactly what is happening under the hood and how to fix it:
1. The RTOS Culprit: Port Event vs. IN Event
If you are running an RTOS framework (like Zephyr OS or the Arduino nRF52 mbed core), it configures the nRF52840’s GPIOTE (GPIO Tasks and Events) peripheral in one of two ways. This makes a massive difference:
- PORT DETECT (Low Power Mode): Zephyr defaults to using the shared
PORTevent sense mechanism (SENSEfield in thePIN_CNFregister) for normal GPIO callbacks. This is a level-sensitive interrupt. If a button bounces rapidly, it sets off a cascading storm of interrupts that can completely choke the RTOS context switching mechanism, causing a burst of weird, rapid pulsing output events. - IN EVENT (High Accuracy Mode): If the framework or a library spins up a dedicated
GPIOTE->EVENTS_IN[x]channel, it uses an edge-triggered hardware latch. This mode is blindingly fast and will catch every single microscopic glitch of a physical button switch—far faster than an Arduino loop can handle it.
2. Why Bounce2 or Capacitors Are Failing
- The RTOS Thread Latency: Libraries like
Bounce2rely on synchronous polling inside your main execution loop (bounce.update()). If the RTOS context-switching or Bluetooth (BLE) high-priority interrupts are busy maintaining the radio connection link for your steering wheel, your loop execution will stall slightly. The button bounces long before the loop gets around to reading the line again, allowing intermediate spikes to sneak through or go undetected until it is too late. - Capacitor Discharge Current: Simply soldering a cap across the switch without an inline resistor creates an instant, high-current discharge path when the switch closes. This can actually generate more electrical noise on the line, tricking the highly sensitive nRF52840 input buffers into seeing rapid high/low transitions.
HTH
GL
PJ ![]()
I will look for what info I have on this , it has been flushed out pretty well AFAIK ![]()