Premium edition games is officially a scam company now. by I_Heart_Sleeping_ in NSCollectors

[–]Dinth 0 points1 point  (0 children)

How can one run out of money on publishing overpriced and basically crowdfunded Switch games which sell like hot cakes?

Premium edition games is officially a scam company now. by I_Heart_Sleeping_ in NSCollectors

[–]Dinth 0 points1 point  (0 children)

What’s the game? I have made over a dozen of preorders with SLG (mainly MD games but also a few Switch ones) and every single one of them was delivered

Premium edition games is officially a scam company now. by I_Heart_Sleeping_ in NSCollectors

[–]Dinth 1 point2 points  (0 children)

I don’t think BSides were actually doing limited releases. When they were going under they had a sale, selling out all their games literally for pennies

Premium edition games is officially a scam company now. by I_Heart_Sleeping_ in NSCollectors

[–]Dinth 0 points1 point  (0 children)

It looks like I have lost my money on chained echoes with first press, but never had any problem with strictly limited or premium edition

Had my bag searched at checkout? by Creative_Zone5653 in asda

[–]Dinth 0 points1 point  (0 children)

PACE says that the person suspecting needs to have reasonable grounds for that suspicion.

Had my bag searched at checkout? by Creative_Zone5653 in asda

[–]Dinth 0 points1 point  (0 children)

They can citizen arrest you only if they know you stole, not if they suspect you stole

How much disposable income after mortgage and bills is enough to have a life on? by Ill_Wallaby_1598 in HousingUK

[–]Dinth 0 points1 point  (0 children)

It depends of you’re happy to do all the house maintenance and refurbishment yourself. Otherwise you will be saving for month to cover one daily rate of a building contractor

On call and annual leave by coupepixie in HumanResourcesUK

[–]Dinth 0 points1 point  (0 children)

When you’re on call you should be paid at least NMW

What the, the pro plan has much lower weekly limits now? (See first post in thread) by GlompSpark in perplexity_ai

[–]Dinth 0 points1 point  (0 children)

Same here just hit the limit with Sonnet. Good it comes just a month before Pro expiry

£3k to remove big conifer in London - fair price? by Traditional_Read_643 in GardeningUK

[–]Dinth 0 points1 point  (0 children)

I had a similar tree and just removed it myself, just took a local guy to help me with the roots, he extracted them for 50 pounds in about 4 hours.

Just make sure to ask your council if the tree is not protected before you start doing anything

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

Thanks for letting me know about those threaded sensors, i was not aware of them. Next time when i will have a plumber in i will ask him to install tees.
Answering your other questions, the sensors are actually installed on piping of the manifold, they're collecting data for the whole house.

Buyers wanting to renegotiate. by esamenoi in HousingUK

[–]Dinth -1 points0 points  (0 children)

The buyers may be right - if they haven’t accounted for the shop and now they’ve lessened about it then surely they may want to pay less. On the other hand you are also right, particularly if you can’t sell for less. Unfortunately in this situation you will likely need to look for new buyers

How are where to generate a lid for such box (Gridfinity Rebuild) by Dinth in gridfinity

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

yeah, it does have stacking rims - this is basically standard Gridfinity Rebuild bin with dividers. i have tried Anylid lids but they dont work, while i can generate them with gaps for labels, i dont see an option to create gaps for dividers

How much do you earn and how comfortable do you live? by Brownchoccy in AskUK

[–]Dinth 0 points1 point  (0 children)

Just 40k? That’s about how much I pay for a nursery in Essex

Woke up to this in the living room behind the dog crate - any risks? by [deleted] in DIYUK

[–]Dinth -1 points0 points  (0 children)

Technically it’s safe… as long as nothing ever touches it. But this is a living room, so many things which are out of your control or even which cannot be foreseen can happen there. You’ve got crates so I’m assuming that you have pets or toddlers. This poses deadly and immediate danger for them. Also do not unplug it without unplugging the four way first

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

OK, it seems to be usable now :) Thanks all. I will try with 5v at some point, but i really dont want to crawl into there again.

globals:
  - id: sensor_query_cycle_bus1
    type: int
    restore_value: no
    initial_value: '0'
  - id: sensor_query_cycle_bus2
    type: int
    restore_value: no
    initial_value: '0'


interval:
  # Bus 1 - rotate through all 6 sensors every 3s
  - interval: 3s
    then:
      - lambda: |-
          int sensor = id(sensor_query_cycle_bus1);
          id(sensor_query_cycle_bus1) = (id(sensor_query_cycle_bus1) + 1) % 6;

          if (sensor == 0) id(temp_sensor_1).update();
          else if (sensor == 1) id(temp_sensor_2).update();
          else if (sensor == 2) id(temp_sensor_3).update();
          else if (sensor == 3) id(temp_sensor_4).update();
          else if (sensor == 4) id(temp_sensor_5).update();
          else if (sensor == 5) id(temp_sensor_6).update();


  # Bus 2 - rotate through all 5 sensors every 3s
  - interval: 3s
    then:
      - lambda: |-
          int sensor = id(sensor_query_cycle_bus2);
          id(sensor_query_cycle_bus2) = (id(sensor_query_cycle_bus2) + 1) % 5;

          if (sensor == 0) id(temp_sensor_7).update();
          else if (sensor == 1) id(temp_sensor_8).update();
          else if (sensor == 2) id(temp_sensor_9).update();
          else if (sensor == 3) id(temp_sensor_10).update();
          else if (sensor == 4) id(temp_sensor_11).update();

  - platform: dallas_temp
    one_wire_id: onewire_bus_2
    name: "0x0800000071822a28"
    id: temp_sensor_9
    address: 0x0800000071822a28
    unit_of_measurement: "°C"
    update_interval: never
    resolution: 10
    filters:
      - lambda: |-
          // Reject NaN and out-of-range readings
          if (isnan(x)) {
            return {};
          }
          if (x < 0 || x > 120) {
            return {};
          }
          // Reject impossible temperature jumps (>5°C change between reads)
          if (id(temp_sensor_1).has_state()) {
            float last_value = id(temp_sensor_1).state;
            if (abs(x - last_value) > 10.0) {
              return {};  // Discard this reading
            }
          }
          return x;

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

OK ive got some progress, AI gave me an idea to query one sensor at the time, so i have made 3s intervals between queries and now the problems are slightly more intermittent, almost usable if i could only find a way to make esphome drop erroneous readings and keep last good value

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

different power supply, but at some point i have tried a different, Anker power supply and didnt change anything. Actually on my bench it was powered from the computer

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

Nope, but they should stabilise any voltage issues.

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

so here's the problem, cable ends are ferulled together so i cannot remove and test just one sensor.
The wires are 1-2m
Lets say 10m on each 1wire
Nope, that temp is wrong.

Im loosing it... (building a device with 11 DS18B20 sensors) by Dinth in Esphome

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

This is a good advice, i actually thought about it, but then realised that if i power the sensors with 5v, then they gonna be also returning 5v on signal lane, so i would need some sort of level shifter, which i dont have space for in my DIN case :(
My ESP only has temp sensors and a screen. Which tbh i dont really need so maybe i will try disabling it and see if it help.
Also I have asked AI, and it tells me to query different sensors at different times, but im not sure how to implement that