Hey so i got all of the servos and stuff working with the new update (which is awesome btw good job on that)

but

the jaw/mouthcontrol or whatever is not working for me;

first off, the program is not sending any signal to the jaw servo, 

secondly, when i connect the jaw servo to another pin like the pinky pin and control it with the pinky servo gui, it works, but when i connect it to, say pin 7 where there is nothing, and try to control it with the jaw servo gui, it does not move

but the main thing i'm worried about is the code not sending signal to the jaw servo at all

i did like

mouth = inMoov.startMouth()
mouthControl = inMoov.startMouthControl(headPort)
 
^ is that right?

GroG

10 years ago

I think the default is pin 26 according to the hardware map here - http://myrobotlab.org/service/InMoov

have you tried pin 26?  - you could manually change it after starting the head

mouthControl.jaw.detach() # if its attached
mouthControl.jaw.setPin(7)
mouthControl.jar.attach() # re-attach

should be good

JCInMoov

10 years ago

Yeah i had to change the pin to pin 7 because i'm only using two unos instead of megas so i only have 19 usable out pins on each 

ill try those lines of code tomorrow and will let you know how it goes

i still dont know why it wouldnt try to send signal to the servo even when the program thought it was still attached to pin 26

JCInMoov

10 years ago

also, is there a way to change the voice to male?

just a little blip :)

move your audioFile directory to another location with all its cached female mp3 files

then run this line in your script somewhere after creating mouthControl

 

i01.head.mouthControl.mouth.setGoogleURI("http://tts-api.com/tts.mp3?q=")

I believe its male, but there is a limit on number of requests - then a timeout before you use it again...
after awhile though your male voice cache will build

 

JCInMoov

10 years ago

yeah i have no idea what i'm doing...

I made pin 12 open on the right arduino so i tried and setting the pin to that

is this right?

mouthControl = inMoov.startMouthControl("COM5")

mouthControl.startService()
mouthControl.jaw.detach()
mouthControl.jaw.setPin(12)
mouthControl.jaw.attach()
 
 

Try this...

i01 = Runtime.createAndStart("i01","InMoov")
mouthControl = i01.startMouthControl("COM5")
mouthControl.jaw.detach()
mouthControl.jaw.setPin(12)
mouthControl.jaw.attach()
 

JCInMoov

10 years ago

tried it, 

still not sending signal to the jaw servo for some reason.

is there a newer version that i should be using or something?

Bodo Facklam

9 years 10 months ago

I have the same problem. Everything is working fine, but pin 26 for using the jaw will give no signal. I use the latest version of the InMoov software and for the left side an arduino mega. I can not attach the servo. the servo works fine on evry other pin.

Has someone asolution?