<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest topics for the forum "Hardware"]]></title>
		<link>http://mango.serotoninsoftware.com/forum/forums/show/8.page</link>
		<description><![CDATA[The newest discussed topics in the forum "Hardware"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Running MANGO in a WRAP Board ALIX 2D embebbed Solution working 100% with Arduino</title>
				<description><![CDATA[ This tuturial is for thoose want to build a small box to run Mango or ScadaBr<br /> Since I was looking for a small pc I remember to use a Alix board that is more cheap than a pc and more compact and try to build a linux debian based system and them install MANGO<br /> In this tuturial I will try to explain the steeps I take to sucssefuly install the debian and then the Mango. My choise of using mango was because I can't get ScadaBr running because of the installer script so I turn to Mango<br /> <br /> In my configuration I will use:<br /> <br /> An Arduino Duemilanove<br /> an Alix Board 2D from PC Engines GmbH, can be bought at <a class="snap_shots" href="http://pcengines.ch/alix.htm" target="_blank" rel="nofollow">http://pcengines.ch/alix.htm</a><br /> 1 CF card 4Gb (for debian instalation and MANGO)<br /> <br /> <br /> After a seach on google I found a website with some instrutions that help me to get all up and running<br /> You can see all the instrutions where <a class="snap_shots" href="http://www.gooze.eu/howto/debian-installation-on-alix-board-howto/setting-time" target="_blank" rel="nofollow">http://www.gooze.eu/howto/debian-installation-on-alix-board-howto/setting-time</a> but for now I will try to resume some of then.<br /> In case you have some dificult I sugest you to read the instrutions on the above link.<br /> You will need a pc with a CFcard reader to start the instalation on the CFcard, in my case I'm using a Linux Mint distro but any other will do <br /> I will assume you have some linux experience and soo I will not go to deep<br /> Soo insert the CFcard on your reader.You will need to know waht was the /dev/sdXXX your system give to the CFcard. There are diferent ways to see this, I will describe 2 ways:<br /> before insert the card open a console and type: "tail -f /var/log/messages" then insert the CFcard, you will see the text will flick and there you can read the /dev/sdXX that was assigned to your card<br /> after that just hit CTRL+C to exit from the tail.Now you know the id of your device<br /> Another way is just use the gparted wich is a disk tool to manage partitions on linux with a nice GUI.there you can also see the "/dev" id of your card<br /> <br /> we will use the "dd" command to copy an image to CFcard with a prebuild of a debian instalation<br /> open again a console in case you close the last one and download the image <br /> $wget <a class="snap_shots" href="http://download.gooze.eu/embedded/debian/images/debian.tar.gz" target="_blank" rel="nofollow">http://download.gooze.eu/embedded/debian/images/debian.tar.gz</a><br /> then extact the tar using:<br /> $tar -xvf debian.tar.gz<br /> After that we can transfer the image to the CFcard using:<br /> $ dd if=debian.img of=/dev/sd[b,c,d]<br /> double check the command because if you make some mustake you can delete or harddrive!!!<br /> it will take a while so just wait until you get the prompt again with the details of the duration and speed of the copy<br /> After that remove the card and insert the CFcard on the alix board.Before you power it you will need a Serial cable to connect the alix board to your computer <br /> You will also need a hiperterminal client, I had used gtkterm but you can use "screen" ou putty, its up to you.<br /> The baud is 38400N,8,1 <br /> Open the port with with configuration and the power the alix board.<br /> You should start to see some lines of a test memory wich is normal on the alix board and the wait until you see the debian instalation menu.This can take a while , do not remove the power, if soo perhaps you will need to reinstall the image of the last step<br /> Follow the setup as normal(if you have trouble read the instrutions on the link I give above)<br /> After the instalation is complete install ssh for remote acess.I will assume you already have internet conection on the alix <br /> $apt-get install openssh-server<br /> If you want to install mysql to support the Mango databases you can just install it by using:<br /> $apt-get install mysql-server<br /> <br /> Mango needs to have JAVA installed <br /> In my case using "apt-get install sun-java6-jdk" it give me a message no package found then I had need to add a source to a new repository<br /> use vi or nano and add the folowing line to /etc/apt/sources.list "deb <a class="snap_shots" href="http://archive.canonical.com/" target="_blank" rel="nofollow">http://archive.canonical.com/</a> lucid partner" without the " of course<br /> Save it and update all sources using "apt-get update"<br /> after that you should be able to install java then type "apt-get install sun-java6-jdk"<br /> Then install a ntp package to automaticaly update the time of your system<br /> $apt-get install ntpdate<br /> $ntpdate pt.pool.ntp.org<br /> <br /> In my case I'm using a Portuguese NTP server, adapt to your needs<br /> after that confirm the date and time using <br /> $date<br /> It must display the right time and date now.<br /> Now that we have all the requirements lets move to the MANGO instalation.<br /> Visit the link <a class="snap_shots" href="http://mango.serotoninsoftware.com/download.jsp" target="_blank" rel="nofollow">http://mango.serotoninsoftware.com/download.jsp</a> <br /> Here we can find the parts we need <br /> Open a console again and choose a location to store the instalation.I had installed on /usr<br /> $cd /usr/local<br /> Lets Dowload the TOMCAT:<br /> $wget <a class="snap_shots" href="http://mango.serotoninsoftware.com/downloads/apache-tomcat-6.0.20.tar.gz" target="_blank" rel="nofollow">http://mango.serotoninsoftware.com/downloads/apache-tomcat-6.0.20.tar.gz</a><br /> Extract it:<br /> tar -xvf apache-tomcat-6.0.20.tar.gz<br /> Rename the folder to tomcat just to be more simple<br /> $ mv -R apache-tomcat-6.0.20 tomcat<br /> $ cd tomcat/bin<br /> <br /> For test the apachTomCat lets fireup it and see if it runs.To do this just do:<br /> $ ./startup.sh <br /> This will start the Service and now he would be able to open the welcome page of tomcat opening <a class="snap_shots" href="http://ip_of_box:8080" target="_blank" rel="nofollow">http://ip_of_box:8080</a><br /> If you see the page you are ok, close it and lets stop it for now using :<br /> $ ./shutdown.sh<br /> Now we need to remove some folders inside the webapps/ROOT folder to store the MANGO<br /> to do this use:<br /> $cd /usr/local/tomcat/webapps/ROOT<br /> Remove all folders using:<br /> $rm -R <br /> This will remove all folders and files on this location, we need to remove it because this is the root dir of tomcat, this are the files and folder displayed when you start Tomcat, since we want just the MANGO lets now dowload it for this directory and extact it were<br /> Assuming you stil are in the same folder ("/usr/local/tomcat/webapps/ROOT") download the MANGO <br /> $wget <a class="snap_shots" href="http://mango.serotoninsoftware.com/downloads/mango-1.13.0.tar.gz" target="_blank" rel="nofollow">http://mango.serotoninsoftware.com/downloads/mango-1.13.0.tar.gz</a><br /> Extact it :<br /> $tar -xvf mango-1.13.0.tar.gz<br /> To confirm all files and folder are now here just do an "ls -al" to list the directory:<br /> $ls -al<br /> you should see something like this:<br /> <br /> root@supervisao:/usr/local/tomcat/webapps/ROOT# ls -al<br /> total 28532<br /> drwxr-xr-x 10 root root     4096 Jan  1  2000 .<br /> drwxr-xr-x  7 root root     4096 May 14  2009 ..<br /> drwxr-xr-x 12 root root     4096 Dec 19 15:52 WEB-INF<br /> drwxr-xr-x  3 root root     4096 Dec 19 15:52 audio<br /> drwxr-xr-x  3 root root     4096 Jan  1  2000 backup<br /> -rw-r--r--  1 root root     6619 Mar  6  2011 customViewExample.jsp<br /> drwxr-xr-x  2 root root     4096 Dec 19 15:52 exception<br /> drwxr-xr-x 18 root root     4096 Dec 18 23:34 graphics<br /> drwxr-xr-x  3 root root     4096 Dec 19 15:52 images<br /> -rw-r--r--  1 root root     1712 Mar  6  2011 index.jsp<br /> -rw-r--r--  1 root root 29117044 Dec 19 15:52 mango-1.13.0.zip<br /> drwxr-xr-x  3 root root     4096 Dec 19 15:52 resources<br /> -rw-r--r--  1 root root     2436 Mar  6  2011 soundmanager2.swf<br /> -rw-r--r--  1 root root     8119 Mar  6  2011 soundmanager2_flash9.swf<br /> drwxr-xr-x  2 root root     4096 Jan 19 12:15 uploads<br /> <br /> If this is your output to you are almost finish the instalation.<br /> In my case In using an arduino to comunicate to outside world via USB port.In this case I need to include a file on java dir to be able to comunicate with serial ports ("dev/ttyUSB0 in my case") 	<br /> If this is also your case lets just download the librxtxSerial.so and import it:<br /> $wget <a class="snap_shots" href="http://mango.serotoninsoftware.com/downloads/librxtxSerial.so" target="_blank" rel="nofollow">http://mango.serotoninsoftware.com/downloads/librxtxSerial.so</a><br /> Now we need to save in &lt;jdk1.6-home&gt;/jre/lib/i386<br /> To find this location on your instalation just use:<br /> $updatedb<br /> $locate /jre/lib/i386<br /> This will display the path of you java, now lets move the librxtxSerial.so to that location.Im my case it was:<br /> $mv librxtxSerial.so /usr/lib/jvm/java-6-sun-1.6.0.26/jre/lib/i386/<br /> <br /> It's everything done<br /> Lets start the Tomcat and test it on your alix Board:)<br /> $cd /usr/local/tomcat/bin<br /> $./startup.sh<br /> <br /> In the first run the system will build the MANGO database soo it can take a while until the page loads.<br /> It could take about 40 secounds soo be patient<br /> When the page loads just enter the default login :admin admin and your MANGO small box is ready!!<br /> <br /> I hope this tuturial help those you want to test it on a alix board.<br /> I not a linux expert then it is possible to some steps could be wrong and could be a better way to do it.<br /> This manual can be modified to get better and sugestions are acepted<br /> <br /> email:hugo.santos@i9box.net<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/1035/4399.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/1035/4399.page</link>
				<pubDate><![CDATA[Fri, 20 Jan 2012 10:29:57]]> GMT</pubDate>
				<author><![CDATA[ hugo007]]></author>
			</item>
			<item>
				<title>ICPcon</title>
				<description><![CDATA[ Hi. I am very new to tomcat, mango, and scada systems in general. Anyway I succeeded in installing the system on my controll pc. User interface works and now I would like to interface some devices.<br /> <br /> On our local water supply we have some ICP DAS devices (from Taiwan) we would like to interface to a Mango system. Problem is I dont know what protocol these boxes are using.<br /> <br /> It is a kind of simple rs485 bus and I can communicate with the devices using minicom. Below is scan from a sample page from the manual. I hope someone recognises it and maybee tell me how to interface these devices to Mango. <br /> <br /> [img]http://klaus.vink-slott.dk/images/icpcon.jpg[/img]<br /> <br /> Thanks!]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/723/3424.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/723/3424.page</link>
				<pubDate><![CDATA[Sat, 15 Jan 2011 12:50:44]]> GMT</pubDate>
				<author><![CDATA[ Mr-Manor]]></author>
			</item>
			<item>
				<title>Wago 750-841 Modbus Fieldbus Coupler</title>
				<description><![CDATA[ Hey guys and gals nice to find this program.  I have a question.  I have a Wago 750-841 Modbus TCP Controller which I am able to talk to with a Java program I and a friend wrote using the Jmod library.  I tried your data source setup and when do a node scan I get 1 thru 240 nodes?!  Correct me if I am wrong but if I have one modbus coupler at one ip should there not be only one node?  What do you think?  Also I have a Mitsubishi City Line System up and configured on Mango just fine.  Bacnet seems to be fine.  <br /> <br /> Let me know,<br /> <br /> dk]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/702/3342.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/702/3342.page</link>
				<pubDate><![CDATA[Tue, 21 Dec 2010 14:43:03]]> GMT</pubDate>
				<author><![CDATA[ dkudos]]></author>
			</item>
			<item>
				<title>Another Arduino/Modbus question</title>
				<description><![CDATA[ I am wondering how to proceed with bringing back more than one variable from the arduino.<br /> <br /> I have followed the tutorial from JointTech ([url]http://mango.serotoninsoftware.com/forum/posts/list/567.page[/url]) and it works great, however when I try to add more inputs things start to fall apart. <br /> <br /> Does anybody have any pointers or better yet an example of a sketch outlining how to add in extra points?<br /> <br /> Thanks,]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/678/3260.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/678/3260.page</link>
				<pubDate><![CDATA[Mon, 6 Dec 2010 17:05:32]]> GMT</pubDate>
				<author><![CDATA[ JanitorPants]]></author>
			</item>
			<item>
				<title>BACnet/IP temp sensor?</title>
				<description><![CDATA[ I am looking for a room temperature sensor (RTD) that has a transmitter with 10/100baseT ethernet jack, TCP/IP stack, and BACnet stack.<br /> <br /> It is going into a telecom closet, so ethernet access is assured.  The control system front end is existing, don't need a web interface nor standalone operation.  I would prefer no wireless.<br /> <br /> This will likely be costly for a single sensor, but cheaper than a router, control module, and analog sensor.  <br /> <br /> Help & thanks!<br /> <br /> Jim A.<br /> Penn State Univ.]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/657/3157.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/657/3157.page</link>
				<pubDate><![CDATA[Wed, 17 Nov 2010 14:33:22]]> GMT</pubDate>
				<author><![CDATA[ jalles]]></author>
			</item>
			<item>
				<title>Labjack</title>
				<description><![CDATA[ There was some discussion some time ago about using Labjack with Mango (someone wanted to monitor and control a remote cabin). At that time it was not possible due propriatary protocol. Labjack is now Modbus capable and has been tested ( if briefly) with Mango.<br /> <br /> See here: <a class="snap_shots" href="http://labjack.com/support/ljsocket" target="_blank" rel="nofollow">http://labjack.com/support/ljsocket</a> about halfway down the page.<br /> <br /> This may open up a lot more possibilites for some folks.<br /> <br /> Mike]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/655/3154.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/655/3154.page</link>
				<pubDate><![CDATA[Tue, 16 Nov 2010 16:39:32]]> GMT</pubDate>
				<author><![CDATA[ mhradom]]></author>
			</item>
			<item>
				<title>Addition for two modbus address</title>
				<description><![CDATA[ Hi,<br /> <br /> I have a Modbus device which sense temperature. It holds main part in address location 10 and the decimal part in address location 11 (eg:. temp is 25.5 ---&gt; [color=red] 25 is in add 10[/color] and [color=blue]0.5 is in add 11[/color]). can you please tell me how to join these two separate numbers together in Mango.  I am very new to Mango but I wonder seeing the power of the software.<br /> <br /> Cheers<br /> <br /> Dissa ]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/623/2997.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/623/2997.page</link>
				<pubDate><![CDATA[Tue, 2 Nov 2010 03:25:12]]> GMT</pubDate>
				<author><![CDATA[ pradeepdissa]]></author>
			</item>
			<item>
				<title>Ascii through TCP</title>
				<description><![CDATA[ Hello! I've got a problem, that I've described in modbus4j help forum. Here is the link: <a class="snap_shots" href="https://sourceforge.net/projects/modbus4j/forums/forum/810600/topic/3841078/index/page/1" target="_blank" rel="nofollow">https://sourceforge.net/projects/modbus4j/forums/forum/810600/topic/3841078/index/page/1</a><br /> Have anybody had such an experience?]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/523/2485.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/523/2485.page</link>
				<pubDate><![CDATA[Fri, 10 Sep 2010 14:12:44]]> GMT</pubDate>
				<author><![CDATA[ IronCaterpillar]]></author>
			</item>
			<item>
				<title>Campbell Scientific...</title>
				<description><![CDATA[ Has anyone use Mango to interface with a Campbell Scientific datalogger, such as the CR1000?  <a class="snap_shots" href="http://www.campbellsci.com/cr1000" target="_blank" rel="nofollow">http://www.campbellsci.com/cr1000</a><br /> <br /> Any thoughts on setting something like this up, where the mapping would need to be made between Mango configuration and the datalogger configuration?<br /> <br /> Kit]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/520/2475.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/520/2475.page</link>
				<pubDate><![CDATA[Wed, 8 Sep 2010 09:57:56]]> GMT</pubDate>
				<author><![CDATA[ kitplummer]]></author>
			</item>
			<item>
				<title>GSM/GPRS hardware</title>
				<description><![CDATA[ Dear all,<br /> <br /> does anybody know which GSM/GPRS hardware device interfaces with Mango through GSM/GPRS? Ideally that piece of hardware would have a data logger and be battery-driven. It would log the sensors signals 0-20mA, 4-20mA and/or binary input.<br /> <br /> Any hints? Ideas? Experiences?<br /> <br /> Best wishes<br /> <br /> Sebastian]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/504/2382.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/504/2382.page</link>
				<pubDate><![CDATA[Mon, 23 Aug 2010 02:02:16]]> GMT</pubDate>
				<author><![CDATA[ schoeller]]></author>
			</item>
			<item>
				<title>Trick to get support for all 1 wire devices </title>
				<description><![CDATA[ Now when there is the new process event handler (many thanks for a good feature). I made some experiments with it and came up with a way how to get from owfs data to mango. (see www.owfs.org) <br /> <br /> I have been using scripts to feed data from owfs to mysql and mango is then reading the data base with SQL data source. This works but it is not too easy to setup for beginners. <br /> <br /> Here comes an easier way using HTTP receiver datasource. It works quite twisted way with a simple script making calls with wget to the receiver. No mysql needed in between.<br /> <br /> Option A<br /> I made a virtual data source and a point with "alternate" change type. Then defined event detector to create events on change. So this point is periodically making events.  The process handler is calling /var/lib/tomcat6/webapps/ROOT/test.sh <br /> <br /> I have made a text file named test.sh into the ROOT folder and which has the following content<br /> <br />  wget -q "http://127.0.0.1:8080/httpds?test1=`cat /mnt/owfs/some_sensor/temperature`"<br /> <br /> This method can be used also for witing to owfs (sending commands to 1 wire devices)<br /> <br /> option B<br /> <br /> make the script running all the time(launched in system start) and make a loop structure with sleep. This is not under control of mango but might be even easier. Something like this (not tested)<br /> <br /> [code] <br /> <br /> #!/bin/bash<br /> <br /> while true; do<br /> <br /> wget -q "http://127.0.0.1:8080/httpds?test1=`cat /mnt/owfs/some_sensor/temperature`"<br /> <br /> wget -q "http://127.0.0.1:8080/httpds?test2=`cat /mnt/owfs/ampther_sensor/temperature`"<br /> <br /> sleep 30<br /> <br /> done<br /> <br /> <br /> <br /> [/code]<br /> <br /> Some notes. <br /> <br /> - the instruction works for linux(ubuntu). For windows it should be possible similar way but using .bat file. There is wget also for Windows, but some research needed.<br /> <br /> - The owfs needs to have  "--allow_other" to make the ow filesystem readable for the tomcat process.<br /> <br /> - the .sh file properties needs to be set as executable and in option A have permission for the tomcat user(chmod 777, should do the trick)<br /> <br /> <br /> <br /> ]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/478/2273.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/478/2273.page</link>
				<pubDate><![CDATA[Sat, 31 Jul 2010 17:48:39]]> GMT</pubDate>
				<author><![CDATA[ Jokke]]></author>
			</item>
			<item>
				<title>carel modbus supported</title>
				<description><![CDATA[ Carel PCO3 is supported by mangoM2M 1.9.0<br /> <br /> [url]http://www.carel.com/carelcom/web/eng/catalogo/gamma_dett.jsp?id_gamma=1&id_tipologiaProdotti=1&id_mercato=1[/url]<br /> hardware: PCO3<br /> serial card: PCOS004850<br /> serial to usb : CVSTDUMOR0 with carel drivers<br /> <br /> BIOS:5.09<br /> <br /> PCO3 software used is custom made in 1tool<br /> <br /> Regards<br /> bryan M]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/462/2194.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/462/2194.page</link>
				<pubDate><![CDATA[Wed, 21 Jul 2010 06:15:21]]> GMT</pubDate>
				<author><![CDATA[ bpm]]></author>
			</item>
			<item>
				<title>embedded platform to run mango on - what ideas do people have</title>
				<description><![CDATA[ I have been thinking of running mango on a dedicated small fanless box so that it can sit out of the way under the stairs and then use web access to control/access it.<br /> <br /> What examples of h.w do people have for running this on?<br /> <br /> My basic thoughts would be a small ATOM based box running Ubuntu server and tomcat. Have it as a fanless device - so its quiet - and use flash type storage device so again there is no moving parts<br /> <br /> any ideas or suggestions welcome <br /> <br /> (I am also on a budget and hope I can find somthing sub $200 or so) <br /> <br /> Francis ]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/416/2002.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/416/2002.page</link>
				<pubDate><![CDATA[Thu, 10 Jun 2010 00:14:01]]> GMT</pubDate>
				<author><![CDATA[ fclauson]]></author>
			</item>
			<item>
				<title>Nibe Fighter 1130 with RCU 11</title>
				<description><![CDATA[ Hi!<br /> <br /> I have just baught myself a ground heater with an attached RCU 11. I'm a total novice on modbus TCP to make that clear.<br /> <br /> What I am looking for is a simple way to pick up values from the heater. In my knowledge they should be in holding registers. (Accordning to <a class="snap_shots" href="http://www.nibe.se/Pages/42625/RCU_Parameterlista_F1135_1235.pdf" target="_blank" rel="nofollow">http://www.nibe.se/Pages/42625/RCU_Parameterlista_F1135_1235.pdf</a> (In swedish, but in tables)<br /> <br /> I have tried to configured mango, but when i enable the modbus IP in databases I get the following errors..<br /> [quote]<br /> ERROR 2010-03-29 21:36:33,593 (org.quartz.core.JobRunShell.run:211) - Job com.serotonin.mango.rt.dataSource.PollingDataSource.PollingDataSource-1 threw an unhan<br /> dled Exception:<br /> java.lang.AbstractMethodError: com.serotonin.modbus4j.ip.IpMessageRequest.expectsResponse()Z<br />         at com.serotonin.io.messaging.SenderConnection.send(SenderConnection.jav<br /> a:76)<br />         at com.serotonin.io.messaging.SenderConnection.send(SenderConnection.jav<br /> a:106)<br />         at com.serotonin.modbus4j.ip.tcp.TcpMaster.send(TcpMaster.java:76)<br />         at com.serotonin.modbus4j.ModbusMaster.sendFunctionGroup(ModbusMaster.ja<br /> va:329)<br />         at com.serotonin.modbus4j.ModbusMaster.send(ModbusMaster.java:272)<br />         at com.serotonin.mango.rt.dataSource.modbus.ModbusDataSource.doPoll(Modb<br /> usDataSource.java:83)<br />         at com.serotonin.mango.rt.dataSource.PollingDataSource.scheduleTimeout(P<br /> ollingDataSource.java:79)<br />         at com.serotonin.mango.util.TimeoutJob.execute(TimeoutJob.java:48)<br />         at org.quartz.core.JobRunShell.run(JobRunShell.java:202)<br />         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.j<br /> ava:525)<br /> [/quote]<br /> <br /> My configuration is<br /> Transport type: TCP<br /> Host: (Entered the IP adress)<br /> Port: 502<br /> <br /> I added one point.<br /> Slave ID: 1<br /> Register range: Holdning register<br /> Modbus data type: 2 byte signed integer<br /> Offset: 2 (Wich should be "Produktkod" or "Varmvattentemperatur (mantelgivare)" accourdning to Nibe<br /> Settable: unchecked<br /> Additive: 0<br /> <br /> I guess it is something very obvious.<br /> I have tried to make contact with another application that is using modbus and I get some results, so there is no network problem.<br /> <br /> Regards: Jon - Sweden]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/357/1706.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/357/1706.page</link>
				<pubDate><![CDATA[Mon, 29 Mar 2010 16:05:42]]> GMT</pubDate>
				<author><![CDATA[ bamsejon]]></author>
			</item>
			<item>
				<title>puls for kw</title>
				<description><![CDATA[ I have a heat meter and for each KW of measured heat there is 1 pulse.<br /> The puls is contact.<br /> <br /> I want to have the pulse into Mango, so i can see the kw in a graph.<br /> <br /> i have a 1-wire pulsecounter from hobbyboards, but mango doesn't support that.<br /> <br /> any idea's<br /> <br /> <br /> regards<br /> sprokkie]]></description>
				<guid isPermaLink="true">http://mango.serotoninsoftware.com/forum/posts/preList/301/1374.page</guid>
				<link>http://mango.serotoninsoftware.com/forum/posts/preList/301/1374.page</link>
				<pubDate><![CDATA[Wed, 10 Feb 2010 16:21:04]]> GMT</pubDate>
				<author><![CDATA[ sprokkie]]></author>
			</item>
	</channel>
</rss>
