Brins0 have you lost hope in your software? Why are you not responding to us?
I've not lost hope, but when I get really disheartening posts like the following...Brins0 have you lost hope in your software? Why are you not responding to us?
...which you yourself have posted, do you think i'm going to ggo out of my way to do anything. Remember i'm doing this out of the goodness of my own heart, in my own spare time, whilst doing another job at university, and an MSc. I appologise for not being able to drop everything right now and read your rather insulting posts, but I have better things to be doing with my life....
Man, the preview button doesn't even work, remove it.
...
And the loop button doesn't work sometimes, fix it.
...
Your patterns and events screen shot guide is useless and teaches us nothing
...
You need to atleast explain what the hell the index of time for start and end actually represent because it simple and yet it is tricky
...
It took me 5 hours to make a simple pattern, and now I have a problem in which it only loops once, and not forever.
...
Well I'm sorry for my offensive language and talk.
I hope you do have a user guide for the Illumineria, it took my 10 hours non stop just to learn this thing and but it doesn't cycle.
that is the exact thing i try to do dude!!..and still no lights flashing for me at all...i wonder if it could be because of smabergs touch x..but that would be crazy.. =/And to Daranus i recommend starting off with Qwerty open/close
That would be crazy.that is the exact thing i try to do dude!!..and still no lights flashing for me at all...i wonder if it could be because of smabergs touch x..but that would be crazy.. =/
sorry mate try reinstalling the software, theres no such bug, if dat doesnt help u may ve to hard reset as no one else faced this problem nd i ve been using this software 4 so long in diff roms nd its running smooth nd fine...
I would lik eto know this as well. i have tried creating a pattern file for it but it doent do anything when i assign it to standby mode, i.e sleeping/ locked.How to make leds blink always? When phone is locked and sleeping...
Great great animation. The flashing lights run around the phone and change colour as well! I'm using it for unread sms notifi now. Can you post up some more of your illumineria patterns on this thread? Can someone else?hey guys just made this blue animation file nd m using it as COMM_VOICE_CALLONGOING pattern in Illumineria, hope u like it // if anyone can make changes with it and make it better or can download some cool patterns of their own will be much appreciated
thanx
gitin
note: to make it running continuously while on call, install xperiatweek and disable screen turning off during calls...
#include "stdafx.h"
#include "Winbase.h"
int _tmain(int argc, _TCHAR* argv[])
{
HANDLE hLed = NULL;
DWORD klRet = 0;
unsigned char rainbow[] = {17,0,7,0,100,30,141,1,0,0,141,1,0,0,141,1,0,0,0,0};
//unsigned char vibe[] = {1,0,0,2,52,242,180,203,95,243,91,72,164,144,173,199,0,0,0,0};
//unsigned char vibe_off[] = {0,0,0,2,52,242,180,203,95,243,91,72,164,144,173,199,0,0,0,0};
hLed = CreateFile(L"LED1:", GENERIC_WRITE, FILE_SHARE_WRITE|FILE_SHARE_READ, NULL,
OPEN_EXISTING, 0, NULL);
if (!hLed) return 1;
DeviceIoControl(hLed, 0x80020004L, rainbow, 20, NULL, 20, &klRet, NULL);
CloseHandle(hLed);
return 0;
}