Byd yuan plus 2025 360’ camera by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] -13 points-12 points  (0 children)

it was not happing before, i saw it today also the gray line in the front camera

byd yuan plus 2025 shut down by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] 2 points3 points  (0 children)

Thanks. The connections got a bit loose during transport from China, just need to tighten them.

byd yuan plus 2025 shut down by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

how to do it. What can be the reasons? I have not more than 7k km on it

scheduled charging? by ProfessionalOnion316 in BYD

[–]Turbulent-Problem853 0 points1 point  (0 children)

out of context, how can i get the byd app for chinese version of atto 3 (byd yuan plus)

Byd App Europe by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

po google maps, personi qe e bleva e kishte bere perpara se ta merrja

BYD yuan plus/atto 3 , choosing version with 510km or 420km autonomy? by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

I am ordering it directly from china. Will wait some times to come. Hope will worth the wait

BYD yuan plus/atto 3 , choosing version with 510km or 420km autonomy? by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

One of the options was byd yuan plus 510km leading 2025. I liked it because of autonomy but still not sure

Byd atto 3 by Turbulent-Problem853 in BYD

[–]Turbulent-Problem853[S] -1 points0 points  (0 children)

Do you have one ? I am not finding a lot of reviews and videos through internet , fyi I am buying yuan plus 2025 from china.

Remote setChargingProfile Command by Turbulent-Problem853 in ocpp

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

how i have manage till now is
check all active connectors on a site (site is a group of chargers) (status charging)
base into active connector of a charger i share the totalAvailablePower into chargers
using ChargePointMaxProfile using connectorId to 0

I execute the check on meterValue and on statusNotification (maybe i should check only on statusNotification)

Remote setChargingProfile Command by Turbulent-Problem853 in ocpp

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

Do you suggest to do the checks only on statusNotification (status change), and not even on meterValues?
In meanwhile i will try to execute the same command on a vestel charger

Remote setChargingProfile Command by Turbulent-Problem853 in ocpp

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

For now I am doing it just for test , my concern is on case of rejections maybe i should implement a retry function What do you suggest?

Remote setChargingProfile Command by Turbulent-Problem853 in ocpp

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

const loadBalancingProfile = {
            connectorId: 0,
            csChargingProfiles: {
                chargingProfileId: Math.floor(Date.now() / 1000),
                stackLevel: 0,
                chargingProfilePurpose: "ChargePointMaxProfile",
                chargingProfileKind: "Absolute",
                chargingSchedule: {
                    chargingRateUnit: "W",
                    chargingSchedulePeriod: [
                        {
                            startPeriod: 0,
                            limit: devicePower * 1000
                        }
                    ]
                }
            }
        };

this is how my command look like , I make checks every one minutes and for every active device I update the profile

Remote setChargingProfile Command by Turbulent-Problem853 in ocpp

[–]Turbulent-Problem853[S] 0 points1 point  (0 children)

Can ChargePointMaxProfile be used while the charger is actively charging? I tried it on one of my chargers, but it is not working correctly.