#automation

mlansbury@despora.de

Trump team wants to scrap car-crash reporting rule that Tesla opposes

The Trump transition team wants the incoming administration to drop a car-crash reporting requirement opposed by Elon #Musk’s #Tesla according to a document seen by Reuters, a move that could cripple the government’s ability to investigate and regulate the safety of vehicles with #automated-#driving systems.

Musk, the world's richest person, spent more than a quarter of a billion dollars helping #Trump get elected president in November. Removing the crash-disclosure provision would particularly benefit Tesla, which has reported most of the crashes – more than 1,500 – to federal safety regulators under the program.

https://www.reuters.com/business/autos-transportation/trump-transition-recommends-scrapping-car-crash-reporting-requirement-opposed-by-2024-12-13/

#bribes #corruption #dictator #authoritarian #cars #automation #safety #crashes

azurecerulean@diasp.org

Create #electronics the easy way | #LibrePCB

LibrePCB is a free, #cross-platform, #easy-to-use #electronic #design #automation suite to draw #schematics and design printed #circuit boards – for makers, students and professionals, from beginners to experts.

This software just lets you #develop electronics the right way.
No costs. No restrictions. No online account. No unnecessary complexity.

https://librepcb.org/

nowisthetime@pod.automat.click

https://youtube.com/watch?v=eVjFee7C_hk

#BostonDynamics has advanced its #Atlas #robot to perform fully #autonomous tasks in real factory environments, marking a major shift from previous pre-programmed demonstrations. In the latest video, Atlas navigates a car assembly line on its own, adjusting to changing parts and complex movements without human intervention. This breakthrough highlights Atlas’ cutting-edge sensor technology and adaptive abilities, setting a new standard for industrial robots capable of working independently in real-world settings.
Boston Dynamics’ Atlas Robot: Fully autonomous industrial tasks without human intervention
Atlas in real-world factory work, using vision, force, and proprioceptive sensors for adaptability
How Hyundai’s ownership and collaboration with Toyota impact Atlas’ role in automotive manufacturing
How Atlas’ new abilities in handling real assembly line tasks mark a major step forward
The significance of Atlas’ electric build, advanced actuators, and independence in factory settings
The impact of true autonomy on robotics, comparing Atlas to other industry robots like Tesla’s #Optimus

This video dives into the advancements of Boston Dynamics’ Atlas, highlighting the shift from robotic demos to autonomous #factory work. With Atlas paving the way in automotive production, this breakthrough underscores the evolving role of robots in labor and #automation.

danie10@squeet.me

Android Tasker routine to warn if home WiFi is not functioning correctly

Tasker app screen showing Task Edit at top with name WiFi Test. Below that are 4 numbered actions starting at 1 with an action called Variable Set with the variable name %HA_PING to 0. Then action 2 is called Ping and says Host 192.168.1.212 number 2 (for run two ping tests) and further says If %HOME equals 1. Action 3 is called Notify with a title Check WiFi if %HA_PING equals 0 and %HOME equals 1. Action 4 is called Say and has the text "Check Home WiFi" and only if the condition %HOME equals 1 and %HA_PING equals 0.
Been experiencing a bit of an issue the last month with everything seemingly on and connected, but my Chromecast device would not connect across Wi-Fi today, and sometimes my wife says her phone is not connecting, and I’d have to reboot the home router. So, I decided to write a small routine using the Tasker app to check every 10 mins whether my phone can ping the Home Assistant server over the home LAN. If so, all good, but if not pop up an alert. It only runs this while I’m actually home. If I happen to be at home, but using mobile data, then it will still give an error as the mobile data won’t reach the internal IP address.

I’m using the Auto Location 3rd party app for Tasker, which provides more reliable geofencing status, but one could also use the standard Tasker location Profile. Basically, either of these will set a variable called %HOME to 1 if I’m at home, or to 0 if I’m away from home. Below is the Profile that triggers this: If at home it runs task Set Is Home, and if not at home (Exit action) it will run Set Not Home.

Screenshot 20240427 161417 Tasker

The actions are just simple ones that set a variable called %HOME and set it to 1 or 0.

Screenshot 20240427 161511 TaskerThis action sets a variable called %HOME = 1
Screenshot 20240427 161544 TaskerThis action sets a variable %HOME = 0 and also just says audibly I have left home.

The other rigger under Profiles is a time one which just runs the WiFi Test task every 10 minutes.

Screenshot 20240427 161452 TaskerProfile to run a task called WiFi Test every 10 mins

The Wifi Test task that runs every 10 minutes does the following:
* Creates and sets a variable called %HA_PING = 0. You can call it anything as maybe you want to ping the home router instead. We set this to 0 to check if the ping test then changes it, and to ensure it does not contain some non-zero value from a previous ping action.
* The Ping action is added and I set it to the internal IP address of my Home Assistant server. I said it can try 2 pings, and I also set a condition for IF %HOME = 1. In other words, only run this action if at home. If I did not add the condition, it would run when I’m away, and then give the ping error. One of Ping action’s fields is for Average Result Variable, and in there I just put %HA_PING. In other words, if there is an average ping result obtained, then set the variable %HA_PING to that variable (it will no longer be a 0).
* I added a Notify action but set two conditions to check before notifying: I must be at home, and the %HA_PING must equal 0. If the ping was successful, it sets %HA_PING to whatever the average result was. If it was not successful, the original %HA_PING is still 0.
* I just added an audible alert too, also based on same conditions that I must be home and the ping test did not set %HA_PING to above 0.

Screenshot 20240427 161601 TaskerThe WiFi Test task

To see what it is does under various scenarios, you can view the variable values in the Tasker app in the VARS tab, as shown below. Below we can see both variables after a run, and they show I am at home, and the last average ping response was 29.773ms.

Screenshot 20240427 161631 Tasker

The Tasker app is extremely powerful and fun to use and you can automate so many things with it.
#Blog, #android, #automation, #tasker, #technology