New Hand progress, 3d printing, Glyphs , ultrasonic, sharp IR radar, follow Autonomous, Wii, QR, augmented realty- EZB4, L298N and other things :-)

EzAng

USA
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail
robot video thumbnail

I am using ARC software with 2 iotinys controller, 2 EzB4 controllers - 3 EZ-ROBOT 1300 lithium batteries for the four Ez 360 HDD servos for the two arms, two 996R servos for the grippers, 2 DFRobot rotation hex bases for head movement and body movements. with 2 EZ-robot servos HDD, 2 RGB for the eyes - EZ-Robot HDD servo and moving camera  - still need a mouth

from servo City: 4 gearboxes , channels, parts, extensions, Prowler Robot Kit (wheels, 4 motors, h-bridge pwm motor controller

User-inserted image

Video will be coming of all movements

Here is a sample video

EzAng

By — Last update
Jump to end

ARC Pro

Upgrade to ARC Pro

ARC Pro is your gateway to a community of like-minded robot enthusiasts and professionals, all united by a passion for advanced robot programming.

PRO
USA
#89  

the question mark just goes to a site with no info

I guess I will just test myself and figure it out,

Has anyone seem DJ lately?

thanks,

EzAng

PRO
USA
#91  

I know, sad, :-(

We shall push on

EzAng

PRO
USA
#92  

I got the sound servo working, with a LED, flashes in sync with the script I wrote.

Also I wrote a script for it just to blink

EzAng

PRO
Belgium
#93  

ezang

can you post yourre script ?

good work.;)

PRO
USA
#94   — Edited

Sure

first script:

You can say anything, I write in a script:

SayEZBWait("Good evening.") sleep(80) SayEZBWait("Almost time for dinner.") sleep(80) SayEZBWait("Are you hungry?") sleep(80) SayEZBWait("What are we having?.") sleep(80) SayEZBWait("some thing lite I hope.") sleep(80) SayEZBWait("I am still full from lunch.")

The blink:

ServoSpeed(d0, 2)

:loop

Set LED On

pwm(d0, 100)

wait some time for the pwm to do its ramping thing

sleep(1000)

#set LED Off pwm(d0, 0)

wait some time for the pwm to do its ramping thing

sleep(1000)

goto(loop)

I have opened the PWM,  sound servo(PC)and sound servo(EZB) controls.

here is my screen: ignore the scripts on the right

User-inserted image

On a Blink on and off

set the servo speed to 2

ServoSpeed(d0, 2)

:loop

Set LED On

pwm(d0, 100)

wait some time for the pwm to do its ramping thing

sleep(3000)

#set LED Off pwm(d0, 0)

wait some time for the pwm to do its ramping thing

sleep(3000)

goto(loop)

User-inserted image

EzAng

PRO
Belgium
#95  

thank you ezang

have a go with it.

PRO
USA
#96   — Edited

On the LED, or whatever you are using, attach one wire to the ground, one wire to the signal

I used two female to female wires I had to hook up the LED to my IoTiny

EzAng