Iphone Sensor Stream Server icon Iphone Sensor Stream Server Receive iPhone Sensor Stream data in ARC, map accelerometer, gyro and compass to variables for EZ-Script control and visualization. Try it →

New Hand Progress, 3D Printing, Glyphs , Ultrasonic, Sharp IR Radar, Follow Autonomous, Wii, QR, Augmented Realty- EZB4, L298N And Other Things :-)

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

ARC Pro

Upgrade to ARC Pro

Harnessing the power of ARC Pro, your robot can be more than just a simple automated machine.

Author Avatar
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

Author Avatar
PRO
USA
#91  

I know, sad, :-(

We shall push on

EzAng

Author Avatar
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

Author Avatar
PRO
Belgium
Thingiverse
#93  

ezang

can you post yourre script ?

good work.;)

Author Avatar
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

Author Avatar
PRO
Belgium
Thingiverse
#95  

thank you ezang

have a go with it.

Author Avatar
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