Reply
Thread Tools
Posts: 755 | Thanked: 406 times | Joined on Feb 2008 @ UK
#81
Originally Posted by mackan1 View Post
i missed out a 0.
u able to tell me how to add a longer pause in this.
also if you have the time to make it do 3 lost of flashing befor it pauses?
The second one should work.

Originally Posted by pH5 View Post
Nice description. I'm a bit confused by the 0x01ff command used in the power down pattern to set full brightness. I'd expect that to be 0x40ff instead - do you happen to know what it is exactly that 0x01ff does differently?
01ff would incrementally decrease the brightness, rather than set it immediately, as per the wiki.
 

The Following 2 Users Say Thank You to codeMonkey For This Useful Post:
pH5's Avatar
Posts: 138 | Thanked: 375 times | Joined on Aug 2009 @ Berlin
#82
Originally Posted by codeMonkey View Post
01ff would incrementally decrease the brightness, rather than set it immediately, as per the wiki.
But it doesn't. PatternPowerOff uses it, and the effect seems to be an immediate increase to full brightness.
The step time (bits 0x3e00) is zero, so maybe the prescale bit (0x4000) and the sign bit (0x0100) are just ignored and 0x40yy / 0x41yy / 0x01yy commands have the same effect?
 

The Following User Says Thank You to pH5 For This Useful Post:
Posts: 755 | Thanked: 406 times | Joined on Feb 2008 @ UK
#83
You're right. 00ff seems to do exactly the same thing.

If I'd had to guess 00ff should've increased immediately (in one step) and 01ff decreased immediately to obey the 'even is increase, odd is decrease' rule.
 
Posts: 134 | Thanked: 42 times | Joined on Feb 2010
#84
Originally Posted by codeMonkey View Post
The second one should work.



01ff would incrementally decrease the brightness, rather than set it immediately, as per the wiki.

woopee it did work, does it 3 times and around 4-5 sec pause and starts agen.

A police-siren style pattern, This pattern fades between red and blue x3 and pauses for 5sec's and starts agen
Code:
PatternCommunicationEmail=30;1;0;rB;9d8004ff05ffe004e10004ff05ffe004e10004ff05ffe004e10071080000;9d80e08004ff05ffe002e08004ff05ffe002e08004ff05ffe0020000
thanks for the help

Last edited by mackan1; 2010-02-24 at 14:27.
 
Posts: 306 | Thanked: 566 times | Joined on Jan 2010 @ Romania
#85
for 01ff code step time according my description is 0
i think all * step time 0 actually set brightness

* 40 , 41 , 00, 01
40, 41 mean prescale 1
41 ,01 mean down but, as i say, all have step time =0

it can be a hardware mechanism doing set brightness when bits5:1=0

making loops
command is a000 + 80 * times + start_loop_step_number
calculations are done in hexadecimal format
legal values :
start_loop_step_number = 0-15 decimal ( 0 - f hexa ) but 15 is stupid
times = 0 - 63 decimal ( 0 -3f hexa ) , 0 mean infinite loop

example of simple loops commands
a180 repeat 3 times from beginning ( step 0 )
a281 repeat 5 times from step 1

so acording to this "police with pause" will become

Code:
rB;9d8002ff03ffe004e100a1817f0b0000;9d80e08002ff03ffe0020000
a181 = repeat 3 times from step 1 ( 02ff )
notice: 1 step is always executed and 3 times loop will result 4 runs of pattern
7f0b = pause 5 sec

new commands not found in wiki

tip
very often we choose consecutive triggers like e004e100 or e080e002
they can be combined in one command only if they are consecutive
e004e100 become e104
e080e002 become e082

so the shortest "police" with 4 runs + 5 sec pause is
Code:
rB;9d8002ff03ffe104a1817f0b0000;9d80e08002ff03ffe0020000
enjoy

Playing more with loops
SOS pattern
Code:
R;9d80e104150fa101e104a104150fa104e104150fa1087f0b0000;9d80e08040ff140f4000e0020000

Last edited by blue_led; 2010-02-25 at 13:18.
 

The Following 5 Users Say Thank You to blue_led For This Useful Post:
Posts: 134 | Thanked: 42 times | Joined on Feb 2010
#86
How can i get this pattern to flash White + Blue (same as the one below but White not red)
and
also a pattern to flash Yellow + Blue (same as the one below but Yellow not red)

I have been at this for hours. so thought i should ask for some help befoe i trash my n900


A police-siren style pattern, This pattern fades between red and blue x3 and pauses for 5sec's and starts agen
Code:
Code:
PatternCommunicationEmail=30;1;0;rB;9d8004ff05ffe004e10004ff05ffe004e10004ff05ffe004e10071080000;9d80e08004ff05ffe002e08004ff05ffe002e08004ff05ffe0020000
 

The Following User Says Thank You to mackan1 For This Useful Post:
Posts: 306 | Thanked: 566 times | Joined on Jan 2010 @ Romania
#87
yellow - blue

Code:
rgB;9d8004ff05ffe104a10171080000;9d80e08004ff05ffe00020000
white - blue

Code:
rgB;9d80e00404ff05ffe100a10171080000;9d80e08004ff05ffa082e0020000
 

The Following 3 Users Say Thank You to blue_led For This Useful Post:
Posts: 21 | Thanked: 4 times | Joined on Jan 2010 @ Germany
#88
yeah and I'm trying for hours to get a flashing pink and white or pink and light-blue....Could PLEASE anyone post that up for me, I can't get it managed.
I have only a normal pink led
if you neet the code i could post it have it copied from the first led thread.

Thank you
 
Posts: 755 | Thanked: 406 times | Joined on Feb 2008 @ UK
#89
Originally Posted by blue_led View Post
new commands not found in wiki

making loops
Good work there!
 
F2thaK's Avatar
Posts: 4,365 | Thanked: 2,467 times | Joined on Jan 2010 @ Australia Mate
#90
this one is cool:

Cehteh's patterns with some comments
Same as PatternDeviceOn, but white:
(Slow dark glowing in white, never goes fully off, so you can locate the device in the dark: )

Code:
PatternBatteryFull=40;3;0;rgb;9d804001620863087f007f007f007f007f007f007f007f007f007f007f000000;9d800000
except id like it to slowly get to max brightness then fade again, rather than 1/2 brightness.. if someone could do this when they get a few minutes Id really appreciate it, Thanks!! ive got no idea

Last edited by F2thaK; 2010-02-25 at 09:33.
 
Reply


 
Forum Jump


All times are GMT. The time now is 11:17.