Earlier quoted context omitted.
Our Subaru has a physical volume knob. Its position is only a "gentle suggestion" to the software to move volume up or down. At times, especially when starting the vehicle, there is major latency in the software processing the knob movement.. Also, if the knob is moved too fast, the sw gets the wrong reading. This results in volume being way too high for serveral seconds as well as many other frustrating, dangerous s…
I guess that's what we get when a rotary encoder is much much less expensive than a 4-6 gang potentiometer. And I also feel your pain with the car "booting up" phenomenon. I don't even have a particularly tech-heavy vehicle and upon starting the car the entire infotainment system feels like booting up a packard bell in 1996.
Automakers are starting to admit that drivers hate touchscreens
881–890 of 1001 posts
Re: Automakers are starting to admit that drivers hate touchscreens
#882Re: Automakers are starting to admit that drivers hate touchscreens
#883Earlier quoted context omitted.
> Tesla are unsafe death traps by design. This is completely untrue by third party metrics (both governmental and not).
They meet crash standards, yes. But the interior design of them encourages unsafe driving. Between putting almost everything inside a touch screen and pushing autopilot (which encourages drivers to pay attention less), they are creating more distractions from controlling their 2-ton metal boxes. Drivers are licensed operators of heavy machinery that travels at high speed. Let's not encourage systems that turn us into…
Re: Automakers are starting to admit that drivers hate touchscreens
#884Earlier quoted context omitted.
The fact that these cars pass safety certification, makes me question certifiers. It's illegal to look at your phone while driving, for good reason, but it's legal to fiddle with a damn computer screen, because it's part of the car. I predict it's a matter of time before we'll see a correlation between number of crashes, and cars with touchscreens.
The fact that my touch screen will often display a distracting message that reminds me that it's unsafe to take my eyes off the road while driving and require someone to touch the "ok" button to dismiss it is the epitome of dangerous stupidity...
The adaptive cruise is pretty good, it's been fooled once by two cars moving in front of me at the same time and it appears to have no understanding of cars with huge speed differences. (Bozos that enter the road at half the speed limit.) It also refuses to operate below 28 mph which I dislike because cruise control is good for using the engine to hold your speed down on hills--and there's a certain 25 mph mountain road I sometimes drive. Yeah, maybe the adaptive stuff can't work but at least give me basic control so I don't need to use my brakes!
Re: Automakers are starting to admit that drivers hate touchscreens
#885Earlier quoted context omitted.
> - the controls on my stove top How were these stove-top touch-buttons ever considered an upgrade to their predecessor? They always have no feedback, or that annoyingly high "beep" feedback. They are always slow to respond. They typically use only two or three buttons to control the actual temperature, forcing you to select location first, which is typically slow and terrible as well. Nobody in their right mind can…
I love my induction stove with touch buttons. Easiest stove I have ever had to clean. Just like wiping any other part of the bench.
The control knobs are extremely easy to clean: I just pull them off and throw them in the dishwasher.
The display is never clean. It has grease on it and I can't ever scrub it hard or use caustics for fear of damaging it.
Re: Automakers are starting to admit that drivers hate touchscreens
#886Earlier quoted context omitted.
> physical layout of buttons is usually stateless - press button thing turns on, press it again it turns off Not to be pedantic, but that is a state. But I get what you mean: the button has a fixed place. Know your car well enough and you won't even need to look there to turn the thing off or on.
> stateful UI OP means that the screen has different modes that you traverse between, the car is still stateful.
But gotcha, this depends on your definition of "stateful UI"
Re: Automakers are starting to admit that drivers hate touchscreens
#887Earlier quoted context omitted.
Shortening a delay timing has the same effect as turning the wiper on in some rain conditions.
I can't help but feel like we've made a mistake by concentrating so many of the people who design our standard software UX patterns in California. From Tesla designing car interfaces that don't understand how wipers need to work to Apple designing weather apps that don't clearly communicate wind chill to smartphones that require use of the touchscreen to answer a phone call rendering it impossible to answer while wea…
Re: Automakers are starting to admit that drivers hate touchscreens
#888Earlier quoted context omitted.
The judgement should have been against tesla, not the customer. Wipers are essential and should not require fiddling
Sounds like the driver was attempting to adjust non-critical features of wipers not turning them off and on We should be very careful not to include the kitchen sink in with "essential" items. Turning the wipers off and on, is critical, adjusting delay timings is not
Re: Automakers are starting to admit that drivers hate touchscreens
#889Earlier quoted context omitted.
Do auto insurance rates on touch screen cars show this to be the case? Cars with touch screens have been around long enough that they should have data, and consequently be charging more for insurance on those cars if they are is that is indeed the case.
Auto insurance models like many other insurance models are often not that smart. The insurance company will charge more of there is more claims payout, but they also want to attract certain client segments and compete with competitors. Also, claim rates have all kind of confounding factors. Maybe a car is safer but more prone to theft, or more dangerous but easier to repair, or has better controls but is driven by in…
Re: Automakers are starting to admit that drivers hate touchscreens
#890I wouldn't mind touchscreens as long as these imbecile developers would strictly limit UI response time to under 16ms. In no world where you're barrelling 3,000+ lbs of mass at tens of miles an hour should you be distracted by some moronic app or subsystem failing to respond in time because it was written by under-experienced software "engineers." Any software running as a part of a motor vehicle should be federally…
The logarithmic increase in set/insert times as your user base swells by orders of magnitude, for instance. This was all fine when we had 100 test users in our database. Response time is not so great with 100k. The first app I ever did performance tuning on essentially had time series data and (when I got there) quadratic search time with 2 criteria. Nobody before me had bothered putting a year's worth of data into the sample data, let alone 5. They also hadn't dreamed of 3 search criteria (surprise, cubic time!) Of course before me the app was too slow to care - literally could watch the UI paint it was so slow.
When you have two buttons on the interface everything is snappy. Each new button should reasonably expect logarithmic overhead, decent designs often add square root overhead (memory costs on real hardware are n^0.5), and bad designs add constant or quadratic overhead, and either nobody checks or is so focused on the deadline that they can't see the project burning down around them. Every day that click takes a few milliseconds longer.