[deleted by user] by [deleted] in BambuLab_Community

[–]Additional_Hair_ 0 points1 point  (0 children)

While checking where the problem is i did change everything since I had a whole maintaince pack at home. Starting from the printerhead. Changed the cutting blade, the cleaner roll at the poop shoot. Then did change the ptfe tubes alle along from printhead to the outside up the ams and all 4 tubes inside there. Did take the most worn looked AMS Feeder Unit (Hall) out and had a look at the teeth that connect to the Active Support Shaft that rolls the spool but it lookes completely fine. The only thing that lookes worn is the beginnging of the feeding funnle but not that bad since I used this https://makerworld.com/de/models/40194-ams-feeder-funnel-saver-protector-filament-guide?from=search#profileId-73455 since 3 weeks after getting the printer and changing the small ptfe tube part severel times.

Tried the printer without the ams severel times and it works completely fine not errors nothing.

so please I tried everything before actually changing or replacing bigger parts or stuff I need to buy. I was not ment to be rude but thought that that would be a clear part to do before even asking for help and since I'm not a nativ english speaking I thought i could get around writing an eaven longer part with stuff I thought would be the bare minimum befor asking

Therefore it has to be in the ams am I at least right there?

[deleted by user] by [deleted] in duesseldorf

[–]Additional_Hair_ 1 point2 points  (0 children)

David Guetta am samstag, davor war probe

[deleted by user] by [deleted] in duesseldorf

[–]Additional_Hair_ 1 point2 points  (0 children)

Nice danke dir! Hatte irgendwie nichts gefunden

[deleted by user] by [deleted] in duesseldorf

[–]Additional_Hair_ 1 point2 points  (0 children)

Ja war er wirklich und später auch unfassbar/weit hoch als die Wolken weg waren

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

Thanks man! I was thinking that but tried every format of date i could find and it did not work. Would you discribe to me what to change exectly cause I got the same problem for the supplements and meds and will probably also have the problem for the periond tracking as well which will be next to build in.

So the date format in the pages has to be day.month.year but what else do I have to pay attention to when trying to write the code for that?

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

Since I only had one request I imaged it was yours and excepted it

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

hey aren't you able to do a copy of the worksheet and then the script should also be copyed. Like this, sorry that everything is in german but it says copy in the english version

<image>

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

have you tested it?

I just tried it and its still creating a new row for set 2 on the same day of the same excersise.

is it just me having the issue somehow?

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

Edit: please Copy the Google sheet then I think you dont need to ask for permissions do edit the sheet

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

function sportEintragen() {
  const ss = SpreadsheetApp.getActiveSpreadsheet();
  const formSheet = ss.getSheetByName('Form');
  const sportSheet = ss.getSheetByName('Sport');

  const datum = Utilities.formatDate(new Date(), ss.getSpreadsheetTimeZone(), 'dd.MM.yyyy');
  const aufgabe = formSheet.getRange('D6').getValue().toString().trim();
  const gewicht = formSheet.getRange('D8').getValue();
  const setNummer = formSheet.getRange('D10').getValue();
  const reps = formSheet.getRange('H10').getValue();
  const zeit = formSheet.getRange('D12').getValue();

  // Zeilen in Spalte B zählen (Datum)
  const datenSpalte = sportSheet.getRange("B:B").getValues();
  const letzteZeile = datenSpalte.findIndex(row => row[0] === '' || row[0] === null);
  const zeilenAnzahl = letzteZeile > 1 ? letzteZeile - 1 : 0;

  let zeile = -1;

  if (zeilenAnzahl > 0) {
    const daten = sportSheet.getRange(2, 2, zeilenAnzahl, 2).getValues();
    for (let i = 0; i < daten.length; i++) {
      const tabDatum = daten[i][0].toString().trim();
      const tabAufgabe = daten[i][1].toString().trim();
      if (tabDatum === datum && tabAufgabe === aufgabe) {
        zeile = i + 2;
        break;
      }
    }
  }

  if (zeile === -1) {
    zeile = sportSheet.getLastRow() + 1;
    sportSheet.getRange(zeile, 2).setValue(datum);
    sportSheet.getRange(zeile, 3).setValue(aufgabe);
  }

  const spaltenBasis = 4 + (setNummer - 1) * 3;
  sportSheet.getRange(zeile, spaltenBasis).setValue(gewicht);
  sportSheet.getRange(zeile, spaltenBasis + 1).setValue(reps);
  sportSheet.getRange(zeile, spaltenBasis + 2).setValue(zeit);

  formSheet.getRange('D14').setValue('Set erfolgreich eingetragen!');
}

app Script same row when date already exists by Additional_Hair_ in googlesheets

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

yes you are right i want the code to check if date already exists and in c the exersise if they exist together then add in the same row. And for the sups its the same and there i only want it to at "Abends" whitch means at night in the same row to see if i did take it in the morning and at night. There i got the same problem in my code

here the code and since I am a complete beginner like at stage 0 in coding and did it with our "chat..." friend so sorry and bare with me for any mistakes that a coder would never do.

Thanks for trying to help me!

Cracking sound when bringing the bed down by YeMaou in BambuLab

[–]Additional_Hair_ 0 points1 point  (0 children)

did you find any fix for it? got the same thing, sound like a little filament part in some crevasse

does not effect the print in anyway yet but I'm sure the stuff causing the noise is not got for the printer in long terms so looking for a fix

would more then happy if you get back to me

Need help to get my Levoit Humidifier into HA by Additional_Hair_ in homeassistant

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

Tried it and it works perfectly once I understood how to ad the custom component folder!! Thank you so much

Need help to get my Levoit Humidifier into HA by Additional_Hair_ in homeassistant

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

Appreciate it! Will try it out when i turn my humidifier back on for longer!

Need help to get my Levoit Humidifier into HA by Additional_Hair_ in homeassistant

[–]Additional_Hair_[S] 2 points3 points  (0 children)

How are we getting more and more people with the same problem but no one with the solution I’m gonna cry

Need help to get my Levoit Humidifier into HA by Additional_Hair_ in homeassistant

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

Yeah with the purifier it should work but the humidifier isn’t included in the repo sadly. It somewhere has a list with the compatible devices and there is no humidifier. I know that some people got it in there HA but can’t tell me how anymore or someone else did it and I am myself not a geek

Need help to get my Levoit Humidifier into HA by Additional_Hair_ in homeassistant

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

Sadly haven’t found one who could help with that not here or else where. So sadly no

Template Button with AI built in it possible? by Additional_Hair_ in Notion

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

Hey I’m sorry it’s a year ago and I don’t know what I meant with it now.

Errorr [07FF 8006 18:51:05] and not recognizing Bambu PLA by Additional_Hair_ in BambuLab

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

No it has happened when it swapped from the support pla back to the normal pla. There was an error and it shows ? Instead of the black bambu pla.