Lynxmotion Tech Support

www.lynxmotion.com
It is currently Sun May 19, 2013 9:21 am

All times are UTC - 6 hours [ DST ]




Post new topic Reply to topic  [ 41 posts ]  Go to page Previous  1, 2, 3
Author Message
PostPosted: Tue Aug 23, 2011 11:53 am 
Offline
Robot Guru
User avatar

Joined: Wed Feb 27, 2008 8:59 am
Posts: 3141
Location: Online @ innerbreed.co.uk
here is the demo form the manufactures webside:

_________________
Jonny Poole,
Freelance Concept Art & Animatronics, 3D Art and 3D Modelling, as well as Physical Modelling, Mechanical design, and illustration.
http://www.innerbreed.co.uk/
Create, Innovate, Inspire.


Top
 Profile  
 
PostPosted: Thu Aug 25, 2011 3:06 pm 
Offline
Robot Guru
User avatar

Joined: Wed Feb 27, 2008 8:59 am
Posts: 3141
Location: Online @ innerbreed.co.uk
LED' soldered, PIC inserted, Battery connected, We are go!
i have soldered the LED's with long tails so that they fit the desired circumference.


_________________
Jonny Poole,
Freelance Concept Art & Animatronics, 3D Art and 3D Modelling, as well as Physical Modelling, Mechanical design, and illustration.
http://www.innerbreed.co.uk/
Create, Innovate, Inspire.


Top
 Profile  
 
PostPosted: Thu Aug 25, 2011 9:13 pm 
Offline
Robot Guru
User avatar

Joined: Tue Nov 02, 2010 9:39 pm
Posts: 1431
Location: Quebec Canada
REAL nice board.. ;)

I think i will get one.. But .. still wonder how to program it.. LOL

_________________
Eric Nantel
Qc Canada

Always liked Robot... Now i am learning to make some...! Wonderfull...


Top
 Profile  
 
PostPosted: Fri Aug 26, 2011 2:49 am 
Offline
Robot Guru
User avatar

Joined: Wed Feb 27, 2008 8:59 am
Posts: 3141
Location: Online @ innerbreed.co.uk
One way that might be a solution would be to make a breadboard or something with the microcontroller socket, etc, so you can access the chip.?

_________________
Jonny Poole,
Freelance Concept Art & Animatronics, 3D Art and 3D Modelling, as well as Physical Modelling, Mechanical design, and illustration.
http://www.innerbreed.co.uk/
Create, Innovate, Inspire.


Top
 Profile  
 
PostPosted: Fri Aug 26, 2011 7:23 am 
Offline
Robot Guru
User avatar

Joined: Tue Nov 02, 2010 9:39 pm
Posts: 1431
Location: Quebec Canada
I have a pic programmer. Somewhere.

Never use it, never look at it.
Program in witch language?

_________________
Eric Nantel
Qc Canada

Always liked Robot... Now i am learning to make some...! Wonderfull...


Top
 Profile  
 
PostPosted: Fri Aug 26, 2011 9:43 am 
Offline
Robot Guru
User avatar

Joined: Wed Feb 27, 2008 8:59 am
Posts: 3141
Location: Online @ innerbreed.co.uk
Attachment:
pro481v207.zip [22.97 KiB]
Downloaded 106 times


Code:
; PWM LED Chaser
; MACRO definitions for creating Sequence Data tables
;
; *****************************************************************
; This code expects you to enter the sequence data correctly.
; If you miss fields, enter incorrect values or generally don't
; get the format correct, the code will crash or behave irraticaly.
; *****************************************************************
;

              radix decimal
              ; set number base to decimal so it's easier to work with


; -----------------------------------------------------------------
; Example:
;
;
;              control 0,2                 ; no mirror, repeat twice
;
;              hold 50                     ; hold for 50 x 10mS = 0.5S
;              sdat 0,0,0,0,0,0,0,0        ; all LEDs off
;              hold 50                     ; hold for 50 x 10mS = 0.5S
;              sdat 1,1,1,1,1,1,1,1        ; all LEDs dim brightness
;              hold 75                     ; hold for 75 x 10mS = 0.75S
;              sdat 2,2,2,2,2,2,2,2        ; all LEDs mid brightness
;              hold 75                     ; hold for 75 x 10mS = 0.75S
;              sdat 3,3,3,3,3,3,3,3        ; all LEDs full brightness
;
;              seqend                      ; mark end of this sequence


; Each sequence starts with the control parameter.
;
; This specifies the number of times to repeat the sequence and whether the
; sequence is suitable for mirroring.
;
;   control  Can_Mirror, Repeat count
;            True  if Can_Mirror = 1
;            False if Can_Mirror = 0
;            Repeat_Count >=1, 31=<
;
; Repeat count.
; Sequence will repeat this many times before moving to the next sequence
;
; Mirroring
; Asymetric patterns, for example a sequence that moves a dot from left to right are suitable for mirroring
; since the same data when mirrored creates a different pattern.  This effecitively gives two different
; sequence patterns without requiring two sets of data.
; Symetrical patterns when mirrored will appear exactly the same, there is no reason to mirror them, but
; it doesn't care if you do.
;
control       macro Mmirror, Mtimes
              if (1>Mtimes) || (Mtimes>31)
               error "Repeat count in sequence data is out of range. Must be between 1 and 31."   
              endif
              retlw  (1&&Mmirror)<<6 | (Mtimes & .31)
              endm

; Each line of seqence data is preceded by a hold time parameter
; This specifies how long to hold the pattern before moving to the next
; line of data in the sequence.

              ; hold hold_value
              ;    1<= hold_value <= 254
              ; hold time = hold_value * 10mS
              ; e.g. hold 15 holds for 150mS

hold  macro Mseqhold
              if (1>Mseqhold) || (Mseqhold>254)
               error "Hold value in sequence data is out of range. Must be between 1 and 254."   
              endif
              retlw  Mseqhold
              endm

; Sequence Data pattern. Each of the 8 LEDs can be set to one of 4 brightness levels
; 0 = off
; 1 = dim
; 2 = mid
; 3 = full
;
; The pattern is specified as 8 comma seperated fields representing LEDs 7-0
; LED  7  6  5  4  3  2  1  0
; sdat n, n, n, n, n, n, n, n
; e.g. sdat 0, 1, 2, 3, 3, 2, 1, 0


sdat    macro Mb7,Mb6,Mb5,Mb4,Mb3,Mb2,Mb1,Mb0
              retlw  (1&&(Mb7&1))<<7 | (1&&(Mb6&1))<<6 | (1&&(Mb5&1))<<5 | (1&&(Mb4&1))<<4 | (1&&(Mb3&1))<<3 | (1&&(Mb2&1))<<2 | (1&&(Mb1&1))<<1 | (1&&(Mb0&1))<<0
              retlw  (1&&(Mb7&2))<<7 | (1&&(Mb6&2))<<6 | (1&&(Mb5&2))<<5 | (1&&(Mb4&2))<<4 | (1&&(Mb3&2))<<3 | (1&&(Mb2&2))<<2 | (1&&(Mb1&2))<<1 | (1&&(Mb0&2))<<0
             endm


; The end of a sequence is marked with the seqend macro
; This must always be present, if it's missing the code will crash.
seqend  macro
              retlw  .255
              endm
             
; Tip:
; If you put two 'seqend' at the end of a sequence it will treat it as the end of
; all sequences.  Any sequence data after it will be ignored by the program. This can
; be handy when testing new sequences. Put the new sequence at the top of the sequence
; data file and add two 'seqend', then it will only run that sequence.
;

_________________
Jonny Poole,
Freelance Concept Art & Animatronics, 3D Art and 3D Modelling, as well as Physical Modelling, Mechanical design, and illustration.
http://www.innerbreed.co.uk/
Create, Innovate, Inspire.


Top
 Profile  
 
PostPosted: Fri Aug 26, 2011 10:15 am 
Offline
Robot Guru
User avatar

Joined: Tue Nov 02, 2010 9:39 pm
Posts: 1431
Location: Quebec Canada
Tanks Jonny,
I will look if i can get a PIC and make it work.. ;)

_________________
Eric Nantel
Qc Canada

Always liked Robot... Now i am learning to make some...! Wonderfull...


Top
 Profile  
 
PostPosted: Sun Sep 04, 2011 2:27 pm 
Offline
Robot Guru
User avatar

Joined: Tue Nov 02, 2010 9:39 pm
Posts: 1431
Location: Quebec Canada


Just found someone using the big one on a copter

_________________
Eric Nantel
Qc Canada

Always liked Robot... Now i am learning to make some...! Wonderfull...


Top
 Profile  
 
PostPosted: Sun Sep 04, 2011 4:02 pm 
Offline
Robot Guru
User avatar

Joined: Wed Feb 27, 2008 8:59 am
Posts: 3141
Location: Online @ innerbreed.co.uk
very cool. i wouldnt be able to stop myself doing night flights just to spook the neighbours. 8)

_________________
Jonny Poole,
Freelance Concept Art & Animatronics, 3D Art and 3D Modelling, as well as Physical Modelling, Mechanical design, and illustration.
http://www.innerbreed.co.uk/
Create, Innovate, Inspire.


Top
 Profile  
 
PostPosted: Mon Sep 05, 2011 6:35 am 
Offline
Robot Guru
User avatar

Joined: Tue Nov 02, 2010 9:39 pm
Posts: 1431
Location: Quebec Canada
Some news about that big LED chaser...
http://mk-epi.de/index.php/Aufbau
http://www.mylifesucks.de/oss/c-epilepsy/

_________________
Eric Nantel
Qc Canada

Always liked Robot... Now i am learning to make some...! Wonderfull...


Top
 Profile  
 
PostPosted: Tue Sep 06, 2011 11:57 am 
Offline
Lynxmotion Founder
User avatar

Joined: Mon Oct 31, 2005 10:46 am
Posts: 9325
Location: my quiet place
innerbreed wrote:
very cool. i wouldnt be able to stop myself doing night flights just to spook the neighbours. 8)


That alone would make it worth the cost and time involved! 8)

_________________
Jim Frye, the Robot Guy
http://www.lynxmotion.com
I've always tried to do my best...


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 41 posts ]  Go to page Previous  1, 2, 3

All times are UTC - 6 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group