You are on page 1of 51

9/26/2016

HOME

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

ROBOTS

ELECTRONICS

EMBEDDED

PROPELLER(ROTATING)LEDDISPLAY
PostedbyVAMSIDANDAat22:06|265comments

PROJECTS

WORKSHOPS

Search...

Translate
DIYBluetoothPOVLED
display

buynowonebay

Google+Followers

Therewasanerrorinthisgadget

TotalPageviews
VAMSIDANDA

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

1/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

FollowbyEmail
Emailaddress...

Submit

PopularPosts
PROPELLER(ROTATING)
LEDDISPLAY
PeopleoftenuseARDUINOplatformsandothermicrocontrollers(pic,avr)formakingapropellerleddisplay.If
youarefromaruralarealikemeitwillbealittledifficulttohavesuchgoodhardware.Iamtryingtomakeone
usingAT89S52microcontroller(whichisverycheep).

HCSR04ultrasonicsensor
interfacingwith8051
microcontroller

ATmega8basedline
followerrobot

ROBOZONE
Electronicshobbyistsenjoyplayingwiththe
projects.somepeoplestartagarageathome.For
i'musinga11.0592MHzcrystalanda7805forpowersupplyledsareconnectedtothePORT0oftheMCU.8

makinganynewinventionyoudon'tneedanybig

LED'sareusedfordisplayingletters.Iused7redand1blueledtomakeitlookgood.youcanconnectLEDsto

laboratory.youcanmakeyourhomeaLAB.to

themicrocontrollerintwoways

workyoujustneeda"multimeter".Ihavebeen

1.ACTIVEHIGH(logic'1'onMCUpinwillmaketheLEDglow)

workingonsomeprojects.Atthebeginningstagei

2.ACTIVELOW(logic'0'onMCUpinwillmaketheLEDglow)

madesomanydisastersinmyroom.Iblastedso
manycomponents(onedayiburntmybed).what

It is better to connect the leds in active low configuration(cathode to MCU pin and anode to Vcc through

everwedoweenjoythat.Soijustwantedtoshare

220ohmresisterforcurrentlimiting.

someofmyworkwithyou.

Thewholearrangementisplacedinawheelusingfoamplastersotheitsticksonbothsides
thewheelisattachedto6mmshaftand1000RPMmetalgaremotor.

PreviousPosts
2016(1)
2015(2)
2014(5)
2013(6)
2012(16)
Sep(1)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

2/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Aug(1)
Jul(3)
Jun(1)
May(1)
Mar(9)
RESISTORcolorcoding
HEAVYDUTYROBOTRACER
WITHWIRELESSCONTROL
STEPPERMOTORbasic
PCBdesigningwithEAGLE
howtoworkwithkeil
HOWTOCONVERTDCMOTOR
INTOSERVOMOTOR
simpleLINEFOLLOWER

Keepthearrangementasstrongaspossible.Sothatitwon'tfalloutofthehighspeedrotatingplatform.Tryto
makeitstabletosuppressthevibrationsathighspeed. I attached the 9V battery using a tape to the circuit

PROPELLER(ROTATING)LED
DISPLAY

boardofMCU.ItmeansIamusing"ONBOARD"powersupply.
I arranged the LEDs on a separate PCB and connected them to the pinheads and an eight pin female

soccerplayingrobot

connectorisusedtoconnectthe8LEDstoconnecttoPORT0ofAT89S52.
IusedtheKIELsoftwaretoprogramthemicrocontroller.iprefertoworkwithCratherthanassembly.Iamusing
aUSBbasedprogrammertoburntheAT89S52MCU.
trytomakeyourcodeflexiblesothatyoucaneasilymodifytodisplayanyword
atfirsteverythingwasabitmessy
watchthevideo

PlaceOrder
Name

Email*

Message*

Send

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

3/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

looksniceisisn'tit.
I'm trying to make a single stand still display. calculation of proper delay is very important in making this
project.becausespeedofanytwomotorsisnotequal.calculatedelayasperyourmotor.motorspeedshould
notbelessthan1000.
fordisplayingeachlettermakeastandardnotation.I'mfollowing5*7notation

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

4/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

5/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

ifyourmotorisrotatinginclockwisedirectionthenthecorrespondingcodewillbeasfollows.
ledsareconnectedtoPORT0ofAT89S52sothelogicwillbe
P0=0x81delay()//definethisfunctionasperyourmotor
P0=0x6fdelay()
P0=0x6fdelay()
P0=0x6fdelay()
P0=0x81delay()
P0=0xffdelay()//tomakeonecolumngapbetweenletters
ifitisanticlockwisethen
samecodeinthereverseorder
inthisexampleimusingtheletter"A"whichissymetrical
forotherlettersyouneedtofollowfromdowntotopofthecodealgorithmdiscussedabove
P0=0xffdelay()//tomakeonecolumngapbetweenletters
P0=0x81delay()
P0=0x6fdelay()
P0=0x6fdelay()
P0=0x6fdelay()
P0=0x81delay()
similarlyforactivehighthefollowingnotationmustbefollowed

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

6/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

sothecodewillbe:
led=0x7edelay()
led=0x90delay()
led=0x90delay()
led=0x90delay()
led=0x7edelay()
led=0x00delay()columngapbetwwn2letters
sothatyoucandisplayanywordonyourmovingdisplay

butthequestionishowmuchdelayweneedtouseaftereachandeverycolum
followthesescalculations..
DELAYCALCULATIONS
motorspeed===1000RPM
timeforonerotation===60milliseconds
radious=30cm
peremeter=2*3.414*30=204.84~205
widthofledcolumn=0.5cm(thisindicatedthedurationofledglowintermsoflengthofdisplay)
totalnumofcolumns(leds)=205/0.5=410
410leds=60milliseconds
oneled(column)time=146microseconds//
columnsforeachletter=6
timeforaletter=6*146=876microseconds
lengthforletter=6*0.5=3
totalleters=205/3=68
THECALCULATIONSVARIESACCORDINGTOTHEGLOWTIMEOFLEDANDRADIUSOFTHEROTATING
ARM
motorspeed===1000RPM
timeforonerotation===60milliseconds
radius=30cm
peremeter=2*3.414*30=204.84~205
widthofledcolumn=1cm(thisindicatedthedurationofledglowintermsoflengthofdisplay)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

7/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

totalnumofcolumns(leds)=205
205leds=60milliseconds
oneled(column)time=292microseconds
columnsforeachletter=6
timeforaletter=6*292=1752microseconds
lengthforletter=6
totalleters=205/6=34
THESEAREROUGHCALCULATIONSBECAUSETHEMOTORSPEEDISNOTALWAYSCONSTANT
BUTTHEYHELPINAPROXIMATINGTHEDELAY

ifyouareabitgoodatit
TRYWITH"RGB"LEDS
ALLTHEBEST
EXAMPLEPROGRAM

circuitdiagramusing8051

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

8/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

//THISPROGRAMISFOR8051
//inthiscodeididnotusedlookuptablesforreducingthecomplexity
//ijustgavecodelogicforoneletter'A'andspace''

#include<reg51.h>

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

9/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

#defineledP0//port0willbeconnectedtoleds

unsignedintdel=50//variabletocontroldelay

voiddelay(void)
{
unsignedinti,j
for(i=0i<deli++)
for(j=0j<1275j++)

}
voiddisplay(unsignedcharcar)//declarationofafunction

voidmain()
{
while(1)
{
display('A')//thisdisplaysacontiniousrotating"AAAA"
display('')
//trytochangethedelvalueasperyourmotoruntilyougetaperfect
//displayonceyougotitthenwriteyourcodeforremainingletters
//onceyoudidthisitwillbeveryeasyyoucandoyourownfonts
//like"smily","heart"etc
//butthemainlogicistoachieveperfect"delay".onceifyourefertothe
//delaycalculationsyouwillgetit
//directionofrotationisalsooneimportantthing(clockwiseoranticlock)
//this"A"issimetricalsoworksonbothdirections.
}

voiddisplay(car)
{

switch(car)

case'A'://letterA

{
led=0x81delay()

led=0x6fdelay()

led=0x6fdelay()

led=0x6fdelay()

led=0x81delay()

led=0xffdelay()//tomakeonecolumngapbetweenletters
}
break

case''://space

{
led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

10/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

led=0xffdelay()

led=0xffdelay()//tomakeonecolumngapbetweenletters

}break
default:
led=0xfe
}
//ENDofprogram

=======================================================================================

//THISPROGRAMISFORAVR

//inthiscodeididnotusedlookuptablesforreducingthecomplexity
//ijustgavecodelogicforoneletter'A'andsapace''

#include<avr/io.h>
#defineF_CPU8000000//crystalfrequencyusedinthecircuitthishelpsincalibrationofdelayasperyourfrequency
#include<util/delay.h>headerfileforgeneratingdelayfor

DDRD=0xff//declaringportDasoutput
#defineledPORTD//theword"led"willbereplacedbyPORTDatcompiletime
unsignedintdel=50//variabletocontroldelay

//thedelayfunctionistherasdefaultinutilpackageofwinavrsouse:_delay_us()
voiddelay(void)
{
_delay_us(del)
_delay_us(del)
_delay_us(del)
_delay_us(del)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

11/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

}
//remaininglogicwillbesameforallmicrocontrollerunits

voiddisplay(unsignedcharcar)

voidmain()
{
while(1)
{
display('A')//thisdisplaysacontiniousrotating"AAAA"
display('')
//trytochangethedelvalueasperyourmotoruntilyougetaperfect
//displayonceyougotitthenwriteyourcodeforremainingletters
//onceyoudidthisitwillbeveryeasyyoucandoyourownfonts
//like"smily","heart"etc
//butthemainlogicistoachieveperfect"delay".onceifyourefertothe
//delaycalculationsyouwillgetit
//directionofrotationisalsooneimportantthing(clockwiseoranticlock)
//this"A"issimetricalsoworksonbothdirections.
}

voiddisplay(car)
{

switch(car)

case'A'://letterA

{
led=0x81delay()

led=0x6fdelay()

led=0x6fdelay()

led=0x6fdelay()

led=0x81delay()

led=0xffdelay()//tomakeonecolumngapbetweenletters
}
break

case''://space

{
led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()

led=0xffdelay()//tomakeonecolumngapbetweenletters

}break

default:
led=0xfe

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

12/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

//givesanunderlinewhennolettertodisplaybluelineinthecode
}
//ENDofprogram

=======================================================================================

imgivingtheexampleforunderstandingthelogicofthisproject.youcanextendthecodebyaddingnumberof
"switchcases"imadeitforactivelowlogicmeanslogiczeroindicatesledglowingandoneindicatesoff.
withthistechniqueyoucanmakeyourowncustomdesignslike"heart""smile"
bychangingthe"del"variablevalueyoucanchangethewidthofaletter.becausenotwomotorsarealike.
ipreferyoutogofor1000RPMmotorfromvegarobokits.Whichwillbearound145Rs

ThispropellerLEDdisplaycanbemadestableusinganinterruptsource.AnIRsensorcanbeusedtomakeit
stable.BettertouseaIRslotsensorasshowninthepictureitwillbeafastercomparedtoanLM358based
sensor.ifyourmotorisfasterthan1500rpmthenthissensoristhebest.

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

13/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

observethisvideocarefully....youwillfindasmallyellowpaperonthe
basegroundwhichcomesinbetweentheslotsensorpinsandtriggersthe
display.Soyourdisplayalwaysstartsfromaparticularpoint

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

14/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

propellerLEDdisplayonsealingfan

intheabovepicthefanisshakingduetoweightimbalance.

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

15/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

thisisduetoimproperdelaybetweentheletters.

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

16/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

17/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

thevideo:

BluetoothcontrolledrotatingPOVLEDdisplay

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

18/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

ALLTHEBEST

+++++++++++++++++++++++++++++++++++++++++++++
=============================================
NOTE:
DON'TJUSTASKFORTHEENTIRECODE.
TRYTO
DEVELOPITFORYOURSELF
GOTHROUGHTHEARTICLEONCEAGAIN
YOU
WILLFINDEVERYTHING
+++++++++++++++++++++++++++++++++++++++++++++
=============================================

=========================================================================

=========================================================================

USBPROGRAMMABLEPOVDISPLYKIT

FORTHOSEWHOWANTTOBUYTHEKIT:
http://www.ebay.in/itm/USBprogrammableRotating

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

19/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

http://www.ebay.in/itm/USBprogrammableRotating
LEDdisplay/291120480230?
FREESHIPPINGALLOVERINDIA
MAILUSAT
vaabrobotics@gmail.com

265comments:
mosesjohnsonsaid...

1200of265NewerNewest

inspirableone
30March2012at02:11

durgaprasadsaid...
hai.itssuper.plzwilluprovidecircuitdiagramandprogram
8April2012at09:05

VAMSIDANDAsaid...
thanksforvisitingtheblog
idevelopedthecodeforAT89S51andatmega16
whichcodedoyouneed
butsooniwilluploadthecircuit(ineedtomakeitineagle)
8April2012at21:17

Sonusaid...
nicework,btwhtsudihavetoforinsertingaanalogclock...???
nhowtocalculateaproperdelay,ifmymmotorisof150rpm??

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

20/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
8May2012at12:38

Sonusaid...
pleasereplayonmyemailissonuverma.ece@gmail.com
8May2012at12:40

VAMSIDANDAsaid...
accordingtopersistanceofvisionthenakedeyecanonlysenceacontiniouspictureillusionifit
isfasterthan1/16ofasecond.tocreatetheillusiononemustusemotornotlessthan1000RPM
whilecalculatingthedelayyouneedtoconsidertheradiousofrotatingarm,speedof
motor,widthoflettertobedisplayed
9May2012at07:14

HardikThankisaid...
GoodWork,IambachelorinMechatronicsEnng.,Ineedafavorfromyourside.Iamworkingon
aprojectonSpeedcontrolofACmotorby8051Microcontroller,inwhichmotorstarts,theni
requiredtoreducethespeedofmotorafter10sec.anditwouldstoparound14sec.
9May2012at15:57

Sebisaid...
verygoodjob.canyouprovidethecircuitdiagramandtheprogramforatmega16?
12May2012at09:11

Tinkuharshasaid...
helo,amworkingwiththesameproject.so,ineeedsourcecodeforATMEGA16micro
controller...ineedthisurjent.so,plzhelpmeassoonaspossiblemy
Emailidbharshasai@gmail.com
14June2012at10:18

ShahSharadsaid...
heycanuplzsendmethecodeforatmega16.......
shahsharad32@yahoo.in
18June2012at08:58

ManiSankarsaid...
heycanusndthecodeofbothmicrocontrollers...........
ifsoplzsendtokukunurumanisankar@gmail.com
21June2012at03:16

ErvinBayogsaid...
hellosir..canyousendtomyemailwhatarethematerialsneededforthisproject.ASAPplss..
avengemig@gmail.comThankyousir
3July2012at18:27

VAMSIDANDAsaid...
thematerialissimple
LEDs,resistors
amotorfasterthan1000RPM

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

21/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
anymicrocontrollerofyouchoiceandrequiredcomponentslikecrystal,pcb,icbases,capacitors.
onboardpowersupply
andsomemechanicalpartstomaketheastablerotation
7July2012at08:26

cybogcybogsaid...
hellosiriwanttoconnectIRsensorforautomaticinterruptsoidonthavtosetdelayandsowhtr
themodificationusuggest.
14July2012at11:12

VAMSIDANDAsaid...
ifyouareusing8051youcanconnectittoINT0orINT1pins
andenablethecorrespondingenablebits
writethedisplayininterruptserviceroutine
ifyouuseATmega16orATmega8astheCPUisveryfasteryoucanjustuse"if"statement.
if(PIN==value)
{displaycode
}
else
{
makesomeotherfunction
}
15July2012at02:14

ErvinBayogsaid...
whatcrystalareyousayingsir?isitoptionaloritsrequiredforthisproject?
17July2012at19:53

ErvinBayogsaid...
anotheronesir..whatkindofpcbisyourusing??imnotfamiliarofpcb..
17July2012at19:59

ErvinBayogsaid...
sir?canyousendtomethecircuitdiagramandatutorialhowyouassembleit..ineedsome
clarificationofthe"onboardpowersupply"..Inedditasap..ihopeyoucanhelpmehere
17July2012at21:08

VAMSIDANDAsaid...
youneedtouse12Mhzcrystalfor8051itisamust
incaseofatmega16youcanuseinternal8Mhzorexternal16Mhz
getanybasiccircuitofanymicrocontrollerofyourwishandconnect8LEDstoanyportandas
pertheportmakesomemodificationsinthecode
firststudythebasicconceptsofanymicrocontrollerndproceed
17July2012at22:57

VAMSIDANDAsaid...
onboardpowersupplymeansweusedcbattery.
wecannotuseadoptersfrompowersockets.
iuseda9vbatteryand7805voltageregulator
toprovide5vsupplytomicrocontroller

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

22/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
iamusingordinaryuniversalPCBof2*3size
checkthefiguresinthearticle
arrangeLEDsonasmallseparatePCB
17July2012at23:05

aalavandhaannsaid...
Guyspleaserespecttheauthor.Icouldseemanyofyouaskingcertainredundantthingswhen
hehaswrittenitclearlywhatisthemostnecessaryorthecrux.Sopleasesticktoasking
clarificationsonthingsthathavenotbeencovered.
Vamsi,Ireallyfeelhonoredtohaveseenyourblog.Reallyagreatarticle.Youmademefeelthe
complexrocketsciencetobeamereabuttercuttingwithyourcode.ThanksalotVamsi.
ButIneedaclarification.Whatdothesehexaintegersmean?
0x6f
0x81
Aretheyonlytheonoffstatesordotheypointtotheportnumber.ConsiderIamusingthe
ATmega16.
Regards,
AshokSrinivasan
25July2012at13:31

VAMSIDANDAsaid...
youareright
theyarejustonoffstatesofLEDs
refertotheexampleletter"A"
inthebeginningidefinedportP0of8051MCUas"led"
becauseifyouwanttochangetheportitwillbeessay
forATmega16youcandefineanyportasyourwish
forexamplePORTB
#definePORTBled
#defineDDRBout
out=0xff//makingallpinsoutput
led=0x81writingledon/offsequencetoPORTB
26July2012at08:50

aalavandhaannsaid...
Vamsi,
Iagainwanttoclarifysomething.Supposeyouaresettingthevalueanyofthepinsofa
port(A,B,CorD)tobeusedforcharacterprintingthenfortheCharacter'A'themappingis(for
your7x5(rowsxcol))shouldhavebeen
column10x7E
delay_column()
column20x90
delay_column()
column30x90
delay_column()
column40x90
delay_column()
column20x7E
delay_column()
(theaboveisasimplepseudocodeandnottheactualonesopleasedonotmindit)
Don'tyouthinkasperyourcharactermappingofA?

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

23/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Regards,
AshokSrinivasan.
27July2012at09:39

cybogcybogsaid...
helosirthxforpreviousrplyimadehardwareforprojectsuccessfullyniwritecodealsoiam
using1000RPMmotorbutmywordarestretchingcanutellmehowmuchdelayshouldiuseto
achieveoutputlykurs.
28July2012at09:17

marriaahmadzadahsaid...
canupleaseemailmethecodeandthecircuitdiagrampleaseireallywanttomakdethiscool
project..

luman_united@yahoo.com
29July2012at01:59

VAMSIDANDAsaid...
pleaserefertothearticlethereyoucanfindthedelaycalculationsfor1000RPMmotor
butatrealtimethespeedofmotormaynotbeconstantsofirstmaketheworkingmodeland
calculatedelaysasperyourmodelbutthelogicforcalculatingdelaywillbethesame
31July2012at22:42

VAMSIDANDAsaid...
iuploadedtheexamplecodeyouhavetomakeyourowncodeaspertheLEDarrangement
mycodemaynotworkonyourhardware
31July2012at22:43

hardikamangukiasaid...
siruhvexplainedeverythingverynicely...btimconfusedhowtoattachmotorwithpcb...imeans
itmustrotate..sohowtodothat???ndnextthingiscnuplzmailmethecicuitdiagramon
hardikamangukia@gmail.com...itsmycurrentsemesterprojecttomakepropellerclock...cnugv
mesomeignitionforccodingforatmega16tomakethispropellorclock???sirplzplzplzhelp
mendrplysoonasihvtosubmitthecircuitdiagramon9thAugust,2012..iwudbeverygrateful
touforurhelp...
7August2012at00:59

VAMSIDANDAsaid...
thecircuitissimilartoa"lightchaserproject"publishedon"ElectronicsForYou"magazine.
butthemainlogicistotoarrangethemonarotatingshaft
ifpossibleyoucanalsoarrangethecircuitona"TABLEFAN"wing
butmakesurethatthefanisrotatingatsomelowspeedlevelstep.
orelsejustwatchthesideviewpictureoftheprojectinthearticle
irecommendyoutogothroughthearticleagainforthelogicandcode
7August2012at01:19

hambaNYAsaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

24/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
wow..agreatproject.now,i'mworkingwiththisproject.canyousendmetheschematicand
designforbothatmega16andAT89S51.
thisismyemailzero_shin@yahoo.com.

Cheers
7August2012at19:41

VAMSIDANDAsaid...
pleasedon'taskforthecircuitjustlikethat
everythingwasgiveninthearticle
pleasegothroughitfirstandthenaskaboutyourdoubt
inthebeginningitook2monthstounderstandthisconcept
afterreferringthedatasheetsofalldevisesitbecamechild'splay
forbeginnersiprefertogetbasicknowledgeofanyonemicrocontroller(8051orAVR)
thenyouwilleasilyunderstandeverythingwritteninthisarticle
ALLTHEBEST
22August2012at06:24

SdMsaid...
heycouldumailmethecktdiaofit.itsreallyinterestingtomakeoneofthese.mailmeat
suryadevmahto@gmail.comthanks:)
27August2012at18:32

sagarpatelsaid...
plztellmethemonthinwhichmagazine(electronicsforu)haspublishedaboutlightchaser
project...soicanread....thanks
2September2012at07:27

sagarpatelsaid...
ilikeyourproject...andiwanttomakemyfinalyearprojectonpropellerleddisplayusing
ATMEGA16.plztellmethemonthinwhichmagazine(electronicsforu)haspublishedabout
lightchaserproject...soicanread....thanks
ucancontactmeviasmilesagar2005@yahoo.co.in
2September2012at07:29

VAMSIDANDAsaid...
lightchaserisnothingbutan8LEDarrayconnectedtoanyportofanymicrocontroller.theLEDs
areconnectedinactivelowmode.sooniwilluploadthecircuityouwillgetanidea
3September2012at02:26

sathyapriyasaid...
hiamdoingthisproject..howpowersupplyisgivenformotor,microcontroller?...andwhere
interuptisplacedforirsensor
11September2012at07:22

VAMSIDANDAsaid...
youcanuse12V500mADCadopterforpoweringthemotor
fortheMCUusea9vbatterywith7805regulator
ifyouwanttouseinterruptusingIRsensorconnectittoINT0/INT1pinsandwritethedisplay
functionininterruptserviceroutine.

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

25/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
11September2012at13:26

VAMSIDANDAsaid...
activelow
ledon===0
ledoff===1
11September2012at13:37

sathyapriyasaid...
canyoplssendmethepcbdesignforthisproject
12September2012at07:40

sathyapriyasaid...
howtocalculatespeedofthemotor
12September2012at07:52

VAMSIDANDAsaid...
forthiskindofprojectsbettermakeyourowncircuitonauniversalPCB
12September2012at08:49

VAMSIDANDAsaid...
speedofthemotorwillbegiveninit'sdatasheet
12September2012at08:51

poojadhadsesaid...
hello..ineedthecodeforatmega16foranalogpropellerclockiamthinkingtotaketheoutputof
RTCfortheclockvalues..replyhowcanidodis.?
19September2012at23:06

sathyapriyasaid...
caniusecpufanformotor
plsreplysoon
10October2012at07:00

VAMSIDANDAsaid...
yesyoucan
buttheproblemisthefanmayrotateat2000rpmormore
cannotprovideenoughtorque
10October2012at09:28

nirmitpatelsaid...
Hii..Iammakingthesamething.withP89V51and1000RpmmotorofVegaroboticsasu
suggested.pleasecanyouprovidemethecodingfordisplaying'ckpe'?Ineeditreallyurgent.If
youcanpleaseemailmeatnirmit09@gmail.com
10October2012at13:46

nirmitpatelsaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

26/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Ihavealreadyimplementedthecircuit.Ijustneedthecodes.please.
10October2012at13:48

VAABRoboticssaid...
theoverallalgorithmforwritingthecodeismadeaccordingtomycircuitandandLED
arrangementontherotatingarm.
sotakealookattheexampleletter'A'andmyarrangementandtrytodevelopyourowncodefor
it
itwillbeverysimple
checkthefollowing
=>logicofled(activehighorlow)
=>armlengthandmotorspeed
=>positionofled(MSBLSB)
13October2012at11:35

nirmitpatelsaid...
Thankyou..IanalyzedyourcodeandDevelopedmyowncodeaccordingtotheneed.Atfirst
thedelaywasn'tproper,sotookawhiletofigureoutexactdelay.Finally,Icompleteditandmy
Professorsarehappyforit.Thanksonceagain.
14October2012at11:45

VAMSIDANDAsaid...
imveryhappytoherethat
keepondoooooing
14October2012at12:17

ShubhamSrivastavasaid...
theprogramthatuhavedisplayedaboveisshowingsyntaxerror.....plzhelp...
17October2012at08:42

VAMSIDANDAsaid...
yes
iknowthatitwillshowerrors
becauseitisnotareadytouseprogram
itwillgiveyouthebasicideatomakeyourownprogram
igaveitfor8051andATmega16(AVR)microcontrollers.
whichisyours?
whatcompileryouareusing?
beforegoingtothecodeisuggestyoutogothroughthearticleonce.............
ALLTHEBEST
21October2012at03:42

ankitkaramchandanisaid...
Plssendmethecircuitdiagrampls
3November2012at12:59

YassarKhansaid...
canyouprovidethecodeforpropellerclockusing8051
12November2012at10:34

VAMSIDANDAsaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

27/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
gothroughthearticleonceagain
youwillbeabletofindanswerstoallofyourquestions
17November2012at01:05

kshitijsonisaid...
SirIamthestudentofECEng.fromGujarat.Itsreallynicework....iwassearchingthistypeof
worksince2monthsbuttodayifindyourblog.........andihopeitwillveryhelpfultome...Thanku
sirforthecodeandcircuitdiagram,,Myquestionis"IsthesimpleDCmotorfromoldtap
recorderscanbeused??Replymesoon....iwanttoworkonthisproject......
22November2012at22:08

VAMSIDANDAsaid...
yesitwillworkbuttheproblemliesinitisitisnoteasytomountthecircuitonit
ifyoucanmanagethemechanicalpartofit
thenitwillbeperfect
23November2012at00:14

kshitijsonisaid...
oksirthankuverymuchforyourreply...canuexactlytellmethatwhichmotoryouhadused??
sothatibuyitfromtheshopasutellmeitsname,,,andinyourexampleprograminkeilifound
someerrors..canuresolveit???
Thanku
23November2012at06:10

VAMSIDANDAsaid...
iused1000RPMmetalgearedDCmotorwith6mmshaft
thisisavailableonvegarobokitsyoucangetitfromanyhobbyshop
24November2012at20:25

kshitijsonisaid...
OKsirthanks........oneanotherquestion...pleasecheckaprogrammeonceigotanerror.....andi
mnotabletoresolveit........canudothis???
24November2012at21:04

kshitijsonisaid...
Siriamfindingthisprojectsince3months......onyourblogifoundit.........ihadstartedworkfor
thisprojectfromoneweek....butiamgettingfailureandfailure......ihadmadehardwareand
softwareasusuggestbutifoundonlyfailure...canuhelp?
25November2012at12:46

Bharatsonisaid...
ihadmadeprogramforsixlettersbutoutputisonlyfor4letters...iwanttowriteBharatbut
"Bhar"isdisplaying.........whtstheproblmoftht?
26November2012at22:14

Vaabbotssaid...
themotorspeedwillbetheproblem
youhavetoidentifyproper"Delay"fordisplayingyourletteraccordingtoyourmotor

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

28/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
30November2012at04:03

Vaabbotssaid...
youneedtocalculatethemaximumnumberoflettersyourarrangementcandisplay.inwhich
thelengthoftherotatingarmwilldecidethis
justgothroughthecalculations
30November2012at04:06

Bharatsonisaid...
oksir...........onemorequestion?thelengthoftherotatingarmshouldbelongorshort???for
displayingmoreletters???
30November2012at05:58

usmankhansaid...
canyouplzprovidekeilmicrovisioncode?
andthelogicforclock.
1December2012at02:12

VAMSIDANDAsaid...
morethelengthmoretheletters
2December2012at20:05

Bharatsonisaid...
myShaftisaround5or6C.m..........Itissufficient???
2December2012at23:06

usmankhansaid...
plssndittomeifugotit..:)
usman_islamian12@yahoo.com
3December2012at01:22

VAMSIDANDAsaid...
6cm
sothecircleperimeterwillbe2*pi*r=13.6cm
ifeachletteris2.5cmtotalletterswillbe5
radius=lengthbetweencenterledtorotatingcenter
3December2012at05:09

Bharatsonisaid...
Oh.mygod....youaremindblowingsir.........headsofftou......Thanxforreplies..andur
guidance......iexactlymeasureradius=7c.m..andforthatihadputdelayasbelow..
voiddelay()
{
for(i=0i<=10i++)
for(j=0j<=50j++)
}
andthiswilldisplayingonly4andahalfletters..
3December2012at06:09

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

29/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
VAMSIDANDAsaid...
thedelayfunctionwilldecidethewidthoftheletter
asnotwomotorsaresimilaripreferyoutocalculateyourowndelay
oryoucandoonething
connectapottoADCandADCtomicrocontrollerfor8bityouwillget0to255valueuseitfor
thedelay.don'tforgettokeepthisfunctionoutsidethewhile()function.
theifyouwanttochangethedelaypresstheresetandchangethepot
3December2012at06:41

kshitijsonisaid...
oksir..........sorrysirbutican'tunderstandaboutusay."pot"umeantosayamotor?ihaveto
connectmotortoADCandADCto8051right?andthisarrangementonthepropellershaft??
3December2012at07:31

Bharatsonisaid...
oksiriunderstand...POTmeansPotentiometreright??
andsircanujustcheckorexaminemyvideo?ihadmadepropellerdisplayanduploadon
youtube.......canujustcheckthatvideoforsuggestionandimprovementifuhavetime??
please?
3December2012at11:19

VAMSIDANDAsaid...
nexttimedontforgettopostthelink
3December2012at12:09

VAMSIDANDAsaid...
niceworkbuddy
trytoincreasethelengthofrotatingarm
iprefertostartwithAVRmicrocontrollers
becauseyoucandomorewiththem
tryforATmega8LmicrocontrollerlesssizewithonchipADCchannels
3December2012at12:41

Bharatsonisaid...
http://www.youtube.com/watch?v=BLVOzSRRL2k
thisisthelinksir..
3December2012at21:12

VAMSIDANDAsaid...
yaa
isearcheditinyoutubeandsawit
good
trywithavr
3December2012at22:43

Bharatsonisaid...
Thanxforurblog,urguidanceandurpositiverepliessir.........
3December2012at23:19

Bharatsonisaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

30/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
CanIhaveyourmailIDsirforcommunicateadequately........??
5December2012at03:53

Bharatsonisaid...
Ihadtriedtheshaftradiustobeincreasedbutididn'tgetmorelettersonly4lettersare
displaying...........with25c.mlentgh
6December2012at04:18

VAMSIDANDAsaid...
justchangethedelay...
soletterwidthchanges
6December2012at07:35

Bharatsonisaid...
SirWhattheValueOfDELAYukeptinurprogram??Whereuwrote("VAMSIECE")
6December2012at09:28

Bharatsonisaid...
sirthisismyProgramformat.......pleasetakealook......Isthereanymistakeinprogram??
becauseonly3lettersaredisplaying...
#include

#defineledP0
voiddelay(void)
{
unsignedinti,j
for(i=0i<17i++)
for(j=0j<50j++)
}

voidmain()
{
{
led=0x00delay()
led=0x6edelay()
led=0xffdelay()
led=0x7edelay()
led=0x6edelay()
led=0x66delay()
led=0x91delay()
led=0xf7delay()
led=0x7fdelay()

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

31/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
led=0xdddelay()
led=0xefdelay()
led=0xf3delay()
led=0xffdelay()
led=0x66delay()
led=0x91delay()
led=0xf7delay()
led=0x7fdelay()
delay()
delay()

}
}

7December2012at03:58

VAMSIDANDAsaid...
firstthing:bettertoputcommentsinyourcode
second:bettertouseafunctiontodisplayaletter
iusedafunctiondisplay('A')todisplayletter
ifyoudevelopyourcodeforsuchfunction
finallydon'tforgettoputcommentsnexttime
7December2012at04:16

Bharatsonisaid...
WhattheValueOfDELAYukeptinurprogram??Whereuwrote("VAMSIECE")
7December2012at04:33

VAMSIDANDAsaid...
thereisnoproperstandardvaluefordelay
weneedtousearandomdelayonyourmotorandcorrectitliketrailanderrormethod
7December2012at04:45

Bharatsonisaid...
Thisisthecompleteprogramasusaysir
#include

#defineledP0

voiddelay(void)
{
unsignedinti,j
for(i=0i<17i++)//Variabletocontrol
for(j=0j<50j++)
}

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

32/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
voiddisplay(unsignedcharcar)
voidmain()
{
while(1)
{
display('B')//displayB
display('H')//displayH
display('A')//displayA
display('R')//displayR
display('A')//displayA
display('T')//displayT
}
}
voiddisplay(unsignedcharcar)
{
{
switch(car)
{
case'B'://letterB

led=0x80delay()
led=0xB6delay()
led=0xB6delay()
led=0xB6delay()
led=0xc9delay()
led=0xffdelay()//tomakeonecolumngapbetweenletters
break
case'H'://displayH

led=0x80delay()
led=0xf7delay()
led=0xf7delay()
led=0xf7delay()
led=0x80delay()
led=0xffdelay()
led=0xffdelay()//tomakeonecolumngapbetweenletters
case'A'://letterA

led=0x81delay()
led=0x6fdelay()
led=0x6fdelay()
led=0x6fdelay()
led=0x81delay()

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

33/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
led=0xffdelay()//tomakeonecolumngapbetweenletters
break
case'R'://letterR

led=0x80delay()
led=0xf6delay()
led=0xf6delay()
led=0xeadelay()
led=0x9cdelay()
led=0xffdelay()//tomakeonecolumngapbetweenletters
break

case'T'://letterT

led=0xfedelay()
led=0xfedelay()
led=0x80delay()
led=0xfedelay()
led=0xfedelay()
led=0xffdelay()//tomakeonecolumngapbetweenletters
break
}
}
}
7December2012at06:37

VAMSIDANDAsaid...
perrrrrfecctoooo
youalmostmadeit
justtrydiffidentdelayvalues
orelseuseADCandconnectapottoitandmanuallyadjustthedelayvalue
iusedalmost37cmofshaft
nowiamplanningtodisplaylettersonsealingfan
onceimadeitiwilluploadit
imgoingtouseATmega8microcontroller

7December2012at08:31

Bharatsonisaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

34/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Wowjustgreatsir..........Allthebestforit................sir

7December2012at08:46

VAMSIDANDAsaid...
tillnowimadeitforclockwiserotation
butthesealingfanrotatesinanticlockwise
ineedtoreversetheletterformat
lotofwork..............................

8December2012at02:55

Bharatsonisaid...
okkkkkkkkkksir...whenucompleteitmustputitsvideo...andifuwantanysmallhelpimready
todoit...cozimveryinterestedinthisstuff..thnkusir..
8December2012at09:55

Bharatsonisaid...
haduusedpullupresistorsforPORT0??
10December2012at23:47

radhikadesaisaid...
ihadmadeanditoutputswell...buthowtostabilizethedisplay..........itismovingcontinuously..
plzrpl
12December2012at08:54

VAMSIDANDAsaid...
ifyouwanttouseitofinputyoumustusepullups
butforoutputnoneedofpullup
13December2012at01:34

VAMSIDANDAsaid...
ifyouaregoodatmicrocontrollers
useinterruptconcept
connectanIRsensortoINT0of8051andwritethedisplaycodeinsidetheISR(interruptservice
routine)
itwillbelikeifyouinterruptthesensorthenthedisplaystarts...
trythis......sothatyoucanshiftthedisplaymanually
13December2012at01:40

radhikadesaisaid...
ok...forirsensorcaniuseTSOPoranythingelse???
14December2012at01:40

GirishKumarsaid...
hello..ineedthecodefor8051foranalogpropellerclockiamthinkingtotaketheoutputofRTC
fortheclockvalues..replyhowcanidodis.?
15December2012at23:13

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

35/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
kshitijsonisaid...
yesssssssssihadmadethedisplay100%stableusingIRsensoranditworks.....
19December2012at22:30

VAMSIDANDAsaid...
congrats.....canyouuploaditonyoutube
sothatwecanseeit..
don'tforgettosharethelink...
22December2012at00:22

kshitijsonisaid...
Thiscommenthasbeenremovedbytheauthor.
22December2012at21:33

usmankhansaid...
bro!douhavecodeofdigitalclock?ifyesthenplz..:)usman_islamian12@yahoo.com
24December2012at05:48

YogeshDalavisaid...
hisirineedtheccodeforitwithinterruptINT0.
30December2012at23:19

kshitijsonisaid...
mustrefferthisvideolink.....animationthroughpropellerdisplayusinginterrupt.......thnxforur
helpsir.......
http://www.youtube.com/watch?v=B8e5p1X8Cik
2January2013at03:41

YogeshDalavisaid...
kshitij..howtoshiftdisplayleftorright..ihaveseenyourvideoitsamezing..thanks
8January2013at22:37

kshitijsonisaid...
forshiftingdisplayfirstlyuhavemusttostabilizedthedisplay....forthatpurposeinterruptis
use...andbyprovidethenumberofspacesinaspecificmannerucanshiftthedisplay
9January2013at03:10

himanshisaid...
propellerclockwasgreatandiwanttomakeitcanupleasesendmailmeitscircuitanditscode
foratmega16
andtellmeisitnecessarytoconnectmotorwithatmega
10January2013at20:46

himanshisaid...
sircanuplzsendmeitscircuitandanddatmega8oratmega16programingandalotelmeisit
nessarytoconnectmotortocontrolleroritsonlytorotateit
10January2013at20:50

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

36/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY

sagarpatelsaid...
Hi..Iamdoingthisprojectasmyfinalyearengineeringproject..IuseATMEGA16..plesesendme
programforATMEGA16atsmilesagar2005@yahoo.co.in
27January2013at06:55

VAMSIDANDAsaid...

TRYTOMAKETHECODINGONYOUROWN
27January2013at07:30

PatilKunalVsaid...
HelloVamsi....Ihadalittledoubt.....
WhatistheworkingoftheIRSensor...??Andwhichonehaveyouused...??
Ithoughtthatthereshouldbeanopaqueobjectbetweenthe2slotsofthesensor...butthereis
nosuchthinginthepictureabovewhichshowstheattachmentofthesensortothepcb.....
VeryConfused...!!
Hopeyouwouldhelp..!!
Thanks...!!!
2February2013at01:52

Vaabbotssaid...
takealookatthevideo
youwillunderstand......
itisaIRslotsensor(interruptionsensor)
2February2013at03:02

RamSanjaysaid...
hellosirr...plzsendmetheschematicforatmega16atramsanjay83@gmail.com...
3February2013at04:14

PatilKunalVsaid...
HelloVamsi...
Iwasthinkingofadifferentapplicationbasedpropellerdisplay....
whatifwegiveainputbymeansofakeypad...liketheuserissupposedtoentereitherofthe
buttonsofthekeypadandthenwegetadisplayaccordingtothat...eachnumberhavingafixed
displayassociatedwithit...??
gotanyideas..?
hopeforthebest..!!replysoon...
Thanks...!!!
5February2013at22:42

VAMSIDANDAsaid...
thiscanbedone
youneedtostorethedataatruntimeandthatshoulddisplayevenafterthepowerloss.
youneedtouseanEEPROM...
8051isnothavinganyEEPROM
butAVRmicrocontrollershaveonchipEEPROM
6February2013at18:13

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

37/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
PatilKunalVsaid...
Iamnotgetting...Canyoupleaseelaborate...??
Iwanttodoitin8051...
Iamconfused....Iamthinkingofaconceptinwhichwhenwepressanybuttonofthekeypad
thenwegetdifferentdisplaysonthepropelleraccordingly...
Plshelp...
Thanks...!!!
7February2013at05:44

PraveenKulaharisaid...
hellosir.....
iwantcircuitcomponentsdescriptionsheetofpropellerled...
sendmeassoonaspossible...
emailid:apjak920543@gmail.com
thanks..
10February2013at20:29

JubyJacobsaid...
hisir,couldyoutellmehowaboutthewiringofthepowersupply?Imeanisn'tthereachanceof
thewiringhavingalosecontactandcominginthewayofthemotionofthedisplay?Itwould
alsobeniceifyouprovidetheapplicationsineverydaylifeforsuchdisplays?thankyou.
11February2013at11:01

VAMSIDANDAsaid...
1)howabouta9Vhighwattbatteryanda7805regulator....
2)imagineyouraidingabicycleorbike..
withyourname
onthewheel......?
11February2013at11:54

ashishkumarsaid...
hellosir.....
iwantcircuitcomponentsdescriptionsheetofpropellerleda...
sendmeassoonaspossible...
emailid:akaclark21@gmail.com
thanks..
14February2013at06:25

pratikbhagatsaid...
Ineedmoreinfoonstabilizingthedisplay.withyourbloghelpihadmadethedisplaybutcant
stabilizeit.Whatwillbethecalculationsifiuseoptointerrupterswitch?.Shoulditaketakeofthe
delayallthetimebycalculatingrpmofmotor.
15February2013at06:59

pratikbhagatsaid...
Ihavealsomailedtomr.kshitjmoni.DearFriendpleaseelaborateyourworkonstabilizingthe
displayitwillhelpusalot.Iamworkingwithpicmicrocontrollers.
15February2013at07:01

pratikbhagatsaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

38/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
AlsoVamsisiriwanttoknowwhatmotoryouhaveusedandwherecanonefindit.Alsocan
oneuseacexhaustfanmotorordcmotorisbest
15February2013at07:03

VAMSIDANDAsaid...
youcanusethemotorinyourPC
alsocalled"DCcoolingFAN"
anditwillrotateinanticlockwisedirection
anditsgoodtoherethatyouworkedalotonthisproject......
yousaidthatyourusingPICcontroller...
youcanconnectthesensortoanyexternalinterruptpin(don'tforgettocheckforactivehighor
activelowvaluefromthesenor)
makeyouISRfunctioninsuchawaythatitcontainyourdisplayroutine...
don'tdirectlygototheautodelaycalculationsusingtimers.iwillconfuseyou.
firststabilizethedisplaywithanyrandomdelay.onceyougotthestabledisplaythenadjustthe
delayvaluemanuallyintheprogram.
ALLTHEBEST
15February2013at22:42

darpanpudasainisaid...
pleaserespondasap.Iparticipatedinaexpotobeheldat17feb.Iwrotesomanycodesforpov
andusingthedefaultdelayfunction_delay_ms()madethehexfilelargerthan16kb.soIcan
displayamaxof3lettersorsizeofhexbecomesunprogrammableinatmega16.plzsuggest
sth.havebeentrying2fixitbutwithnosuccess.
thanks.
16February2013at06:08

VAMSIDANDAsaid...
what.....
sizeisincreasing....foronly3letters
ifyourdisplayislargeenough
youcandisplaylike100lettersevenwithanATmega8mcu
ineedtocheckyourcode
mailmeatvaabrobotics@gmail.com
16February2013at21:04

kshitijsonisaid...
PratikBhagat,ihadseenyourmailandreplyedujustcheckit......AndVamsisirisabsolutely
right...........bytheguidanceofhimihadachivethesuccessinthisstuff.........so.....
16February2013at21:06

SayedAtayisaid...
HelloVAMSI,iwanttobuildthispropellerclockusingAT89S51,ifyoucouldemailmethecode
ats.atayi379@gmail.com.Manythanks.
27February2013at09:12

Dhevsaid...
HelloVamsiSir,Iamtryingtotodothespinningdisplayproject.ImfacingprobleminPlacement
ofbatteriesonpcb.ifidosothepcbisbecomingheavyandwobblingwhilerotating.AlsoifI
useIRledphotodiodepairforexternalinterrupt,itsnotbeingsensedbycontrollerathighrpm(I

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

39/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
amusing1000rpmmotor).WhichtypeofsensorImustusesir?andwhichtypeofbatteryshalli
usetopowerupcontroller?
1March2013at07:43

VAMSIDANDAsaid...
tellmeonethingfirst...
whattypeofarrangementyoumadetorotatethedisplay....
1March2013at22:34

PatilKunalVsaid...
HelloVamsi....
Whattypeofslipringhaveyouusedfortheprojectforthepowersupply....???
Thankyou..!!
3March2013at09:21

FriendsHardwaresolutionssaid...
canupleasetellmehowtouseinterruptmodule.......thankyou
10March2013at12:40

PrafullSonawanesaid...
sir,imbuiltapropellercircuit,butihaveprobleminprogrambasicallyindelaycalculationcan
anybodyhelpmetocalculationofperfectdelayorthatconcept
10March2013at23:51

RajarshiRoysaid...
VamsiSir,I'mhavingaprobleminfindingthemotorwiththeprecisespecifications(rpm,torque)
fromthelocalKolkatamarket.Iamtryingtousea1000rpmmotor.CanyousuggestmewhereI
canorderforthesemotors?WhatkindofmotordiduuseforyourPropellerLEDdisplayproject
andfromwheredidubuyit?
13March2013at13:21

Jayasaid...
hellosir,
sirineedtoknowhowyouuseinterrupt,andwhatyouuseforinterruptandalsointerruptcode.
pleasehelpmeihavetosubmitmyprojectat20
andalsosendmemoredetailandcircuitdiagramonmyemail:itsme.creative@gmail.com
thankyousomuch
17March2013at02:12

Jayasaid...
Pleasereplyme....soon
18March2013at11:18

VAMSIDANDAsaid...
interruptconceptdiffersfromcontrollertocontroller.sowhichcontrolleryouareusing
8051oravr.

18March2013at20:44

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

40/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Jayasaid...
4051
19March2013at08:28

Jayasaid...
sirplzsendmecodewithinterrupt....for89c4051
20March2013at11:24

togissaid...
canuplssndmethecodeforkeilcusinginterruptforat89c51....(fordisplayinganyword)
mailidt.togis@gmail.com
15April2013at11:36

ToinkOuchsaid...
Thiscommenthasbeenremovedbytheauthor.
20April2013at09:33

ToinkOuchsaid...
siritispossibleificonnectittogsmtechnologythenthereceivedmessagewillbethedisplay??
iplantouse15led's.
thankyousir..
mail:lat.melvin@rocketmail.cm
20April2013at09:34

gsrattansaid...
vamsisir,iamworkingonpropellerleddisplay
andisuccessfullydisplaythelatterbutitsstillunstable,ireadwholearticleofyou.youasked
forslotsensortouseforstablethedisplay.canyoupleasehelpmethathowtoconnecttheslot
sensortotheinterruptpinofthe8051.
pleasehelpmebyshowingthecircuitdiagramofslotsensorinterfacingwith8051...
25April2013at00:55

KeshavRajsaid...
sir
plsendfulldetailaboutthispropellerdisplaytothisemailidkeshavraj916@gmail.com
25April2013at01:58

anirudhreddysaid...
whereisrpmrelatedcalculationinthetheoryicantfinditplzzhelp
1May2013at12:46

anirudhreddysaid...
ifrpmis1000thentimefor1rotationmustbe3.6msisn'tit???
1May2013at12:51

mirrorsaid...

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

41/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
Sir,
Pleasesendcompletedetailswithcodeaboutpropellerdisplayonharshal.chadha@gmail.com
7May2013at06:24

GAREDDYsaid...
haivamsidanda,
udoneagreatjob,
keepitup.
3June2013at02:50

ashishtyagisaid...
ihavemademanyprojectsonatmega16...andtodayifoundyourproject...sirpleasecanusend
methecodingsfordisprojectonatmega16
17June2013at03:50

saurabhsaid...
@VAMSIDANDAyoushouldputtheimageofo/poftheprogramuhavegivenforexample..
asiunderstandtherewillbealetterAfirstthenonecolumngapthen5columngapthenagain
letterA..amiright??
Iwanttomakethisprojectbutishouldunderstandthelogicfirst..
2July2013at22:38

luckyrajasaid...
guys,ihavebeenworkingonpropellerclockusingatmega16buticantdisplaythetimeplease
checkmycode

#include
#include
unsignedcharmessage[8]={'1','2',':','0','0',':','0','0'}
unsignedchardata[55]={
0x83,0x7D,0x7D,0x7D,0x83,//0
0xFF,0xBD,0x01,0xFD,0xFF,//1
0xBD,0x79,0x75,0x6D,0x9D,//2
0x7B,0x7D,0x5D,0x3D,0x73,//3
0xE7,0xD7,0xB7,0x01,0xF7,//4
0x1B,0x5D,0x5D,0x5D,0x63,//5
0xC3,0xAD,0x6D,0x6D,0xF3,//6
0x7F,0x71,0x6F,0x5F,0x3F,//7
0x93,0x6D,0x6D,0x6D,0x93,//8
0x9F,0x6D,0x6D,0x6B,0x87,//9
0xFF,0x93,0x93,0xFF,0xFF//:
}
voidincmin()
voidinchour()
voidincsec()
voiddisplay()
voidinit()
unsignedintdo_adc()
voiddisplay()
{
inti,j
_delay_ms(100)
for(i=0i<8i++)
{
for(j=0j<5j++)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

42/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
{
PORTA=data[message[i]*5+j]
_delay_us(95)
}
}
}
//**********************************************************
voidinchour()
{
if((message[0]==1)&(message[1]==2))
{
message[0]=0message[1]=1
}
elseif((message[0]==0)&(message[1]==9))
{
message[0]=1message[1]=0
}
else
message[1]++
}
//******************************************************
voidincmin()
{
if((message[3]==5)&(message[4]==9))
{
message[3]=0message[4]=0inchour()
}
elseif((message[3]!=5)&(message[4]==9))
{
message[3]++message[4]=0
}
else
message[4]++
}
//******************************************************
voidincsec()
{
if((message[6]==5)&(message[7]==9))
{
message[6]=0message[7]=0incmin()
}
elseif((message[6]!=5)&(message[7]==9))
{
message[6]++message[7]=0
}
else
message[7]++
}
//******************************************************
voidinit()
{
ADMUX=(1<<REFS0)
ADCSRA=(1<<ADEN)|(1<<ADPS2)|(1<<ADPS1)|(1<<ADPS0)
}
//*****************************************************
unsignedintdo_adc()
{
ADCSRA|=(1<<ADSC)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

43/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
while(ADCSRA&(1<<ADSC))
returnADC
}
//*****************************************************

voidmain()
{
//PortA
DDRA=0xff
PORTA=0xff
unsignedintadc_value
init()
while(1)
{
adc_value=do_adc()
incsec()
display()
}

}
pleasehelpme..rplyassoonaspossible
4July2013at01:11

AdityaShroffsaid...
hellosirineedthewholecircuitandprogramtodisplayADITYA.
pleasedohelpmeout
19July2013at09:51

MohammedAlisaid...
Sir,ididn'tgetabtthatinterruptnIRsensorswhytheyrusednhowtheyarearranged.hown
whenwillbetheinterruptroutinewillbestart...plzexplain..
30July2013at04:23

VAMSIDANDAsaid...
tostabilizethedisplay
itmeansthedisplaystartsfromonepositiononly
30July2013at07:54

DavidMathewsaid...
sir,
tostarttheproject,doineedanymoreitemsotherthanthebelowmentionedones???
1000rpmdc/acmotor
8leds
atmega16
dottedcircuitboard
whatmustbetherangeofthecrystalossilator??
howmanyledsdoineedifiammakingaclock?
whatistheuseofanIRsensorinyourcircuit.

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

44/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
31July2013at03:17

JERO13said...
ThescopeoftheprojectistodesignadisplaysystemusingLEDswhichrotateonamotor.The
circuitismountedonDCmotor.LED'Sareusedtodisplayclockanddate.PICF84Aisusedto
controlandtransmitthesignalandutilizingtheAssemblylanguage.
ThegoalofourprojectsistodesignaprototypeofanenlargedversionofthePropellerLED
displayfordisplayingmessage.Afterstudyingvarioustechniqueslikematrixleds,rolling
displays,etc.whicharealsotechniquesofdisplayingmessageatthecost,thereforewechoose
propellerleddisplay,anemergingtechnologyappliedfordisplayingmessage.Thedisplay
consistsof7LEDsonlyinaverticalrow.Bymovingthemfastenoughbackandforthovereach
other,messagecanbedisplayedwhichappearstobegeneratedbya7*nmatrixofLEDsand
notasinglecolumnofLEDs,wherenistheno.ofcolumnsofthedisplaymatrix.TheLEDswill
rotateonamotor
The9VDCissuppliedtoMotorControllerCircuit.MotorControllercircuitiscontrollingtheDC
motorspeedandthespeedisadjustable.Inordertorotatethecircuit,DCmotorisused.PIC
microcontrollerpurposedistoexecutetheprogramandtransmitthesignaltoLED.Asoutput,a
lineofLEDisusedtotransmitthedesiredsignal.Inordertodisplaytheimages,
pleasehelpmeonthisineedtheschematicsforthepcbandhowishouldgoaboutpoweringit
upASAP.
hozala@gmail.com
6August2013at02:59

ramsaisaid...
hi..siritiaaniceproject......butididnotunderstandonethingismotorwiresconnected
internallyincircuitorurgivinganyexternalplugtoit.........ifugiveninternallypleasemention
fromwheretowhereuconnectedsirandpleasesendmecodeforAT89S52HEREMYEMAIL
SIR
mahi.raju.487@gmail.com
anduhavewrittentheprogramaboveforletterA.iunderstoodbutwhyuhavewritten2ndcase
program
10August2013at04:09

ramsaisaid...
hiihaveadoubt.thatistheaboveshown'A'table1STCOLOUMNIS0*81i.eallredcolour
markedare0sandremainingwhitecolouredare1thatit.........pleaseclearitwhybecausefor
letterB,C,D...etcgotsomevaluestheyarenotmatchingwithanothercodesingoogle......
10August2013at08:04

HarshalMore.said...
vamsisiridontunderstandwherethecodestartandwherethecodeendinyourarticlesocanu
tellmeplzthisprojectiwanttopresentincompitionplzrplymesoon....plzreplyonmyemailid
harshal.inventor123@gmail.complz.....
17August2013at02:59

VenkatKrishnareddysaid...
canupleasegivemefuturescopeandconclusionofthisgoodproject
3September2013at07:47

ShivtejYadavsaid...
Hisir,
niceprojectitis!!IbuiltitbutIhaveproblemaboutcoding.whilecompilinginkeilu4,compiler
showerrorforfollowinglines
voiddelay(void)

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

45/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
{
unsignedinti,j
for(i=0i<deli++)
for(j=0j<1275j++)
}
soImnotgettinghexfile..plzguideme,thankyou.
5September2013at03:53

VAMSIDANDAsaid...
youaresayingitagoodproject...........
futurescope:writeaboutwhereyouwanttousethis
conclusion:writeabouttheplusandminuspointsoftheprojects
6September2013at06:15

VAMSIDANDAsaid...
helloshivjit
wheneveryoucompileacodeandgotanerror
readthaterrorfirst
ifyoureadtheerrorthenyoucanfinditforyourself
onecannotidentifytheerrorfromjustapartofthecode

6September2013at06:18

goswamisaid...
hellosir..pleaseprovidemeitscircuitdiagramandfulldetailonmyemailid,,,
kapilgiri.ec2010@vitsgzb.com
iwanatomakethisprojectitssonice
7September2013at02:07

vivekvaidsaid...
sirhowtocalculatedelayparametersinmicrosecondscanugivebriefdetail
23September2013at17:33

DavidMathewsaid...
inyouratmgea8circuitcouldutellmewhat'sthevalueofcapacitorused.alsoclduprovidemw
withthecircuitdiagramforatmega8
5October2013at05:59

DavidMathewsaid...
isthecircuitarrangementorbothatmega8n8051?
5October2013at06:02

SanchitGuptasaid...
SircanyouexplaintheinterruptusingIRsensorforexampleIRledandphotodiode.howdoes
itworksifwewanttodisplayaDigitalClock.
31October2013at03:00

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

46/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
OsamaRamadansaid...
looksagreatproeject
28November2013at09:23

HariPsaid...
HelloSir,
Iwouldliketoknowmoredetailsaboutthecomponentsusedliketheresistor,capacitorvalues,
etc.Resistorcolorcodingexistsfor220ohmbutwhatdoes220Emean??Replyassoonas
possible.Anyoneknowingaboutthisdoubtcanclarify.
ThankYou.
29November2013at05:35

Unknownsaid...
howtoprogramarsirhelpmeilikeurprojcthexcodeatmega8andprogramarv
2December2013at11:00

ShekarVijaysaid...
haiurprojectisgoodbutineedthesourcecodetodisplaytheclockcanusendthecodetomy
mail
vijay.shekar18@gmail.com
17December2013at03:10

SoumyaRanjanSwainsaid...
Plzmentionthecapacitorvalues...Itisnotvisible...
in1stcircuitdiag,urusing18pfandnextcircuitdiagurusing33pf...whichoneisbetter...
20December2013at20:29

VAMSIDANDAsaid...
actuallycapacitorvalueisnotthatimportant.Butbothcapacitorsmustbeequal
butinmostofthecases33pfor22pfarepreferred.
21December2013at00:22

yugsaid...
hellosir,
uareveryhelpful..thanksforguidingalloftheknowledgeseekers..
siriamalsomakingthisproject..
iamplanningtousedesktoppccoolfan..andtocalculateitsrpmapairofIRandTSOP
transceiver(itsrpmareunknown)
moreoveriamimplementingthiscircuitonpic16f877amicrocontrollerusing20Mhz.crystal
myquestionisusinghighfreqcrystalandhighrommotorwillthatbegoodorbadand
plzaddonorcorrectmeinmyapproachwhereevermgngwrong
thankssir:)
27December2013at21:21

DheerajKumarsaid...
hellosir!forsolongiamsearchingforotssupplierinindia.........canvtakethisprjctasthemajor
one..........bcoziwanttomakeoneformyfinalprojectsubmission........sirplsdotellwhich
microcontrollerishoulduse...........8051,avrorpic...........sircanuplsprovidestepwisecircuit
design......itsprogram..........using8051..............nsirshldweconsiderthisasaMAJOR
one............idontwanttomakeapropellerclockusingRGBledsdisplayingimagesand

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

47/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
time.bothanalogndigitalaswell......................................................sirplshelpmeout.......................n
seriousyuhavdneag8job............thks
29December2013at07:33

poornachandraKotasaid...
hisiriamstudyingfinalyeareceisearchingthisprojectifoundthisblogisveryhelpfulfrom
todayiamstartingmyprojectbyusing8051
30December2013at04:35

mvsudhir786said...
haisiriusedmicrovision2forprgbutigetthatunkowndevice,whatstheprblmwas?plz
suggestme
6January2014at07:57

Unknownsaid...
hellodearsirpleasegivemeatmaga8avrcodethisprojecti'mverythankfultou
Email:jugjeewan@gmail.com
7January2014at20:34

chandrasekharsaid...
sirplztellcristalhzforatmega8
16January2014at10:21

chandrasekharsaid...
sirididntunderstandcodeterms
led=0x80delay()
led=0xf6delay()
led=0xf6delay()
led=0xeadelay()
led=0x9cdelay()
canuplzexplainitsir..........
16January2014at10:30

VAMSIDANDAsaid...
imusinginternal8Mhzcrystal
thosestatementsdisplay5columnsofledonpatternswitheachcolumnlifetime=delay()
19January2014at01:52

chandrasekharsaid...
caniwritethatprogrambymyownlikePORTB=0b01111110
_delay_ms(50)

23January2014at03:43

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

48/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
chandrasekharsaid...
Thiscommenthasbeenremovedbytheauthor.
23January2014at03:50

VAMSIDANDAsaid...
yesyoucanwritethatstatement
butthedelaythatyouwritemustbecalculated
forPOVdisplay_delay_us()functionispreferredmore..
checkthedelaycalculationsintheabovearticleyouwillfindout
23January2014at10:05

chandrasekharsaid...
fordisplaying"A"isitiscorrectandwhatisdifferentbetween_delay_us()and_delay_ms()
#include
#include
intmain(void)
{
DDRB=0b11111111
while(1)
{
PORTB=0b00111110
_delay_ms(50)
PORTB=0b01001000
_delay_ms(50)
PORTB=0b01001000
_delay_ms(50)
PORTB=0b01001000
_delay_ms(50)
PORTB=0b00111110
_delay_ms(50)

}
}
24January2014at03:10

chandrasekharsaid...
Thiscommenthasbeenremovedbytheauthor.
24January2014at03:13

manojdongaresaid...
Verynicesir...thiswillsparkmeenoughtodoitatmyown
27January2014at22:37

TousifIqbalsaid...
ItsaveryNiceProjectSir.IappreciateUvethrownalotoflightonthedetailedprocedures.I
eventrieditngotabitofsuccess.Buttheareawhereamactuallyfacingtheproblemis,Iam
unabletounderstandthelogictodisplaydifferentcharacters.Iveseentheaboveexamplefor
characterAusingthetableuvementioned.butamnotgettingit.canUpleaseelaboratethe
process,fordisplayingdifferentcharacters
29January2014at12:41

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

49/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
SteveDerbersaid...
Excellentpost!Thanksforthisgreatinfo.Niceshare!
LedDisplay
9February2014at22:50

pavankumarkodalisaid...
Verygoodprojectmr.vamsidanda.idonethesameprojecttodisplayamessagebutitisnot
givingtheaccuratedispalyofmessage"lettersarenotdiplayinginaparticularpostionatone
instantsomeletterisinsomexposition,samepositionisreplacedbysomeotherletterafter
sometime"iamfacingthisprobsopleasehelponthisandifyoudon'tmindsendtherelevent
dataonpawankumarkodali@gmail.comthismail....
23February2014at21:48

VAMSIDANDAsaid...
hellopavankumar
toachieveperfectPOVdisplaytherotatingmodulemustbeaccurateandyoumustuseperfect
delay
insteadtostabilizethedisplayyoucangoforIRinterruptsensorcheckthepicture
6March2014at03:24

nabilkarimisaid...
hellosir,urblogisreallyhelpful,butactuallymypurposeisalongtimerunningpropellerled,
andforthtitisnotfeasibletousea9vbatterypowersupply,soinedtosupplypowerdirectly
fromacmains,socanugivemesolutionregardinghowtoprovidepowertotherotatory
circuit...ihavereadmanyarticlssayingslipringsandallbutactuallyiamnotgettingaproper
slipringasimusinganormaldcmotorof1000rpmhavingitsshaftlengtharound25mm
only..socanusuggestsomeremedyplease,orcontactofsomevendorswhocouldhelpcozim
afresherinthisfieldandineedhelp..thankusir..plsdoreplymeonmymailif
possible...nabilkarimi92@gmail.com
17March2014at03:05

RigobertoLazaroJrsaid...
Iamalsotryingtobuildan8051ledpropellerclockwhatofmotordoyouhonestlysuggestthati
shouldusecouldyouemailmeatrigo0925@live.com
Thanks
20March2014at22:43

VAMSIDANDAsaid...
hellonabilkarimiusewirelesspowertransfertechniquetosendpowerwirelessuseinductive
coils...
heyrigoberto
choosethemotoraccordingtoyourdisplaycircuitlengthandweightcheckthepicturesinthe
post....
21March2014at21:50

dnyaneshwardivekarsaid...
Thankusir.....suchagreatwork.
25March2014at10:39

RigobertoLazaroJrsaid...
thanksandihaveonemorequestiondidyoubuyyourdevelopmentboardtoprogramthe8051
ordidyoumakeyours?

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

50/51

9/26/2016

ROBOZONE:PROPELLER(ROTATING)LEDDISPLAY
31March2014at08:48

VAMSIDANDAsaid...
mostofthetimeimakemyown
5April2014at08:32

JackLeesaid...
Gladtoseethepost.It'sawesome.Greatideauseinthisproject.Reallyremarkable.Thanksfor
sharingthepost.
http://lednsign.com/
12April2014at05:08

Sujeetsaid...
thanksforideadude..iwasthinkingaboutthepowersupplyforcircuit.nowthiswillbeeasyto
placeonboardpowersupplyusingbattery,andmountingoncpufanisvarygoodidea,
againthanks
8May2014at01:12

1200of265NewerNewest

PostaComment

HOME

ROBOTS

NewerPost

ELECTRONICS

EMBEDDED

Home

PROJECTS

OlderPost

Subscribeto:PostComments(Atom)

contactus
9738750010

file:///G:/ROBO%20ZONE%20PROPELLER(ROTATING)%20LED%20DISPLAY.htm

51/51

You might also like