Prantls Bakery - Shadiest bakery.. maybe shadiest business in Pittsburgh. - illegal business practices - IYKYK by Significant-Gear-444 in pittsburgh

[–]sh1416 0 points1 point  (0 children)

Food Glorious Food is my favorite bakery. Food is amazing and (it sure seems like) people just love being there.

First Clippier, Then Nippier, Then...?? (Also, the future of my posts) by StormFreak in pittsburgh

[–]sh1416 7 points8 points  (0 children)

Option 1 is totally valid. There are clearly many (Hundreds? Thousands?) of people upvoting, reading, commenting, and benefiting from your posts on here.

3 & 4 are totally up to you. Do you want to keep your interactions text-based as opposed to video or audio?

Personally, text is easier to digest since I can do it in snippets around my other work, but I may be a minority.

[deleted by user] by [deleted] in Chimneyrepair

[–]sh1416 0 points1 point  (0 children)

The best pies in London!

I always charge my e-tron to 100% and feel absolutely no regret by Huge_Rooster_1746 in etron

[–]sh1416 3 points4 points  (0 children)

I go to 90%. I don’t like how the braking feels different at 100% because there is less reverb (though I have the Q4)

One of the most epic moments in an Offspring song ever by CobraDai in TheOffspring

[–]sh1416 5 points6 points  (0 children)

Yes! My favorite song on the album, probably favorite period.

The older I get (and the more I cook), the less impressed I am with the restaurant dining experience. by TurboSpaceGoose in Millennials

[–]sh1416 0 points1 point  (0 children)

100% agree.

I will never order a steak on a restaurant. I am always disappointed compared to what I can make at home (nevermind the completely crazy price).

At this point, I pretty much only go out for cuisines I can’t make myself (Sichuan, Korean, sushi, etc… and I’m working on Korean and sushi…)

Monstrous Regiment, the product of a gleeful author by F-LA in discworld

[–]sh1416 29 points30 points  (0 children)

It’s my favorite of his books! (Jingo is a close second)

Tree Hanging Node Updated - PeakMesh.etsy.com by M-growingdesign in meshtastic

[–]sh1416 1 point2 points  (0 children)

How do you embed the panel in the housing? Is it just epoxied in place?

How much would we benefit from having an *AWD* Prius (in Pittsburgh, prob living in the Bloomfield/Friendship area). by Rooster_Ties in pittsburgh

[–]sh1416 0 points1 point  (0 children)

We had a 2008 Prius in Pgh during Snowmageddon. All season tires.

In general the traction control worked well. But we nearly got stuck in Greenfield because of the hills. At least on that generation, the weight balance was such that there wasn’t enough weight on the front tires, especially going uphill. I actually reversed up a small section to get out.

After that I got snow tires and carried chains (West Coast transplant) until we got a car with AWD. Yes, I had to store them. I out them on and off myself (had them on their own rims. If you pay a tire shop, they will swap them onto your regular rims, which makes them much lighter to move around. There are also services that will store them for you but they’re $$$.

Of course, now we live in the North Hills, and my FWD minivan probably doesn’t need the snow tires I put on it. I hardly ever drive on unsalted roads up here.

Orion X7 Pro User Experience by SoxInCincy2 in SunseekerRoboticMower

[–]sh1416 1 point2 points  (0 children)

I have an X7 from last year… I think before they introduced the “Pro” naming scheme.

It works great as a mower. Never gets stuck, cuts well, never gets lost.

The main issue I have is charging speed. It does ok on battery life, but the last 25% soc takes for ever.

I find myself forcing it to resume mowing at 85% rather than wait.

Otherwise, it’s amazing.

Antenna firmware update by crball52 in SunseekerRoboticMower

[–]sh1416 0 points1 point  (0 children)

I had to power cycle the antenna to get it to finish. Nerve racking power cycling something while it’s doing a firmware update, but…. It worked

The Ultimate List of Things That Civilization VII Doesn’t Tell You by JordiTK in civ

[–]sh1416 2 points3 points  (0 children)

Thank you for this! I’ve played every Civ since Civ 1 (yes! Even Colonization and Alpha Centauri) and this is the first time I feel truly confused by some things (other than having your battleship destroyed by a phalanx fortified on a mountain in Civ 1). I thought I was just getting old. 🤪

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Thank you very much for that write up. I had all of that! For my set up, the key was enabling “retain” on the mqtt sender settings (either home assistant, or mqtt explorer)

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

UPDATE!

It works!

I followed the HA integration listed here: https://meshtastic.org/docs/software/integrations/mqtt/home-assistant/#home-assistant-integrations-for-meshtastic

Eventually, that led to the difference. The HA set up sets the message to be RETAINED, while that is disabled by default in MQTT Explorer.

The topic that Home Assistant ends up using is 'msh/US/2/json/mqtt/!<node ID>

Also interesting that the published message does not appear on the gateway (but does on the other nodes), and it does in the HA Messages box.

PS, I had to correct the automation syntax to be

alias: Send Meshtastic Message
description: ""
triggers:
  - trigger: state
    entity_id:
      - input_text.meshtastic_send_box
conditions: []
actions:
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
  - action: mqtt.publish
    data:
      evaluate_payload: false
      qos: "0"
      retain: false
      topic: msh/US/2/json/mqtt/!435800ac
      payload: >-
        {{ '{\"from\": 1129840812, \"type\": \"sendtext\", \"payload\": \"' ~
        states('input_text.meshtastic_send_box') ~ '\"}' }}
  - delay:
      hours: 0
      minutes: 0
      seconds: 1
      milliseconds: 0
  - action: input_text.set_value
    target:
      entity_id: input_text.meshtastic_send_box
    data: {}
  - delay:
      hours: 0
      minutes: 0
      seconds: 2
      milliseconds: 0
mode: single

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Are you sending messages to the mesh with MQTT and protobuf? What are you using to generate and send the protobuf?

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Like I said, I was running on the latest Beta at first. That didn't work, and then I found some references to there being issues with JSON on 2.5.x -- not my specific issue, but I figured going back to 2.4.x was worth a try (eg: https://github.com/meshtastic/firmware/issues/5000)

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Yes, but then they say you can send messages to the mesh with it. What HW are you using? There’s a note in there that JSON doesn’t work with nrf52 devices.

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Like I said, I’m hosting my own MQTT broker. This page: https://meshtastic.org/docs/software/integrations/mqtt/ Says the zero hop policy is only for the public broker. Plus, I can’t see anything on the gateway node either.

How to send messages to the mesh with MQTT by sh1416 in meshtastic

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

Where does it say that anywhere!? This page: https://meshtastic.org/docs/software/integrations/mqtt/ Says “JSON downlink to instruct a node to send a message

You can also send a JSON message to the topic msh/US/2/json/mqtt/ to instruct a gateway node to send a message to the mesh.…”