When we retrieve logs, it does not affect or suspend any active work plans. Your task should continue running as expected. Let us know if you notice anything unusual!
Did you ever can an answer to your suspended without cause issue? This has happened to me two days in a row now. Mowing fine then for no reason I get a suspended message and the rover stops mowimg. GPS and HaLow are fine. I press resume and it immediately resumes the job.
@JNS - Ohhhhh how many times did I see that back in snowblower daysâŚNot so much with the mower, once or twice ever, but regularly at one particular spot with the snowblower. Go out and check, all is fine, click Resume, and off it goes. Re-map? Nope, didnât help. Wild.
No, not normal. I meant to click âRecordâ (near the bottom of the Diagnostics screen) and catch it for Support, but I ran out of snow. So if this is something you can reproduce, turn on Record and let it happen, get video if you can, note the date-time. If not, when it happens again, open a Support ticket and give them whatever information you can, including timestamps.
Also take a look at the Diagnostics when that happens. Maybe GPS burps or something else goes weird â I donât know.
The first reply was they saw a âsoftware restart commandâ. As in ârestart Yarbo systemâ from the menu.
I informed them that was how I ended the Suspend and that they should look for a suspend before that.
I had a second recurrence shown above in the screenshots. And have not heard anything since.
Suspended without cause happened again today at about 16:02.
Yarbo sat in that status for 10 minutes. Then the work plan was suspended. Coincidentally once the work plan suspended the Battery, HaLow and GPS all returned to normal.
Or maybe itâs the other way around. Once GPS recovered the work plan suspended.
either way⌠it suspended.
Took me 50 minutes to notice Yarbo was stuck. I AM REALLY SLACKING on my babysitting Yarbo.
Did you get a notification?
Maybe I am doing something wrong but the only notification I get on my phone is when a job is complete (I am fortunate, my jobs complete most of the time). But when there is an issue, I donât notice unless I open the app. No notification. Is that on purpose or an app bug? When there is an error or Yarbo stops, shouldnât we be seeing a notification?
Did you have your screen caps running when it bappened?
Youâre not doing anything wrong, thatâs the only notification I have every gotten. None of the others work - if theyâre intended to.
@Yarbo-Forum this is another bug in your app that can be fixed easily and could help your users troubleshoot the robot and get less irritated by losing mowing time⌠Super easy to fix. For ios in siwft:
import UserNotifications
func scheduleErrorNotification() {
// 1. Define the content of the alert
let content = UNMutableNotificationContent()
content.title = âIâm stuck!â
content.body = âYarbo is stuck! It needs your help!â
content.sound = UNNotificationSound.default
let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false)
let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger)
UNUserNotificationCenter.current().add(request) { error in
if let error = error {
print("Yarbo alert: \(error.localizedDescription)")
}
}
}
Then each time you generate an error in the app, you add:
do {
// Placeholder for however errors are triggered in your code
try performSomeRiskyOperation()
} catch {
// Add a catch
print(âYarbo error!â)
// Call your function to show the notification
scheduleErrorNotification()
}
I also opened a ticket regarding incorect charset encoding support. Can also be easily fixed at the client level.
No notification that I saw.
Affirmative ghost rider the hard drive is fullâŚ
Would be nice to do a pull request wouldnât it?
yes. They should push the code for their app on github. We could be a few working on fixing some quirksâŚ
Hopefully you have a ticket open on this issue
Ticket 99079. Been open for 28 days.
Iâm only guessing but I bet there is a large portion of code written in a language I donât understand.
And fresh out of school.
This is basic iOS stuff⌠swiftâŚ
Lots of stuff is frontend development only. I am not talking about vision or anything. Just basic iOS programmingâŚ
Computer vision is another beastâŚ
Thank you for taking the time to share your insights and suggestions. Iâve also reviewed your support ticket regarding bug with charset encoding recognition. Both of your feedback have been passed along to our product team for further evaluation. We truly appreciate your input!