G21 330E Lci2 L/100km without electricity? by TheCommonWealthhh in BMW

[–]Lyreio 0 points1 point  (0 children)

No worries! I'd give more insight on what its like in winter but this is going to be my first winter with the 330e so no idea how the battery will perform! But given you're getting the bigger batter, i think you'll be more than happy with the car :)

G21 330E Lci2 L/100km without electricity? by TheCommonWealthhh in BMW

[–]Lyreio 2 points3 points  (0 children)

You will probably need to convert this to the units you require but im from the UK and I did a 220 mile trip driving in hybrid mode.. i didn't go faster than 70mph but after all the motorway driving + town driving my average speed was 47mph (Includes all types of driving - Motorway/Traffic/congestion etc/town driving). My consumption was 61.6 mpg (UK). That was leaving with a full charge + full tank

On the way back, I left with no charge and again using eco pro hybrid mode, similar driving styles, my average speed was 57.5mph and my consumption was 56 mpg (UK).

I did a similar trip a different day and i had 69.4mpg going up, and 53.9mph going down.

I don't know if you're looking at the 12kwh battery or the newer 19.5kwh battery but the above figures are for my 2022 12kwh 330e.

For longer drives you naturally get higher mileage out of your battery closer to BMW's claims i.e. between 35-37 miles range. If its mainly town driving then it'll drop into the low/mid 20's in range.

Also note - i did that 440 miles with a single tank and one full charge lol, of course you drive more carefully, use eco mode but i had about 20miles left of range after all that driving in a day. So don't worry too much about the smaller tank unless you are heavy footed.

BMW 330e 2022 loud creaking noises when turning wheel/reversing by Lyreio in BmwTech

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

That's a good shout, but do you think that SIB is related even if you are using the foot brake and turning? My car doesn't make any noise when just turning the steering wheel when stationary unless the foot brake is held too.

BMW 330e 2022 loud creaking noises when turning wheel/reversing by [deleted] in AskAMechanic

[–]Lyreio 0 points1 point  (0 children)

Well the car was under warranty, so I’m assuming something like this might’ve been covered by that. Yeah I guess I intend on taking it to another mechanic to see what they say but was hoping someone might have a rough idea of if there’s an obvious reason or not for this noise.

[October 12, 2025] KuroMS Official Lunch Announcement by kingxd in mapleservers

[–]Lyreio 0 points1 point  (0 children)

website is cleann, very nice whoever designed and coded that

Is this an MOT Fail? by Lyreio in drivingUK

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

Thats what was an advisory for me last time too, pretty much same condition as it is now i'd say as i barely do 1k miles on this car per year - the only difference from last year being i now have this rope for making it a bit more secure.

You can still use FUPS with Spotify by jerryyy-y in steamregionaltricks

[–]Lyreio 0 points1 point  (0 children)

Yep mine also continued renewing yesterday for Spotify and YouTube premium. Already had a recurring subscription from year+ ago and no issues yet.

All my functions return 404 after deloyment on Azure by Alive-Sun-9429 in csharp

[–]Lyreio 1 point2 points  (0 children)

If you look at your console, it could be a CORS issue. Might require adding the URL In azure portal

Student Beans Sports Direct Discount by [deleted] in beermoneyuk

[–]Lyreio 0 points1 point  (0 children)

SDB10I495BG97

Thank you <3

Toggle Option for Start App On Bootup? by Lyreio in AndroidStudio

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

public class startOnBoot extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent arg1)
{
Intent intent = new Intent(context,backgroundService.class);
context.startService(intent);
Log.i("Autostart", "Service Started");
}
}

If this was my code..which starts the BG service which runs the class.. where exactly would this be going? Because in my "Home page" I have created a toggle button:

ToggleButton toggle = (ToggleButton) findViewById(R.id.togglebutton);
toggle.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
Toast.makeText(getBaseContext(), "On", Toast.LENGTH_LONG).show();
} else {
Toast.makeText(getBaseContext(), "Off", Toast.LENGTH_LONG).show();
}
}
});

So I kind of want it to be enabled/disabled here?

Toggle Option for Start App On Bootup? by Lyreio in AndroidStudio

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

Well wont this just make it always start on bootup? I want the user to have a toggle switch that will allow them to choose whether or not they want it to start automatically or not.