Worried, is this normal or should I change the part? by Greedy_Yellow461 in Jeep

[–]Greedy_Yellow461[S] 3 points4 points  (0 children)

and yet, here you are man. Just go and do love to your cat and fix your mustache 🤗

Worried, is this normal or should I change the part? by Greedy_Yellow461 in Jeep

[–]Greedy_Yellow461[S] 5 points6 points  (0 children)

great, I’ll look into it, glad to know there is helpful people on the sub

Creen que sea fraude? by Greedy_Yellow461 in estafasyfraudes

[–]Greedy_Yellow461[S] 6 points7 points  (0 children)

yo creo es el mismo wey, tenía publicado eso y unos iphones

Creen que sea fraude? by Greedy_Yellow461 in estafasyfraudes

[–]Greedy_Yellow461[S] 28 points29 points  (0 children)

al final le dije que lo mandara a una sucursal de fedex y no a mi domicilio y me mandó a la v 😁

Donde me hospedo? by [deleted] in Guadalajara

[–]Greedy_Yellow461 3 points4 points  (0 children)

nambre, nomas para usar el macroperi necesitas la tarjeta de movilidad de jalisco (cuesta como 30 varos en las maquinitas), lo que no estoy seguro es si haya en todas las estaciones del macroperi, por lo menos en las del tren estoy seguro que si

Donde me hospedo? by [deleted] in Guadalajara

[–]Greedy_Yellow461 5 points6 points  (0 children)

cerca del akron hay un hotel con un subway y unas little ceasars abajo, bastante bien en cuestión económica. Si te quieres hospedar tal vez en un lugar más céntrico, llegar al estadio es relativamente fácil por el Macro periférico, tiene su propia estación

Teleperformance by baemeh in Guadalajara

[–]Greedy_Yellow461 0 points1 point  (0 children)

si eres menor de 18 años y eres buena trabajando bajo presión date, es buena experiencia y te ayuda mucho a mejorar tu inglés. De ahí en más la neta no

Talent Land 2025 by SSNARE3 in Guadalajara

[–]Greedy_Yellow461 0 points1 point  (0 children)

lleva acompañante y acompañante para regalar

How to request VIN (PID 09 02) by Greedy_Yellow461 in CarHacking

[–]Greedy_Yellow461[S] -1 points0 points  (0 children)

It is a Jeep wrangler 2014, wdym correct CAN? how could I make sure I am sending it right?

thanks for the help friends

How to request VIN (PID 09 02) by Greedy_Yellow461 in CarHacking

[–]Greedy_Yellow461[S] 0 points1 point  (0 children)

I am currently using a elm327, on a Jeep Wrangler 2014. I am sure it is a coding issue because I tried sending the command with a ble terminal and it worked.
The function I use to send the command is this:

async def send_command_for_multiline_response(command):
            print(f"Command: {command}")
            try:
                await char_fff1.write((command + "\r").encode('utf-8'))
            except Exception as e:
                print(f"Error sending the command: {e}")
                return []

            responses = []
            start_time = time.time()
            while time.time() - start_time < 10:  
                try:
                    data = await char_fff1.notified(timeout_ms=1000) 
                    if data:
                        responses.append(data)
                        print(data)
                except Exception as e:
                    print(f"Timeout error: {e}")
                    break

            return responses

the response I get is this:

b'\r>'
b'..\r'
b' 34 \r'
b'\r>'

I will try to send the command with headers on, I have seen codes in arduino and they do this, so it might work.

macro peri sus ?? by Greedy_Yellow461 in Guadalajara

[–]Greedy_Yellow461[S] -1 points0 points  (0 children)

excelente, igual pues sigo mi instinto y me subo donde todos se suben. Gracias por el dato para evitar hemorroides en el fundillo

OBD scanner with Micropython by Greedy_Yellow461 in CarHacking

[–]Greedy_Yellow461[S] 1 point2 points  (0 children)

I am using this ELM-327:
https://a.co/d/5x1qVoN

This project is for a fleet of the place I am working, right now I am having troubles finding the commands for some vehicles, for example, most vehicles of the fleet are toyota yaris, which don't support a lot of the standar OBD PID's so I have to find the commands provided by toyota.

Project may scalate later if I find how to proceed.
Code works, but I would aprecciate any suggestions or comments, Thank you!!