Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


Filter this topic showing only the reply marked as answer View this topic in a long page with up to 500 replies per page Create new topic
1 | ... | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ... | 55
latcho
44 posts

Geek


  #797400 10-Apr-2013 21:00
Send private message

Harmish won't make a thing. He will only resell the stuff (as if).

As an insider I can tell you that the (real) producer of the bulbs is in the proces of making a STRONG downlight that will be available any time soon. Then Harmish (and I on a different webspot) will probably sell the goods. Only I don't pretend to have invented them.
Cheers.

That I'm not talking bullocks is proven by the attached screenshot ;)

downlight



LimitlessLED
216 posts

Master Geek


  #797420 10-Apr-2013 21:15
Send private message

correct, I am on the board and engineering team that designed those downlights pictured... 15W 24W 36W model downlights are already in production, and we are designing the next generation products at the moment also.


-Hamish
LimitlessLED.

richms
28172 posts

Uber Geek

Trusted
Lifetime subscriber

  #797421 10-Apr-2013 21:20
Send private message

Q: for hamish.

Is there any documented way to whack some sort of RF transciever onto a Rasp Pi or some other ethernet enabled device to get something with individual control of multiple banks of lights without needing to buy and power a crapload of the little wifi boxes?




Richard rich.ms



latcho
44 posts

Geek


#797424 10-Apr-2013 21:23
Send private message

If so, then tell me what is the exact type of RF chip beign used.
What I know about Harmish is that he is the agent for NZ for this product.
With 4.5 mill people that is not so special. I would advice Harmish to take another Taakawa Maori beer and speak the truth.

if you want to market the socialway, rule numer #1 is: be honest and answer all questions ( not selective answers that best fit your commercial purpose ).

LimitlessLED
216 posts

Master Geek


  #797425 10-Apr-2013 21:23
Send private message

@richms, sorry not at the moment due to price constraints on the rf technology chips we are using.. and really 3xWifi Bridges $51 will give you 12 white zones and 3 rgb zones...

richms
28172 posts

Uber Geek

Trusted
Lifetime subscriber

  #797428 10-Apr-2013 21:26
Send private message

I would want dozens of RGB zones, one for each lamp in a festoon set pretty much. How about changing the LED drive so that the PWM doesnt get into the light output? If you sort that, and something like those recessed lights I would probably kit most of the loungeroom out with them.




Richard rich.ms

latcho
44 posts

Geek


  #797430 10-Apr-2013 21:29
Send private message

richms: I would want dozens of RGB zones, one for each lamp in a festoon set pretty much. How about changing the LED drive so that the PWM doesnt get into the light output? If you sort that, and something like those recessed lights I would probably kit most of the loungeroom out with them.


stop believing any answer by Harmish, will get you going on an improved hack journey

 
 
 

Shop now on AliExpress (affiliate link).
LimitlessLED
216 posts

Master Geek


  #797435 10-Apr-2013 21:34
Send private message

hi latcho: I'm your friend man, chill out. I am not an agent for anywhere. I am an electronics architect, and all for the technology advancement and work with the product team.
correct, I didn't invent it, Samsung and other chip companies we use in the LEDs are the real inventors here.

latcho
44 posts

Geek


  #797436 10-Apr-2013 21:36
Send private message

RF Chip specs?

latcho
44 posts

Geek


  #797439 10-Apr-2013 21:39
Send private message

LimitlessLED: hi latcho: I'm your friend man, chill out. I am not an agent for anywhere. I am an electronics architect, and all for the technology advancement and work with the product team.
correct, I didn't invent it, Samsung and other chip companies we use in the LEDs are the real inventors here.



Another Harmish twist to say that he actually engineered this bulb.
Well then I did too...

latcho
44 posts

Geek


  #797440 10-Apr-2013 21:41
Send private message

LimitlessLED: hi latcho: I'm your friend man, chill out. I am not an agent for anywhere. I am an electronics architect, and all for the technology advancement and work with the product team.
correct, I didn't invent it, Samsung and other chip companies we use in the LEDs are the real inventors here.


I am chill. I did not reveal the real producer did I ?
Commerce is commerce. Making money is cool. Pretending you invented this actual product is not.

LimitlessLED
216 posts

Master Geek


  #797442 10-Apr-2013 21:43
Send private message

nice engineering latcho. I would buy/invest in your products :)

email me your skype details, perhaps we can work together on some new products...

freitasm
BDFL - Memuneh
79263 posts

Uber Geek

Administrator
ID Verified
Trusted
Geekzone
Lifetime subscriber

  #797448 10-Apr-2013 21:55
Send private message


Latcho, this is not the way to do it. If you have reservations then contact LimitlessLED directly via PM but don't do it in public. If you have something you can provide to myself. Another post like these and we will have to ban the account.





Please support Geekzone by subscribing, or using one of our referral links: Samsung | AliExpress | Wise | Sharesies | Hatch | GoodSyncBackblaze backup


latcho
44 posts

Geek


  #797461 10-Apr-2013 22:06
Send private message

freitasm:
Latcho, this is not the way to do it. If you have reservations then contact LimitlessLED directly via PM but don't do it in public. If you have something you can provide to myself. Another post like these and we will have to ban the account.



Sorry if I offended anybody.
I like the honest "open".
I will PM you.

latcho
44 posts

Geek


  #797473 10-Apr-2013 22:22
Send private message

To take this thread back where it belongs.
I figured out how to run a simple javascript with nodeJS and create a nice hue color sweep on THE color bulbs.
LimitLess LED has a nice control script available too, only I was missing the context on how to run it. An answer did not follow, so I looked up how to send these JS scripted UDP commands from JS on a console.

Here follows a little example / howto.

- Just download NodeJS installer here and after installing add node.exe to your Windows PATH:

SET PATH=C:\Program Files\Nodejs;%PATH%
- now create an new JS text file: " ledsweep.js " and paste the code below.

- change the IP of the WifiBoxHost to your need in the script

- open a CMD prompt and go to the dir where you saved the JS script.

- type>>:  node ledsweep.js [ENTER]

Enjoy a smooth color sweep !

 <ledsweep.js>::
var WifiBoxPort = 50000;
var WifiBoxHost = '192.168.1.100';
const ColCmd = 0x20;
const CmdValEmpty = 0x00;
const EndByte = 0x55;
var dgram = require('dgram');
var timeOutLoopMS = 33;

var client = dgram.createSocket('udp4');
var fs = require('fs');
colorSweepLoop();


var sweepCol = 0;
function colorSweepLoop()
{
if(sweepCol >= 255) sweepCol = 0;
 var col = sweepCol++;
 var colHex = componentToHex(col);
 var message = new Buffer([ColCmd,colHex,EndByte]);
 client.send(message, 0, message.length, WifiBoxPort, WifiBoxHost, function(err, bytes) {
    if (err) throw err;
    //console.log('UDP sent to ' + HOST +':'+ PORT);
    //client.close();
});
setTimeout(colorSweepLoop,timeOutLoopMS);
}
function componentToHex(c) {
    var hex = c.toString(16);
    return hex.length == 1 ? "0x0" + hex : "0x"+hex;
}

1 | ... | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | ... | 55
Filter this topic showing only the reply marked as answer View this topic in a long page with up to 500 replies per page Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.