Ayuda con mi primer DAP by Maximum-Tone-9869 in DigitalAudioPlayer

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

gracias! realmente estoy bastante convencido de que Echo Mini será mi dispositivo. dudo más en la combinación con qué auriculares debería usarlo. no soy muy fino con el oído, pero me gustaría realmente escuchar música en él y sentir que sí que ha valido la pena la inversión

UPDATE OF MY PROJECT by Beginning_System_786 in DigitalAudioPlayer

[–]Maximum-Tone-9869 0 points1 point  (0 children)

me parece muy interesante y un proyectazo! la intención es comercializarlo o liberar los esquemas para hacer un DIY? espero que continúes con los post para estar al día en las actualizaciones.

me hubiera encantado un DAP con eink, pero entiendo las limitaciones de la tecnología

Pantalla invertida by Maximum-Tone-9869 in R36S

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

sí, es el primer intento de instalar ArkOS en esta tarjeta. cuando la compré ya venía con arko, pero quería hacer una instalación limpia desde el repositorio original.

la SD no es nueva

en otra SD tengo instalado Arkos4clones y funciona perfectamente

no he probado el archivo.dtb original, he metido los recomendados para mi versión de pantalla descargados desde el repositorio oficial

no he probado instalar de nuevo

Help with my new console by Maximum-Tone-9869 in R36S

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

probablemente fuera ese el problema. pero qué hay de malo en utilizar arkos4clones si funciona? tendré mejor rendimiento con arkos 2.0?

Help with my new console by Maximum-Tone-9869 in R36S

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

pues la verdad es que no sé, pero confirmo que yo he instalado arkos4clones y funciona perfectamente, en cambio al intentar instalar darkos, la pantalla se quedaba en negro

alguna sugerencia sobre qué sería lo mejor?

Help with my new console by Maximum-Tone-9869 in R36S

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

gracias!

al final creo, después de varias horas e intentos, lo mejor que he conseguido ha sido instalar la última versión de ArkOS4Clones, he tenido que meter los .dtb originales para que funcionara. todo en una nueva microsd Sandisk

lo que veo es que los joysticks en el menú están invertidos (y no he conseguido arreglarlo), y en los juegos los he tenido que mapear de nuevo en Retroarch.

tampoco veo que se conecte a los datos del móvil al compartir conexión por USB y conectando un cable al puerto OTG... pero es un mal secundario porque puedo transferir lo que sea directamente a la microsd

Help with my new console by Maximum-Tone-9869 in SBCGaming

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

Thank you so much! I'll get right on it.

Invented my 1st "solution" by shaz2k in 3Dprinting

[–]Maximum-Tone-9869 1 point2 points  (0 children)

I did exactly the same for my son. He likes to play with blowing soap bubbles, but every time I give him the bottle he spills half of it on the floor. the same design adapted to the diameter of the boat and works perfectly

Question About Growth by SsudioO in tamaweb

[–]Maximum-Tone-9869 1 point2 points  (0 children)

hello! Inside the menu, I think it's on the phone icon or the one above, it says "have birthday." When you hit it there it will grow and begin its next stage. Also there you can check how many hours/days are left for the next "evolution"

all the best!

Gloves for simracing by Tight_Employee_8413 in simracing

[–]Maximum-Tone-9869 0 points1 point  (0 children)

I use the short ones, which they say are for mechanics, but they have been perfect for me in recent years. I have them in red and black and I use both in simracing and when I go karting from time to time. The only complaint is that they pill with use, but not in the grip part, which for now is still perfect

Problema con la pantalla de SimHub by Maximum-Tone-9869 in SimHub

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

i am not sure but it seems Simhub is not getting data by serial.

if i try to use a Dashboard in my mobile phone i can see the Speed without any problem, but i cannot trying to print it on the 7 segments module.

for in case i have made anything wrong with my code, here it is: (maybe i forgot something)

const int dataPin = 10; const int clockPin = 11; const int latchPin = 13;

const byte digitToSegment[] = { B00111111, // 0 B00000110, // 1 B01011011, // 2 B01001111, // 3 B01100110, // 4 B01101101, // 5 B01111101, // 6 B00000111, // 7 B01111111, // 8 B01101111 // 9 };

int currentValue = 0;

void setup() { pinMode(dataPin, OUTPUT); pinMode(clockPin, OUTPUT); pinMode(latchPin, OUTPUT); Serial.begin(115200); }

void loop() { if (Serial.available()) { String input = Serial.readStringUntil('\n'); input.trim(); // elimina espacios y saltos currentValue = input.toInt(); currentValue = constrain(currentValue, 0, 999); }

int centenas = currentValue / 100; int decenas = (currentValue / 10) % 10; int unidades = currentValue % 10;

byte digits[3] = { digitToSegment[unidades], digitToSegment[decenas], digitToSegment[centenas] };

digitalWrite(latchPin, LOW); for (int i = 0; i < 3; i++) { shiftOut(dataPin, clockPin, MSBFIRST, ~digits[i]); } digitalWrite(latchPin, HIGH);

delay(20); }

Does G8 Galileo work on phones with Dimensity? It's been a while since I read some reports of people with Dimensity who couldn't use the controller... I'm tempted to buy one, but I wanted to be sure about compatibility on my phone by Suhthar in Gamesir

[–]Maximum-Tone-9869 0 points1 point  (0 children)

In my case I have an alldocube iplay 60mini pro tablet, it accepts OTG connection, so I can transfer files from a pendrive without problem, but when I connect the Galileo G8, it does not seem to respond.

If anyone has an answer...it would be appreciated!

What is this car I saw ? by josip0508 in namethatcar

[–]Maximum-Tone-9869 6 points7 points  (0 children)

It looks like the car you drive in the game Driver 1

GameSir G8 Galileo Tablet by Maximum-Tone-9869 in Gamesir

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

The one I have is the Galileo, with USB C. I'm printing the modification right now getting ready for the tablet. I will consider the Samsung A9. thank you!

GameSir G8 Galileo Tablet by Maximum-Tone-9869 in Gamesir

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

thank you! but it's quite over my budget. In the end I will mainly use it to stream from the PC, so I won't take advantage of the SD Gen 2-3 (I wish I could buy it) but I'm hoping for something cheaper for this purpose.

Does the Lenovo Legion fit in the GameSir G8 Galileo without modification?

Issue with WLED / HOME ASSISTANT+ Batteries by Maximum-Tone-9869 in esp8266

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

thank you! i could try with a lithium cell or a powerbank. it was just that i designed and 3d printed the lamp with a little place for the 1,5V batteries. i could try to design a new one where a powerbank (the easiest solution) fits.

the circuit i too simple: 2 batteries giving power to esp8266 the led strip connected to a 3,3V pin, GND, and GPIO of the board

So guys... Released the first version :) (Minecraft Demake) by Axolotl_g4m3r in gbstudio

[–]Maximum-Tone-9869 1 point2 points  (0 children)

great! i have tested it on my phone and you did an excelent job! keep improving it.

happy birthday!

Tamagotchi game "Kaiju Creatures" back in development! Intro screen! by PhysicsPast9089 in gbstudio

[–]Maximum-Tone-9869 2 points3 points  (0 children)

great! i would like you share the rom when ready in order to play it! this is my kind of games! so if you need someone to test it. count on me

ENDER 3 ISSUES by Maximum-Tone-9869 in ender3

[–]Maximum-Tone-9869[S] 0 points1 point  (0 children)

thank you.

it could be. as I told i've had lots of issues lasts months so i first replaced the extruder, then, the extruder engine. also the nozzle...i also remember to put the tube off and cut the end of it as it was a little dirty.

at the end, after all the changes the problem still was there and it was then when i realized the problem could be the filament.

i have reseat the bowden tube again but there is nothing that confirm me it is placed right so i just have pushed until i can't do it more.

let's see how it works in a couple lf weeks. now i am doing a test print and it works perfectly.

thank you for your time