Hello,
I am trying to run the first part of the SensorWalkSkill on my HEXA as shown in tutorial, unfortunatly, nothing’s hapening, everything seems to work though :
This is the skill :
package examples
import (
“mind/core/framework/drivers/hexabody”
“mind/core/framework/skill”
)
func (d *SensorWalkSkill) Onstart() {
hexabody.Start()
hexabody.Stand()
}
func (d *SensorWalkSkill) OnClose() {
hexabody.Close()
}
func (d *SensorWalkSkill) OnConnect() {
hexabody.MoveHead(0, 0)
hexabody.WalkContinuously(0, 0.5)
}
func (d *SensorWalkSkill) OnDisconnect() {
hexabody.StopWalkingContinuously()
hexabody.Relax()
}
and this is what i got :
PS C:\Users\entinus\MINDSDK\SensorWalkSkill> mind build
PS C:\Users\entinus\MINDSDK\SensorWalkSkill> mind pack
PS C:\Users\entinus\MINDSDK\SensorWalkSkill> mind scan
192.168.1.139 HEXAGONE
PS C:\Users\entinus\MINDSDK\SensorWalkSkill> mind run
Installation started
Uploading 0%
Uploading 42%
Installing 80%
Installation successful !
Point your browser to: http://localhost:7597
Connecting
Connected !
Battery: 63.00% [Not charging]
Battery: 62.00% [Not charging]
I think that my programming knowledge don’t let me see the issue, could you help me to find out what’s going wrong ?
Thank you, and I apologize for my approximated English.