Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
videofeedback committed Dec 8, 2021
1 parent c4ee6f1 commit b87b140
Show file tree
Hide file tree
Showing 29 changed files with 112 additions and 214 deletions.
8 changes: 5 additions & 3 deletions SerialCOM/INSTRUCTIONS-PLUGIN.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

BLUEPRINT FOR UNREAL ENGINE (4.25/4.26/4.27/*5.0EA)
-------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------

#1 Select the Zipfile for your correct Engine:
- SERIALCOMUE425/SERIALCOM.zip (Unreal Engine 4.25)
Expand All @@ -16,15 +16,17 @@ BLUEPRINT FOR UNREAL ENGINE (4.25/4.26/4.27/*5.0EA)
----------------->DerivedDataCache
----------------->Intermidiate
----------------->Plugins_
|------>SERIALCOM* (The name of the folder should be "SERIALCOM")
|------>SERIALCOM_UExxx
----------------->Saved
Your_Project.uproject


#3 Activate "Communication Serial Port (Serial COM)" plugin from your plugin list.

#4 Re-Start your Project. You are ready to use the plugin!!!

*5.0EA (Unreal Engine 5 is using the same binary as 4.27, but it will work. A warning message will show up telling you that the plugin is for 4.27, accept and continue)



Enjoy it!

Expand Down
11 changes: 9 additions & 2 deletions SerialCOM/RELEASE_3-0-0.txt → SerialCOM/RELEASE_v3.0.0.5.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@


"Serial COM" v3.0.0 (Beta) RELEASE NOTES
----------------------------------------------------------------------------------------------------
"Serial COM" v3.0.0.05 (Beta) RELEASE NOTES
--------------------------------------------------------------

- Small but significant change. Internally changed the function from "USerial" to "USerialCom" to avoid problems if another UE4Duino plugin is running at the same time. This change makes is to avoid any conflict with old functions and corruption of plugins.



"Serial COM" v3.0.0.04 (Beta) RELEASE NOTES
--------------------------------------------------------------
Changes from "UE4Duino" 2.2.5 to "Serial COM" v3.0.0 (Beta)

- The "Serial COM" 3.0.0 Plugin now works nativelley in Unreal Engine 4.27/4.26/4.24 (PARTIAL SUPPORT WITH UE 5EA*) without having to re-build the project and possibly not be able to re-build for the lack of missing SDK's requirements.
Expand Down
42 changes: 0 additions & 42 deletions SerialCOM/SERIALCOM/INSTRUCTIONS-PLUGIN.txt

This file was deleted.

42 changes: 0 additions & 42 deletions SerialCOM/SERIALCOM/SERIALCOMUE425/INSTRUCTIONS-PLUGIN.txt

This file was deleted.

42 changes: 0 additions & 42 deletions SerialCOM/SERIALCOM/SERIALCOMUE427/INSTRUCTIONS-PLUGIN.txt

This file was deleted.

42 changes: 0 additions & 42 deletions SerialCOM/SERIALCOM/SERIALCOMUE5EA/INSTRUCTIONS.txt

This file was deleted.

Binary file not shown.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
44 changes: 44 additions & 0 deletions SerialCOM/SerialComPlugin/BLUEPRINTS/INSTRUCTIONS.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

BLUEPRINT FOR UNREAL ENGINE (4.25/4.26/4.27/*5.0EA)
-------------------------------------------------------------------------------------------------

#1 Inside this folder "BLUEPRINTS", there is the same blueprint example for each different UE version.

#2 Drag and Drop this file "BP_SerialCom_UExx.uasset" into your project.
- BP_SerialCom_UE425.uasset for Unreal Engine 4.25
- BP_SerialCom_UE426.uasset for Unreal Engine 4.26
- BP_SerialCom_UE427.uasset for Unreal Engine 4.27
- BP_SerialCom_UE50EA.uasset for Unreal Engine 5.0EA*


#3 Drag and Drop ""BP_Serial_UEXxx" blueprint inside your Level.

#4 Inside the BP_Serial_UExx, change the "Port" number to your correspondent port in your micro-controller or Serial Communication Application.

#5 Connect your Arduino or any other Serial Communication device you your computer.

#6 If you see "PORT IS INITIALIZED!" on your screen, that is a confirmation that the port is connected to a Serial Port.


#7 Once you confirm your Com port, you are ready to test the blueprint.
- Press the "SPACE BAR" to print a string on the serial port and send another message to the UE screen.
- Press the letter "Q" to close the Serial Port.
- Press the letter "Z" to reconnect to the Serial Port.

Enjoy it!


https://github.com/videofeedback/Unreal-Engine-Plugin-Communication-Serial-Port/

For support and comments,

Discord: https://discord.ramiroslab.com

Github: https://github.reamiroslab.com

YouTube: https://youtube.ramiroslab.com

Thank you!
Ramiro Montes De Oca,
Ramiro's Lab

Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@
; /README.txt
; /Extras/...
; /Binaries/ThirdParty/*.dll
; /ArduinoTypesExample/ArduinoTypesExample.ino

/BLUEPRINTS/
/INSTRUCTIONS-PLUGIN.txt
/LICENSE.txt
/RELEASE_3-0-0.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

BLUEPRINT FOR UNREAL ENGINE (4.25/4.26/4.27/*5.0EA)
-------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------

#1 Select the Zipfile for your correct Engine:
- SERIALCOMUE425/SERIALCOM.zip (Unreal Engine 4.25)
Expand All @@ -16,15 +16,17 @@ BLUEPRINT FOR UNREAL ENGINE (4.25/4.26/4.27/*5.0EA)
----------------->DerivedDataCache
----------------->Intermidiate
----------------->Plugins_
|------>SERIALCOM* (The name of the folder should be "SERIALCOM")
|------>SERIALCOM_UExxx
----------------->Saved
Your_Project.uproject


#3 Activate "Communication Serial Port (Serial COM)" plugin from your plugin list.

#4 Re-Start your Project. You are ready to use the plugin!!!

*5.0EA (Unreal Engine 5 is using the same binary as 4.27, but it will work. A warning message will show up telling you that the plugin is for 4.27, accept and continue)



Enjoy it!

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@


"Serial COM" v3.0.0 (Beta) RELEASE NOTES
----------------------------------------------------------------------------------------------------
"Serial COM" v3.0.0.05 (Beta) RELEASE NOTES
--------------------------------------------------------------

- Small but significant change. Internally changed the function from "USerial" to "USerialCom" to avoid problems if another UE4Duino plugin is running at the same time. This change makes is to avoid any conflict with old functions and corruption of plugins.



"Serial COM" v3.0.0.04 (Beta) RELEASE NOTES
--------------------------------------------------------------
Changes from "UE4Duino" 2.2.5 to "Serial COM" v3.0.0 (Beta)

- The "Serial COM" 3.0.0 Plugin now works nativelley in Unreal Engine 4.27/4.26/4.24 (PARTIAL SUPPORT WITH UE 5EA*) without having to re-build the project and possibly not be able to re-build for the lack of missing SDK's requirements.
Expand Down
File renamed without changes
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@

"FriendlyName": "Communication Serial Port (Serial COM)",
"Version": 3,
"VersionName": "3.0.0.04",
"VersionName": "3.0.0.05",
"CreatedBy": "Ramiro Montes De Oca",
"CreatedByURL": "https://github.com/videofeedback/RamirosLab",
"DocsURL": "https://github.com/videofeedback/Unreal-Engine-Plugin-Communication-Serial-Port",
"SupportURL": "https://discord.ramiroslab.com/",

"Description": "This library enables Serial communication with Unreal Engine 4/5. Added DTR/RTS flow control. Compatible with Arduino projects and any other device requiring Serial Communication. This project was forked from EU4Duino (v1 Gryzly32/FuzionLabs, v2 Rodrigo Villani).
v3 Serial Com by Ramiro Montes De Oca.",
Serial Com v3 by Ramiro Montes De Oca.",

"Category": "Input",

Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit b87b140

Please sign in to comment.