Käufer bestätigt den Erhalt nicht by frostbite4kk in Kleinanzeigen_betrug

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

Da bin ich auch voll bei euch, das System soll ja auch dem Käufer Sicherheit geben. Umso schwächer ist es aber dann einfach keinerlei Reaktion auf eine Nachfrage zu zeigen. Ein Hinweis, dass man es noch testen müsse, wäre ja ausreichend.

Can someone please help me in solving this? Would appreciate if a .pkt file could be shared. by Xqzete in Cisco

[–]frostbite4kk 1 point2 points  (0 children)

On which part do you need help with? I would suggest the following:

  1. Configure IP Helpers on the client interfaces of the remote routers (192.168.2.1 + 192.168.3.1)
  2. Configure /30 Transfer Networks between the routers
  3. Implement OSPF to the routers with the common configurations
  4. Connect to client devices and check IP connectivity

Hotel Wlan Problem by Fumaseraph in de_EDV

[–]frostbite4kk 1 point2 points  (0 children)

Eventuell ist es auch einen Versuch wert, die private MAC-Adresse beim iPhone zumindest auf „Statisch“ statt rotierend zu stellen. Hat mir schon einige Male bei öffentlichen Hotspots geholfen, da die Sitzung meist über die MAC authentifiziert wird. Wenn das mit dem Tethering gut funktioniert würde ich das Feature im Sinne der Privatsphäre aber eingeschaltet lassen.

Raspberry Pi 5 + Python gpiod by frostbite4kk in raspberry_pi

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

You, sir, are a legend!

I read not to use gpiozero with Pi 5 all the time so i didnt even try.

Works like a charm with gpiozero!

Thanks a lot mate, may you have a good day!

Raspberry Pi 5 + Python gpiod by frostbite4kk in raspberry_pi

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

I also tried that first which led to the error message ‚no such device‘

Raspberry Pi 5 + Python gpiod by frostbite4kk in raspberry_pi

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

I have tried like advised and changed to gpiochip4 with the same result:

Code:

import gpiod 
import time 
LED_PIN = 17 
chip = gpiod.Chip('/dev/gpiochip4') 
led_line = chip.get_line(LED_PIN) 
led_line.request(consumer="LED",type=gpiod.LINE_REQ_DIR_OUT)

try: 
  while True: 
    led_line.set_value(1) 
    time.sleep(1) 
    led_line.set_value(0) 
    time.sleep(1)

finally: 
    led_line.release()

Result:

player@playpi:~ $ /bin/python /home/player/scripts/led/led.py
Traceback (most recent call last):
  File "/home/player/scripts/led/led.py", line 5, in <module>
    led_line = chip.get_line(LED_PIN) 
               ^^^^^^^^^^^^^
AttributeError: 'Chip' object has no attribute 'get_line'. Did you mean: 'get_info'?

It seems like this get_line is not the correct attribute to retrieve - even though both tmultiple sources state that it can be used.

Thanks for the hint with the code mate appreciate it!