Categories
VSCP

VSCP & Friends 1.12.3 Magnesium released #VSCP #IoT #m2m

vscp_new_v2

Available for download on Source Forge and on GitHub.

General
  – Several endian conversions fixed.
  – Fixed long timeout when connecting to remote host (reported by some as hang).
 
VSCP Works
  – Fixed problems with default window sizes.
  – Float/double abstraction values are now handled correctly.
  – Fixed problem with write of bit 8 of class mask/filter when a decision matrix row
     was written.
  – VSCP Works configuration window now remembers selections after an update.
  – Shortcuts is now available that move to specific pages in the configuration
of vscp works by right clicking the register grid.
  – Added new menu in VSCP Works config (Transport) with shortcuts for fast moves.
  – Abstraction edit is now moved to a menu item that is made visible by right clicking a cell and
     which works much the same as for registers.
  – It is now possible to edit in place for abstractions also in VSCP Works.

 

Enjoy!
/Ake
akhe@grodansparadis.com

Categories
VSCP

#VSCP #OPENHAB and #IOT searches over time

or the story about staying on the job and not give up…  😉

VSCP

Screenshot from 2016-04-20 09:24:55

OpenHAB

Screenshot from 2016-04-20 09:25:32

IoT

Screenshot from 2016-04-20 09:26:18

 

Categories
VSCP

Running VSCP & Friends Linux version on Windows #VSCP #IoT #M2M

linux

Running VSCP & Friends Linux version on Windows. Yes it sound strange but this is actually possible now in windows 10 build 14316 which have Ubuntu Linux incorporated into the system.  No it’s not a virtual machine its the real thing. Life just got easier for developers of cross platform tools.

Well how to use this new stuff?

First you need to switch your Windows 10 system to the Fast Ring. You do this by going “System Settings > Advanced Windows Update options” and selecting your Insider Preview update setting to the far right. This sets your Windows 10 update to the the Fast Ring.

Now you must turn on Developer Mode via “Settings > Update & security > For developers“. Search for “Windows Features” and choose “Turn Windows features on or off” and enable Windows Subsystem for Linux (Beta).

Restart the machine.

Open up a console and type “bash“.  Well you are done. After some work by the machine  you can install the VSCP & Friends system as on any other Linux machine.

Categories
VSCP

VSCP & Friends version 1.12.0

vscp_new_v2

This is release 1.12.0 of VSCP & Friends

From now on releases will come closer on all platforms. There will not be as much fuzz about therm as before.

Download here or here.

This release may not be the choice for a critical installation as it contains many changes from the previous release.

Enjoy
/Ake

Categories
VSCP

VSCP Firmware release 1.6

vscp_new_v2

A new VSCP firmware is released as version 1.6.0.

The main difference in this release is that the segment controller check has been removed.  This means that the node control that was present in register 131/0x83  is now replaced by the error counter.  Thus read the current error counter value from this register.  Reset the error counter by writing anything to the register.

With the same segment check removed a node that is moved from one segment to another now must be manually initialized after it has been started up.

Previously one control byte was used to check for initialized EEPROM.  Now this is two bytes. The callbacks for this purpose has therefore been changed.

///////////////////////////////////////////////////////////////////////////////
// setVSCPControlByte
//

void vscp_setControlByte( uint8_t idx, uint8_t ctrl )
{
    if ( idx > 1 ) return;
    eeprom_write( VSCP_EEPROM_CONTROL1 + idx, ctrl );
}

///////////////////////////////////////////////////////////////////////////////
// getVSCPControlByte
//

uint8_t vscp_getControlByte( uint8_t idx )
{
    if ( idx > 1 ) return 0;
    return eeprom_read( VSCP_EEPROM_CONTROL1 + idx );
}

Another callback has been added that do the actual initialization of the EEPROM

///////////////////////////////////////////////////////////////////////////////
// vscp_init_pstorage
//
void vscp_init_pstorage( void )
{
    init_app_eeprom();
}

An addition is added if you define

VSCP_FIRMWARE_ENABLE_ERROR_REPORTING

which will give access to a method for VSCP standard error reporting

/*!
    Send error event (CLASS=508).
    http://www.vscp.org/docs/vscpspec/doku.php?id=class1.error
    idx can be used to identify the internal part ("submodule") that was the
    origin of the error. Both zone and sub zone are always set to zero.
    @param type This is the VSCP type
    @param idx Index to identify possible sub module. Normally set to zero.
    @return True if event was sent.
*/
#ifdef VSCP_FIRMWARE_ENABLE_ERROR_REPORTING
uint8_t vscp_sendErrorEvent( uint8_t type, uint8_t idx );
#endif

Just remember that over CAN it is no use in reporting communication problems as doing so will most likely make them worse.

Another addition is added if you define

VSCP_FIRMWARE_ENABLE_LOGGING

which gives access to a method for standard VSCP logging.

/*!
    Send log event (CLASS=509). 
    http://www.vscp.org/docs/vscpspec/doku.php?id=class1.log
    For loging first send Type = 2(0x01) Log Start then logging events and when 
    log is closed send Type = 3 (0x03) Log Stop. To log several things use a 
    unique if for each and open/close each.  
    @param type VSCP logevent type.
    @param id Identifier for the logging channel.
    @param level Loglevel for this log event.
    @param idx index for multiframe log event starting at zero.
    @param pData Log data (Allways 5 bytes).
    @return TRUE if event was sent.
 */
#ifdef VSCP_FIRMWARE_ENABLE_LOGGING
uint8_t vscp_sendLogEvent( uint8_t type, 
                            uint8_t id, 
                            uint8_t level, 
                            uint8_t idx, 
                            uint8_t data );
#endif

As always the Paris project and the Kelvin NTC10K project can be used as reference code.

The release is available here.

Enjoy!
/Ake

Categories
VSCP

Hedmans #IoT protocol validator

internet-of-things-concept-illustration

This is simple. Every protocol that is entering the scene today is dubbed an IoT protocol. Hmmm… are they really… or are they transport mechanisms (which we already have plenty of) or is they just useless vertical solutions (well not useless for the company who made it).  And hey… it does not have anything to do with Internet or wireless. It’s about connecting things.

So

1.) Does the protocol connect things together? If so, item under test is a candidate for an IoT protocol.

2.) Ask ten people in ten different areas of the earth without contact with each other to send a measurement of there current temperature over the protocol. If the receiver on the other end know what he/she receives from all ten the protocol  is a candidate for an IoT protocol.

3.) Ask the ten people to send an ON command and then an OFF command to turn on/off a lamp at the receiving end.  If all actually does this the protocol is a candidate for an  IoT protocol.

So 1+2+3 and success on all, yes and hurray, it’s an Iot protocol. If not it may still be a useful protocol  for other things.

Åke Hedman
Paradise of the Frog AB

Categories
VSCP

HELP – #VSCP UX Dreams #IoT #M2M

vscp_new_v2

If there was time…

… then I would have put more time on UX components for VSCP. YES the infrastructure is there. We where one of the first with a websocket interface to interface UX components. We have the REST interface and the tcp/ip interface. I would dare to say there is no system/framework available today that makes it easier to visualize result from sensors out there and also to interact with them in such an easy way. A few lines of code is all that is needed. Some demos are here (User:admin Password: secret).

But we (the VSCP world) don’t have users that have the skill or interest to take this further.  That users would do that  was my hope when I once set this up. That others, interested in user interface design, would take over the job. Needed because I am and will always be a low end developer doing drivers and other nitty gritty low end things. You need other skills for UX design then I have. It is a wast if I try to do this. Well it was a waste me doing the Javascript libraries. But someone had to do it so I did it.

I was disappointed of course.  This could have been great and a lot of fun to. Giving lots of credits to the ones that worked with it. Probably money to.

I have asked for help so many times and do so one last time.  So

 

Screenshot from 2016-03-10 10:42:01

 

Well there is plenty of things to do. No need to list them really as it is apparent that most UX components are missing. I will still try to come up with a list in order of importants what I would have liked to see being realized.

1.) Samples, samples, samples and more samples using the Javascript library , the websocket interface and the REST interface. Just to show what is possible and as a tool for others to build upon.

2.) More HTML5 websocket widgets.

3.) I am not a big fan of OpenHAB, “the big elefant”, but one thing I have always liked in it is the user interface component they came up with early.  The demo site is apparently down at the moment but here are some screen shots

openhab-demo-running-496x500

 

 

screenshot_openhab_windows

 

In my world this is typically something defined in an XML file and read by an app. which put up the interface. The XML file can be fetched from a VSCP daemon that is localized through its multicast interface or is pointed out by the user. The XML file can be served by the web server or through the websocket interface stored in a variable.

Inside the XML file there is a hierarchy of pages. Each page consisting of one or several lines.

Each line is a HTML5 element.  Looking at the switch above

Screenshot from 2016-03-10 11:03:15

a line can be single line (others can be multiline or page) and in this case a widget to the left (the lamp), the text in the middle (which also is a widgets, the statebutton to the right. So in this case the text may be static but the lamp widget show the actual dynamic state for a lamp or something and the switch actually do the toggle of that state.

Screenshot from 2016-03-10 11:07:02

A line like this have the same general components but the arrow just bring up a new page.

Screenshot from 2016-03-10 11:08:27

And a line like this has the same components. Here the temperature is shown dynamically but the iconic thermometer to the right could be used to show alarms etc or that could be done in the text.

Not a big thing really to implement on an Android, IPhone or desktop machine but something that takes time and needs a feeling for UI design to be usable.

They have a new version now which is demoed here and which dynamically adopt to the screen size.

4.) I have a quite similar project, Merlin, that is a drag a HTML5  component to a page and thereby adding active UI components to that page. I never get time to finish it as it looks.

floorplan_button_example

Live here (User:admin Password: secret).

 

A typical example shown here with active buttons places on a floor plan of a house.  Right click on the component to set it up. When done, generate the web page.

5.)The MDF (Module Description File) of VSCP defines a module and tells how it can be configured. The MDF nowadays also contains the possibility to set up wizards to help user to do specific setup tasks step by step in a generic way.

As all VSCP modules have information about this MDF in them they all have the ability to tell the world how they work, what they can do and how they should be setup to do just that. Yes gatekeepers prevent everyone from messing around with a module. But that is another issue which we leave out here.

An iBeacon or an EddyStone/physical web capable machine can send out the MDF URL for the world to see. So can a NFC equipped device do when taped.  So a machine that see this can get information that there is a device with certain capabilities available and it can from there open up a UI that  allow the end user to discover the unit’s capabilities and also configure it to do the things it is designed to do. This could be limited to just get information from the node or even status from it or to really go into it and be allowed to edit it’s configuration.

To understand this it is important to know that VSCP with it’s register abstraction model and the MDF allow for it’s  unique one application can configure all functionality.

So with this UX functionality a user of some equipment can set it up in a uniform way. He/she will be comfortable with the setup procedure from other equipment. But it can be used by a service technician to configure/diagnose something when he/she is out on the field. Of course it would also be possible to do this remotely equally good when needed.

A general setup/configure/presentation interface for VSCP  that is.  Target platforms phones/tablets/desktops.

7-9999).  Well they are there to of course. But we take them another day…

Ake Hedman
Maintainer of VSCP

Categories
VSCP

And so suddenly

Screenshot from 2016-02-19 12:07:15

Categories
VSCP

Rewriting big in #VSCP #m2m #IoT #mongoose

power_injector5

Developers, we all use tools. So does VSCP & Friends to of course. Everything else would be stupid. Reuse is the thing in an open source world. Yes in the closed source word to. The two most important tools we use are wxWidgets and Cesanta Mongoose.

The choice of using wxWidgets came about because we wanted everything to work cross platform back then. This was actually a hard choice. Two competing systems where available. QT and wxWidgets. The problem at the time was that QT was not free and open on the Windows platform so in the end the choice to use wxWidgets was on that had to be taken.  Well  I like QT more. But to rewrite everything. A million lines of code. Forget it. In the end it does not matter much anyway.

The other tool is the Mongoose library. This is a communication library (and a webserver) that I strongly can recommend. Well it is actually not a library. It uses amalgamation.  So instead of linking in a library you add the project files. Convenient and easy. So the mos of the tcp/ip stuff we use are built on this tool.

Well it is great, works great, but is quite badly documented. Have few examples. Furthermore it was previously divided into mongoose and net_skeleton.  This was how it was when I discovered it. But when I released the code net_skeleton was transformed into fossa and changed in many, many, many. many ways so parts I rewrote for fossa leaving the parts that used mongoose as they had a dependency  on net_skeleton and then the guys over at Cesenta decided to move everything from fossa back in mongoose… Yepp you all understand. It’s was a mess.

So now if I want to port to the new mongoose code it’s  a hard work to do. It has been changed a lot. It’s a major project I can tell you. A MAJOR PROJECT!

Well, even if this is really bad practice from a tool maker, REALLY BAD, this is good tools. So one only can hope that this moving around has come to a stop now and they will say as good usable tools.

So this major rewrite is what I do now. fossa and  net_skeleton is going away and mongoose is coming in. A change that affect almost every file in many, many places, Changed calls, changed parameters, changed functionality really put me to the test.  Yes this will take some time to complete. And I will probably still recommend the tools. They are great. And maybe the changes they did was needed in the end. At least I think things are a bit more easy to understand now than it was before.

So now you know why it’s so quite form our corner… It’s called hard work…

 

Categories
HowTo's VSCP

Using the #VSCP #MQTT driver Part 2 #IoT #m2m

VSCP MQTT Driver Simplify mode

Part 1

Screenshot from 2016-02-14 22:00:26

Make measurement event come out as a plain number over the MQTT channel.

Sometimes, and especially if your device is a low end device, it can be nice to publish measurement events from the VSCP daemon to it as plain numbers. You can do this with the simplify feature.

First look at the driver  entry in /etc/vscp/dm.xml

<!– Level II MQTT driver –>
<driver enable=”true” >
     <name>MQTT2</name>
     <path>/usr/local/lib/vscpl2drv_mqtt.so</path>
    <config>session2;publish;vscp-pub;192.168.1.9:1883
    <guid>00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00</guid>
</driver>

We see that this driver defines  a publishing MQTT channel with

  • topic = vscp_pub
  • session id = session2
  • broker is at  address = 192.168.1.9
  • broker use standard MQTT port  = 1823

Nothing strange here. Normally VSCP events would be available if you subscribe to the topic vscp_pub on this broker. On the console typically like

mosquitto_sub -h 192.168.1.9 -v -t ‘vscp-pub’

This is just the same as we described above. But now lets define a simplify variable like (/srv/vscp/variables.xml or in the web interface of the VSCP daemon).

<variable type=”string”>
     <name>MQTT2_SIMPLIFY</name>
     <note>Feed temperature measurements to “the thing”</note>
     <value>1040,6,0,1,0,0</value>
</variable>

When the MQTT driver loads it looks fore variables named like it’s name + “-” + keyword and configure itself from the variables. This configuration actually overrides the configuration done in the diver configuration string.

It also add extra configuration possibilities and SIMPLIFY is on of them so

MQTT2_SIMPLIFY

is a variable with name “SIMPLIFY” that is destined for the driver with name “MQTT2”.

The content of  a simplify variable specify the event we want to send on the MQTT channel as a plain number.  In our case we have

1040,6,0,1,0,0

which boils down to

  1. 1040 – This is the VSCP class. In this case CLASS2.MEASUREMENT_STR
  2. 6 – This is the VSCP Type and six is “temperature”.
  3. 0 – This is the sensor index. Only events with this sensor index will be published.
  4. 0  – This is the zone. Only events with this vallue will be published.
  5. 0  – This is the sub zone. Only events with this value will be published.
  6. 0 – This is the unit. Only events with this value will be published.

You can use CLASS1_MEASUREMENT and CLASS2_MEASUREMENT_FLOAT also if you which for this functionality and the format for them are here.

So now when you restart the VSCP daemon CLASS2.MEASUREMENT_STR events will come out as plain numbers on the MQTT channel. We can test this in the TCP/IP interface by sending

send 0,1040,6,0,0,-,0,0,0,1,0×35,0x35,0x35,0x2e,0x30,0x32

which will come out as

vscp-pub 555.02

if you subscribed using mosquitto_sub -h 192.168.1.9 -v -t ‘vscp-pub’

Send plain numbers over a MQTT channel and have them automatically translated into proper VSCP events.

You may just want to send plain numbers instead of a full VSCP event to the VSCP framework.  Typically this can be some stupid device that just is capable of sending out plain numbers. The simplicity mode can make these kind of devices a bit more useful also. YES you want at least the unt of your measurement to come along with your data in a standardized way.

To use this feature we us the first driver entry we specified

<!– Level II MQTT Driver –>
    <driver enable=”true” > 
    <name>MQTT1</name>
    <path>/usr/local/lib/vscpl2drv_mqtt.so</path>
    <config>session1;subscribe;vscp-sub;192.168.1.9:1883
    <guid>00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00</guid>
</driver>

Here we subscribe to a MQTT channel vscp_sub on the broker located at 192.168.1.9 on port 1883. We name the session “session1”.  Remember that all drivers MUST have a unique session name.

So things publishe form other devices on topic vscp_sub will be received by the driver and normally this is VSCP events on the standard string form

send head,class,type,obid,time-stamp,GUID,data1,data2,data3…

you can read mode here about this format used n the TCP/IP interface of the VSCP daemon among other places.

But now we want to send just a number and get a VSCP events. So for this we use the simplify feature again.

We start out just as above by specifying the SIMPLIFY variable.  As you see we now referee to the first driver entry MQTT1

<variable type=”string”>
   <name>MQTT1_SIMPLIFY</name>
   <note>Allow for sending plain numbers </note>
   <value>1060,6,0,1,0,0</value>
</variable>

Only 1060 is different than above, We could have used 1040 here alos to get CLASS2.MEASUREMENT_STR event but to be not to repetitive we use CLASS2.MEASUREMENT_FLOAT for this example.

And using VSCP Works to check the incoming event gives the expected result

Screenshot from 2016-02-14 22:32:04

 

If we set  CLASS2.MEASUREMENT_STR (1040) instead we got the same end result

Screenshot from 2016-02-14 22:32:04

And you can use one of the other measurement types also of course. Read the docs.

Well that was it for this time.  The full driver info is here.