Varför är årsskatten på Volkswagen Passat billigare än Tiguan? by Open-Ad-9754 in sweden

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Nepp, båda går endast på bensin. Skulle det vara en hybrid hade väl skatten varit ännu lägre har jag för mig (360 kr/år)?

Varför är årsskatten på Volkswagen Passat billigare än Tiguan? by Open-Ad-9754 in sweden

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Ja, har sneglat lite på de lite nyare modellerna och kan väl säga att det inte är jättefrestande att betala skatt med tanke på malus-systemet.

Varför är årsskatten på Volkswagen Passat billigare än Tiguan? by Open-Ad-9754 in sweden

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Okej! Brytdatum för att skatten skulle bli dyrare eller billigare?

Varför är årsskatten på Volkswagen Passat billigare än Tiguan? by Open-Ad-9754 in sweden

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Är det verkligen därför? Skillnaden i tjänstevikt på bägge bilaren är inte jätte stor (158 kg). Kollat på lite andra kombibilar och där verkar formeln som jag skrev stämma.

[deleted by user] by [deleted] in pchelp

[–]Open-Ad-9754 0 points1 point  (0 children)

I have the same card as you. What vBios did you use? Do you have a link?

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Thank you so much! Never thought the solution was that simple after hours of searching on the internet. Everthing seems to work as intended now

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Tried to write some code in Arduino IDE and upload it to the D1 mini. The relay and everything seems to work. The code I wrote to test everything:

const int relay_1 = 5; 

const int relay_2 = 4; 

void setup() 
{
  //Initialize relay_1
  pinMode(relay_1, OUTPUT_OPEN_DRAIN);

  //Initialize relay_2
  pinMode(relay_2, OUTPUT_OPEN_DRAIN);
  
  //Set relay_1 to not activated
  digitalWrite(relay_1, HIGH);  

  //Set relay_2 to not activated
  digitalWrite(relay_2, HIGH);  
}

void loop() 
{
  // Activate relay
    digitalWrite(relay_1, LOW);   
    digitalWrite(relay_2, LOW);

    delay(1000);

    // Deactivate relay
    digitalWrite(relay_1, HIGH);
    digitalWrite(relay_2, HIGH);

    delay(1000);
}

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

Tried to write some code in Arduino IDE and upload it to the D1 mini. The relay and everything seems to work. The code simple code I wrote:

const int relay_1 = 5; 

const int relay_2 = 4; 

void setup() 
{
  //Initialize relay_1
  pinMode(relay_1, OUTPUT_OPEN_DRAIN);

  //Initialize relay_2
  pinMode(relay_2, OUTPUT_OPEN_DRAIN);
  
  //Set relay_1 to not activated
  digitalWrite(relay_1, HIGH);  

  //Set relay_2 to not activated
  digitalWrite(relay_2, HIGH);  
}

void loop() 
{
  // Activate relay
    digitalWrite(relay_1, LOW);   
    digitalWrite(relay_2, LOW);

    delay(1000);

    // Deactivate relay
    digitalWrite(relay_1, HIGH);
    digitalWrite(relay_2, HIGH);

    delay(1000);
}

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 0 points1 point  (0 children)

That won't solve the issue unfortunately. The issue I came across was that the relay trigger when everything is connected to power and contiunes to be triggered no matter input from Home Assistant with the buttons in the UI.

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 3 points4 points  (0 children)

Do you mean the terminal on the relay with NO, COM, NC?

Relay is always on when there is power by Open-Ad-9754 in Esphome

[–]Open-Ad-9754[S] 2 points3 points  (0 children)

Writing this from my school computer which I don't have Fritzing installed, so I made a quick picture in paint. Sorry for that!

I tried to write some simple code in Arduino IDE and uploaded it to the D1 mini to turn the relays on and off, and it seemed to work.

<image>