Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Bad Sector

Pages: [1]
1
Tips & Tricks / Re: AdvancedHMI on a Raspberry Pi
« on: December 25, 2024, 08:54:29 PM »
Afternoon.  I have my Advanced HMI project working on my raspberry Pi using Mono, but I have a question.  On my project,  I have modbus data coming from an Arduino Mega 2560 to the to the raspberry Pi via a single USB cable and using the ModbusRTUCom library to pass the data (/dev/ttyACM0).  I have two displays, but each has a different application on the screen and shares several registers from the modbus data.  Can both programs use the same ModbusRTUCom library to use on the different displays?
Try using this post to make it into E/IP Tunnel.  I have a few apps i'm using Micro820 w/ Modbus to 8port I/O Master that I'll test this out over.
https://www.advancedhmi.com/forum/index.php?topic=899.msg19138#new

Bad Sector

2
Tips & Tricks / Re: Raspberry Pi as Serial to Ethernet adapter
« on: December 25, 2024, 07:20:50 PM »
this is the site I used to understand the serial/tcp: https://sourceforge.net/projects/com0com/

3
Tips & Tricks / Re: Raspberry Pi as Serial to Ethernet adapter
« on: December 25, 2024, 06:40:23 PM »
I was able to get this working per instruction above.  I extended it for my use by using hub4com to assign ip addresses to all 4 ports and be avaliable via Ethernet and/or its own Wifi DHCP.
This was useful when I wanted to always via KEP and walk around with my tablet and connect to the Pi to connect "direct" to each machine on it. (IT issues - but now I don't need tablet to make certain changes I couldn't thru shop network).
I will post a detail instruction on this soon - after I verify or fix any issues w/ using Raspberry Debain 12.
But Vitor post worked initially!  Thanks for getting me learning ;)

4
Tips & Tricks / Re: AdvancedHMI on a Raspberry Pi
« on: December 25, 2024, 05:39:04 PM »
I wanted to get this working on the Raspberry Debain 12 and had issues with mono-vbnc as it is deperciated and they said to use mono-vbc now, but i'm not sure of interaction between Mono/AdvanceHMI/Debain.
But I was able to get this working using the Raspberry Pi OS (32-Bit) version.
I'll add in the extra step I had to take using example below:
sudo su
ln -s /usr/share/keyrings/raspbian-archive-keyring.gpg /etc/apt/trusted.gpg.d/raspbian-archive-keyring.gpg
rm /etc/apt/trusted.gpg
apt-get update
apt-get install mono-complete
apt-get install mono-vbnc

The extra two steps allow using the mono-vbnc in Debain 12 - likely another way to do this but this got me working.  I'm going to include the links I used to help be able to install this headless and reasoning for extra steps. 
Please let me know if need additional information or I've done something completely wrong, please ;)

https://www.tomshardware.com/reviews/raspberry-pi-headless-setup-how-to,6028.html for headless example, they use different OS but the setup example starting at #9 is good.

https://github.com/RPi-Distro/repo/issues/348 This shows my reasoning and how they suggested to fix for using additional code.

The ML1000 example is in the Sample Programs here.

Thanks,
Bad Sector



Here is how to run an AdvancedHMI application on a Raspberry Pi

1) Download the Debian Wheezy image
http://www.raspberrypi.org/downloads/

2) Copy the image to the MicroSD card using Win32DiskImager
3) Install the card and boot up the Pi
4) When it gets to the configuration screen, set it to expand the image and also to boot to a Graphical User Interface
5) Select Finish in the configuration and Reboot
6) Once booted into the GUI, open a Command Prompt
7) Type these series of commands:

sudo su
apt-get update
apt-get install mono-complete
apt-get install mono-vbnc

8 ) Put in a memory stick with an AdvancedHMI application on it
9) In the command prompt, use the "cd" command to browse to the memory stick to the directory /bin/debug
10) mono AdvancedHMI.exe

In a few seconds the application should start.

There are a few things you may run into.

- You cannot use an OPC server because it is not a .NET application
- The MessageDisplayByValue may stop the application because it uses a speech library. There is a work around. Find System.Speech.DLL on your Windows PC and copy the file into the /bin/debug directory

5
Tips & Tricks / Re: Raspberry Pi as Serial to Ethernet adapter
« on: March 06, 2019, 08:28:55 AM »
Thank you!  This will get me going.  Much appreciated.

6
Tips & Tricks / Re: Raspberry Pi as Serial to Ethernet adapter
« on: March 04, 2019, 09:02:06 AM »
Does anyone have the original instructions?  I'm wanting to use the pi zero as ethernet to serial interface for some MicroLogix processors.   But the first post instructions are on a dropbox that the link is no longer valid for.  If anyone can assist, I'd appreciate it.

Thanks,
Bad Sector

7
I'm not understanding how to use the new EthernetIPforCLXComm1.ReadSynchronous.  The release notes say: Added ReadSynchronous to IComComponent and all drivers
ReadSynchronous should now be used in place of the following:
EthernetIPforCLXCom1.AsyncMode=False
value=EthernetIPforCLXCom1.ReadAny("Tag1")

For instance, I am using:
plcvalue = EthernetIPforCLXComm1.ReadAny(plcaddy)

If I try:
plcvalue = EthernetIPForCLXComm1.ReadSynchronous(plcaddy)    ... VS gives an error likely because I have formatting wrong..


how do I change that to use the new ReadSynchronous?  Or do I need to?  Thanks!


Pages: [1]