|
Post by Admin on Sept 23, 2013 14:04:13 GMT
The Embrava Software Development Kit (SDK) allows developers to write applications that integrate with Embrava Status Lights. This SDK provides the opportunity for Embrava Status Lights to work with other messaging clients and also allows for the physical display of alerts from your own business applications. The Embrava SDK contains everything you need to start developing quickly and efficiently from user-friendly documentation to sample code with support for Windows and Mac platforms. Download the Embrava SDK by clicking the link below: Embrava SDKps: Share your creations with us! Whatever it is you develop, big or small, we'd love to hear about it!
|
|
|
Post by jcaldwell on Oct 15, 2013 23:42:54 GMT
Finally! thanks for listening and acting on my emails guys
|
|
|
Post by brendan on Oct 29, 2013 11:30:54 GMT
nice work!
|
|
|
Post by markskowalski on Feb 6, 2014 21:09:28 GMT
There are two mistakes in the example code. First, the bResult in the event handlers needs to be typed as Boolean.
Second, the example leads off with this text:
using System; using System.Windows.Forms; using BlynclightController;
namespace BlynclightControllerTestProject { public partial class Form1 : Form { // Create object for the BlynclightController class private BlynclightController oBlynclightController = new BlynclightController();
But that won't work with MS VS 2012. It needs to be:
using System; using System.Windows.Forms; using Blynclight;
namespace BlynclightControllerTestProject { public partial class Form1 : Form { private BlynclightController oBC = new BlynclightController();
|
|
|
Post by joshuc on Feb 26, 2014 19:56:42 GMT
Since the LEDs are all RGB LEDs it would really cool to be able to pass in any RGB value through code.
|
|
|
Post by bitblaster on Mar 15, 2014 1:36:45 GMT
Would it be possible to provide the source to the SDK?
Thanks in advance.
|
|
|
Post by marius on Mar 17, 2014 12:38:48 GMT
Hi guys,
anybody tried to link it with skype? or yahoo messenger?
thanks
|
|
|
Post by Sean Feldman on Apr 8, 2014 14:42:49 GMT
Hello,
Looks like link for SDK download is broken.
Is it possible to fix it?
Thank you.
|
|
|
Post by Admin on Apr 16, 2014 23:09:07 GMT
Hi Sean,
SDK link seems ok.
Are you able to access it now?
You must be logged in to access the download.
Hope that helps.
|
|
|
Post by TravisTester on Jul 22, 2014 9:14:32 GMT
I was hoping for Custom Colors using RGB values, or system.drawing.colors.
|
|
|
Post by grinningphd on Sept 3, 2014 23:44:24 GMT
I second that. Dimming would also be nice!
Annoying request: maybe you could open-source the SDK?
|
|
p0ke
New Member
Posts: 14
|
Post by p0ke on Sept 4, 2014 12:23:28 GMT
I donĀ“t think the hardware allows custom colors(also means: no dimming). Look at the node-blync from justmoon: blynclight.proboards.com/thread/11/blync-node-jsYou can write 8 colors changing the last byte (over a hid library or so). For custom colors you need at least 3 bytes for RGB. So I think it is not possible. To the developer: Please tell me if im wrong.
|
|
|
Post by Admin on Sept 24, 2014 23:04:20 GMT
Nice work p0ke - correct. We are just about to release our latest firmware that will enable a whole bunch of features including custom RGB colors. Stay tuned!
|
|
p0ke
New Member
Posts: 14
|
Post by p0ke on Oct 2, 2014 8:06:46 GMT
Thanks Admin Could you also include a way to discover the right device? Blync creates 2 HID devices and the only way to find out the right device is the MaxFeatureReportLength = 0. Manufacturer, Product, etc. is all the same. Would be great for control it over HID librarys.
|
|
|
Post by Admin on Oct 8, 2014 22:25:31 GMT
Hi again p0ke,
Yes - this is in the works.
Stay tuned for further updates.
|
|