Hello,I am new here,is there a CE firmware for Ugoos X5M Pro s905m?I tried odrid nightly version and it didn’t work.
P.S. I don’t have 100 000€
Hello,I am new here,is there a CE firmware for Ugoos X5M Pro s905m?I tried odrid nightly version and it didn’t work.
P.S. I don’t have 100 000€
No support yet.
As with other device: devs don’t have hw to test which means support is much slower.
I don’t have 100 000€
But you have money to buy unsupported device.
Okay,I need some help now,can I use this *July Promotions* WONDOM OFFICIAL SHOP - Bluetooth Amplifier Board - Sure Electronics - ADAU1701 - 18650 charger - T-AMP - Volume Control
To debug x5m pro?
It shows as other devices USBi in windows.
I have it connected but logs dont appear ,tx,rx and ground.
There should be a contact with board,but maybe board is isolated,I am not sure.
I tried flashing this code to esp32
#include <HardwareSerial.h>
HardwareSerial SerialTV(2); // Use UART2 (RX=GPIO16, TX=GPIO17)
void setup() {
Serial.begin(115200); // USB communication (PC ↔ ESP32)
SerialTV.begin(115200); // UART2 to TV Box (adjust baud if needed)
}
void loop() {
// Relay PC commands → TV Box
if (Serial.available()) {
SerialTV.write(Serial.read());
}
// Relay TV Box logs → PC
if (SerialTV.available()) {
Serial.write(SerialTV.read());
}
}
I set baudrate 115200 in putty and no luck,few times some random letters appeared
It is best to remove all external devices connected to PCB
You have every port with something attached, HDMI, Ethernet, all 3 USB Ports looks like etc
Remove all that
All you want is the board with u-art serial adapter soldered to tx,rx,gnd
Connect to Putty
Apply power to Ugoos
About | FAQ | Terms of Service | Privacy Policy | Legal Notice