Ads

Selasa, 30 Oktober 2018

Tutorial for Making Software VBNET Arduino Part 2

welcome to erwinproject, this time the admin will discuss the Tutorial for Making VBNET Arduino Part 2 Software. Here I will explain starting from compiling forms in visual basic to coding to connecting to Arduino using serial. let's look at the tutorial below.
  1. The first step is to build a GUI (graphical user interface) or arrange the components needed.

  2. make sure to know the address (name) of the component.

  3. Add Component (drag and drop) "SerialPort" in toolbox . Now press F7 to write program or code.
    ' CODE BY ERWINPROJECT
    ' thanks theme :
    ' - Valley Theme by Earn
    ' - Mono Theme by Vengfull
    ' - Aether Theme made by AeroRev9
    
    Imports System.IO
    Imports System.IO.Ports
    Imports System.Threading
    Imports System.Diagnostics
    
    Public Class Form1
        Dim receivedData As String = ""
    
        Function ReceiveSerialData() As String
            Dim Incoming As String
            Try
                Incoming = SerialPort1.ReadExisting()
                If Incoming Is Nothing Then
                    Return "nothing" & vbCrLf
                Else
                    Return Incoming
                End If
            Catch ex As TimeoutException
                Return "Error: Serial Port read timed out."
            End Try
    
        End Function
    
        Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
            For i As Integer = 0 To _
             My.Computer.Ports.SerialPortNames.Count - 1
                ComboBox1.Items.Add( _
                My.Computer.Ports.SerialPortNames(i))
            Next
        End Sub
    
        Private Sub AetherButton1_Click(sender As Object, e As EventArgs) Handles AetherButton1.Click
            If ComboBox1.Text = "" Then
                MsgBox("SELECT PORT !")
            ElseIf AetherTextbox1.Text = "" Then
                AetherTextbox1.Text = 9600
            Else
                If SerialPort1.IsOpen Then
                    SerialPort1.Close()
                End If
    
                Try
                    With SerialPort1
                        .PortName = ComboBox1.Text
                        .BaudRate = AetherButton1.Text
                        .ReadBufferSize = 500
                        .Parity = IO.Ports.Parity.None
                        .DataBits = 8
                        .StopBits = IO.Ports.StopBits.One
                        .Handshake = IO.Ports.Handshake.None
                    End With
                    SerialPort1.Open()
                Catch ex As Exception
                    MsgBox(ex.Message)
                End Try
            End If
        End Sub
    
        Private Sub AetherButton2_Click(sender As Object, e As EventArgs) Handles AetherButton2.Click
            Try
                SerialPort1.Close()
                MsgBox("Disconnect from COM")
            Catch ex As Exception
                MsgBox(ex.ToString)
            End Try
        End Sub
    
        Private Sub MonoFlat_Toggle1_ToggledChanged() Handles MonoFlat_Toggle1.ToggledChanged
            If MonoFlat_Toggle1.Toggled = False And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 1 OFF")
    
            ElseIf MonoFlat_Toggle1.Toggled = True And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 1 ON")
            End If
        End Sub
    
        Private Sub MonoFlat_Toggle2_ToggledChanged() Handles MonoFlat_Toggle2.ToggledChanged
            If MonoFlat_Toggle2.Toggled = False And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 2 OFF")
    
            ElseIf MonoFlat_Toggle2.Toggled = True And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 2 ON")
            End If
        End Sub
    
        Private Sub MonoFlat_Toggle3_ToggledChanged() Handles MonoFlat_Toggle3.ToggledChanged
            If MonoFlat_Toggle3.Toggled = False And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 3 OFF")
    
            ElseIf MonoFlat_Toggle3.Toggled = True And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 3 ON")
            End If
        End Sub
    
        Private Sub MonoFlat_Toggle4_ToggledChanged() Handles MonoFlat_Toggle4.ToggledChanged
            If MonoFlat_Toggle4.Toggled = False And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 4 OFF")
    
            ElseIf MonoFlat_Toggle4.Toggled = True And SerialPort1.IsOpen Then
                SerialPort1.Write("LED 4 ON")
            End If
        End Sub
    End Class
    
  4. Press Start to run your aplication .

Jumat, 26 Oktober 2018

Tutorial for Making Software VBNET Arduino Part 1

Hi friend erwinproject, on part 1 this time we will discuss about making software with visual basic net. here I use visual studio, if you use visual basic 2010 the syntax is the same.
the initial step of making sure you have the software below.
Download Visual Studio 2012 [here]
we just started to manufacture the software:
  1. Create a new project file in visual studio, select windows application form and then write the name of the project then press OK.

  2. After that the blank form appears as shown below, then right-click on your project name in the Solution Exploer column, click add, then press Exiting Item, then enter the theme script below.

    [ Download Script Skin ] ( AeroV9, Mono, Valley )
  3. After you download the Script skin above. you enter into the visual studio do step no 2. after that click build on the tab above. then press rebuild as shown below.

  4. Then check in the Toolbox section new components will be ready to use. as shown below
  5. Then select the component that says "Valley Theme". to select the components, namely by drag and drop components.
enough of these part 1 software builds, for part 2 will definitely be updated periodically. thanks .

Kamis, 25 Oktober 2018

Enter AT Command HC-05 Mode with USB TTL


Hi, ErwinProject's friend, we will discuss HC05 this time. This time we will also "Enter AT Command HC-05 Mode with USB TTL".

USB to TTL or often also called USB to UART is one of the many types of converter cables that we often encounter when playing in the field of microcontrollers and micro communications to computers. This USB to TTL cable allows users to make electronic devices such as the microcontroller can communicate with the computer.
Then, what is the AT Command for the HC-05 module? One small example with AT Command on the Bluetooth HC-05 Module is knowing the software version, knowing or renaming the HC-05 module, knowing or changing the HC-05 module password and also knowing or changing the serial module HC-05 communication speed (Baudrate) .


Alat dan Bahan yang dibutuhkan :

  • 1x USB TTL (For example, I use CP2102)
  • 1x Bluetooth HC-05 Module
  • Jumper cable to taste
  • Breadboard (Project Board)
  • Hyper Terminal Software, click DOWNLOAD
  • To see AT Command Set, CLICK HERE



Langkah - Langkah :

1.) cable configuration as shown below.

Cable Configuration Description :

  • VCC on USB TTL is connected to VCC on HC-05
  • VCC on USB TTL is connected to KEY on HC-05
  • GND on USB TTL is connected to GND on HC-05
  • RX on USB TTL is connected to TXD on HC-05
  • TX on USB TTL is connected to RXD on HC-05


2.) After that, plug in your USB TTL on the USB port on the PC.
3.) Then Download and install the Hyperterminal Software on your Windows.
4.) If the Hyperterminal Software has been installed, run the Software, then click File -> Properties


5.) Then open the Device manager from your windows, and see the USB TTL COM Port that is reduced.

6.) When detected, let's switch back to Hyperterminal Software and Set COM Port


7.) After setting COM Port, click Configure, then Set Bits per second to 38400, then OK


8.) When you have set Port, then we click the Settings tab, then click ASCII Setup again.


9.) Checklist on "Send line ends with line feed" and "Echo typed character locally" then click OK


10.) When finished, you can already send AT commands via Hyperterminal.

Thank you for visiting, good luck, hopefully useful.

imagesource : www.boarduino.web.id

Selasa, 23 Oktober 2018

Measure temperature and humidity with Arduino DHT11


Welcome to the erwinproject web, this time the erwinproject admin will share the arduino + DHT 11 code. DHT11 is a Temperature and Humidity sensor, it has a digital signal output which is calibrated with a complex temperature and humidity sensor. This technology ensures high reliability and excellent stability in the long run. The microcontroller is connected to a high performance of 8 bits. This sensor includes resistive elements and NTC temperature measuring devices. It has excellent quality, fast response, anti-interference capability and high cost performance advantages.
Each DHT11 sensor has a very accurate calibration feature from the calibration chamber humidity. The calibration coefficients are stored in OTP program memory, the internal sensor detects the signal in the process, we must call it the calibration coefficient. Integrated serial single-cable interface system to be fast and easy. Small size, low power, signal transmission distance of up to 20 meters, so that various applications and even the most demanding applications. This product is a single 4-pin pin package line. Convenient connection, special packages can be provided according to user needs.

Spesification : 
  • Supply Voltage: 5 V
  • Temperature range: 0-50 ° C error ± 2 ° C
  • Humidity: 20-90% RH ± 5% RH error
  • Interface: Digital

download this library "here"

#include<dht.h>
dht DHT;

// if you require to change the pin number, Edit the pin with your arduino pin.

#define DHT11_PIN A1 

void setup() {

  Serial.begin(9600);

  Serial.println("welcome to TechPonder Humidity and temperature Detector");
}

void loop() { // READ DATA

  int chk = DHT.read11(DHT11_PIN);

  Serial.println(" Humidity " );

  Serial.println(DHT.humidity, 1);

  Serial.println(" Temparature ");

  Serial.println(DHT.temperature, 1);

  delay(2000);

}
So, a tutorial from Erwin Project about Arduino DH11 Thanks for reading.

Tag :
  • Arduino DHT
  • Arudino Coding

Senin, 22 Oktober 2018

Source Code Control Arduino dengan VB.NET


Hi friend erwinproject, this time I will share the visual basic application code to control the Arduino microcontroller. some features that I entered into this application. including having a login system at the beginning when running this application. The login system uses the database as a reference so that users can enter the core form. The database used is using "Microsoft Access". This software has 2 accesses, namely access as "user" and "admin". Software connects with Microsoft Access files in the .mdb file. There are 5 tabs in the main form:
  1. User tab, used to add, edit and delete users
  2. Information Tab: Contains how to use software.
  3. Control tab: to control the Arduino microcontroller
  4. Tab monitoring: for monitoring data from the Arduino microcontroller in real time
  5. Tab coding: for this tab only users with admin status can access this tab. this tab contains Arduino Coding.

for editing the source I use Visual Studio 2012. The source code link can be downloaded below:

if there are problems please comment below (politely) or through the contact form. thanks.

Tag :

  • Visual Basic Arduino
  • VBNET
  • Arduino VB

Selasa, 31 Juli 2018

Tracking Circle with OPENCV Camera


Detection and Tracking circles with the Camera using Opencv - this time admin posts Detect and Tracking circles with Camera using Open CV or can be called Tracking Hough Circle with Camera.
In this tutorial, we will definitely be faced with a camera, for sample open camera coding, can be seen in the previous article "Access webcam camera with Open CV". This article is a combination of loop detection and camera. wow, how about it, sir? so we can detect circles in realtime with the camera and issue the position value of the circle in realtime, of course. Just look at the coding below.

Source Code [Raw
import cv2

videoCam = cv2.VideoCapture(1)

while True:
    cond, frame = videoCam.read()
    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
    circles = cv2.HoughCircles(gray, cv2.HOUGH_GRADIENT, 1.2, 100)

    if circles is not None:
        circles = np.round(circles[0, :]).astype("int")
        for (x,y,radius) in circles:
            cv2.circle(frame, (x,y),radius, (0,255,0), 4)
            cv2.rectangle(frame, (x - 5, y - 5), (x + 5, y + 5), (0,128,255),1)
            nilaix = str(x)
            nilaiy = str(y)
            nilair = str(radius)
            if radius > 10:
                print('nilai x = ' + nilaix + ' | nilai y = ' + nilaiy + ' | nilai radius = ' + nilair)

    
    cv2.imshow('Original Video', frame)
    
    
    #cv2.imshow('Gray Video', gray)

    k = cv2.waitKey(1) & 0xff
    if k == ord('q'):
        break

videoCam.release()
cv2.destroyAllWindows()

Note :
Here I use Video Capture (1). because "0" for cameras on laptops, and "1" for external cameras.
Thanks For Reading tutorial "Detection and Tracking circles with the Camera using Opencv" .

Tag :

  • OpenCv Camera
  • OpenCV Pyhton Camera
  • Opencv python tracking circle

Kamis, 28 Juni 2018

Download Keil uVision


Download Keil uVision - this time the admin shares the software used for programming the arm cortex, in general this software is used to program the STM32 chip. The μVision IDE combines project management, run-time environments, building facilities, editing source code, and debugging programs in a strong environment. µVision is easy to use and accelerates the development of your embedded software. µVision supports many screens and allows you to make window layouts anywhere on the visual surface.
The µVision Debugger provides a single environment where you can test, verify, and optimize your application code. Debuggers include traditional features such as simple and complex breakpoints, supervisor windows, and execution controls and provide full visibility to peripheral devices.

Screenshot :


System Requirements :
  • Operating system (OS) : Windows 7, Windows 8, Windows 10
  • Memory : 4 GB
  • CPU : 2+ GHz 64-bit processor
  • Hard disk : 5 GB Freespace
  • Display XGA : (1,024 × 768), High-Color 16-bit min.
  • Other : 2 Mpbs or higher Internet connection for software activation, product updates and online services like the PackInstaller
Download Link :
- Keil uVision [ 250Mb / Part ] [ MediaFire ]
Part 1 ]  [ Part 2 ] 

How to Install :

Thanks For reading and watching on my website.
Tag :

  • Download Keil uVision
  • Tutorial Keil uVision

Selasa, 05 Juni 2018

Read the voltage using Arduino


Read the voltage using Arduino - this time admin posted How to read voltage (volts) using Arduino.
In this tutorial, the basic is the use of analogue on Arduino. The recommendation from the input on the Arduino that I share can read from 0.01 vdc to 5 vdc (recommendation). If you want to use more than you can use prisoners (resistors) or can also be called divider dividers. then enter with an additional formula according to the resistor value. but this time the admin shared the 5 VDC max input.

Schematic:


Source Code [Raw

#define pinTeg A0
void setup() {
  Serial.begin(9600); 
}

void loop() {
  readTeg(); // MEMANGGIL PROGRAM
}

// PROGRAM MEMBACA TEGANGAN
void readTeg(){
  int ValueTeg = analogRead(pinTeg);
  float tegangan = ValueTeg * (5.0 / 1023.0);
  Serial.print("Tegangan : ");
  Serial.print(tegangan);
  Serial.println(" Volt");
  delay(100);
}

Or Download File Source Code

Note :
Here I use pin A0 on Arduino as input volt
Enough the tutorial "Reading voltage using Arduino" Thank you.

Sabtu, 12 Mei 2018

Understanding Logic and Algorithms


Understanding Logic and Algorithms
, Understanding algorithms is very closely related to the word logic, namely the ability of a human to think with reason about a problem to produce a truth, proven and acceptable to reason, logic is often associated with intelligence, someone who is able to speak well often people call it a smart person. In solving a problem, logic is absolutely necessary.

Logic is identical with reason and reasoning. Reasoning is a form of thinking. Thought is indirect knowledge which is based on the direct statement that thinking may be true and maybe not true. The logic definition is very simple, namely the science that provides principles that must be followed in order to be able to think valid according to the rules. The logic lesson raises awareness to use principles to think systematically.

Logic comes from the Greek word LOGOS which means science. Logic can be interpreted as knowledge that teaches ways of thinking to carry out activities with a specific purpose. The algorithm comes from the name of an Arab scientist named Abu Jafar Muhammad Ibnu Musa Al Khuwarizmi the author of a book called Al Jabar Wal Muqabala. 2 The word Al Khuwarizmi reads westerners into Algorism which then gradually becomes the Algorithm absorbed in the Indonesian language into Algorithms. Algorithms can be interpreted as sequences of problem solving that are arranged systematically using logical language to solve a problem.

However there are several other algorithm definitions. Among them, according to Rinaldi Munir, the algorithm is a sequence of logical steps to solve problems that are arranged systematically. While according to the Big Indonesian Dictionary, the definition of an algorithm is a logical sequence of decision making for problem solving. According to the Gunadarma team: 1988, the algorithm is a finite set of instructions that clearly specify the steps of the implementation process, in solving a particular problem, or a particular class of problems, with the demand that the set of instructions be carried out mechanically. From the above understanding, it can be concluded that Logic and Algorithms are the study of how to solve a problem based on the sequence of limited steps arranged systematically and using logical language with a specific purpose. To more easily understand the meaning of the algorithm an example of the problem of exchanging the contents of two glasses is exemplified. Given two glasses A and B, the glass contains tea water and a glass of coffee water. Exchange the contents of the glass so as to produce a glass which originally contained tea water to contain coffee water and a glass which originally contained coffee water to be filled with tea water. Illustration of this problem can be seen in Figure 1.1.
Figure 1.1. Exchange glass of glass A and glass B. 



The way to resolve this problem is as follows. To exchange the contents of the glass properly, it is necessary to add the glass we call glass C as a temporary shelter. Here is the algorithm:
1. Prepare a backup glass C
2. Pour tea water from glass A into glass C (glass A becomes empty).
3. Pour coffee water from glass B into glass A (glass B becomes empty).
4. Pour tea water from glass C into glass B. Illustration of the steps of the algorithm can be seen in Figure 1.2.
Figure 1.2. Steps for exchanging glasses of glass A and glass B.

From this example it can be seen that the solution to the problem of exchanging the contents of two glasses is very simple. Here is used a sequence of steps that are reasonable or logical so that the contents of both of them have moved media, from A to B and B to A. This is what is called "Algorithm", the sequence of solving a problem in a logical and reasonable sequence and step produces something correct.
Another example of using logic and algorithms is to create an algorithm to calculate the area of ​​a circle, the way:
1. Determine the radius value (r) of the circle.
2. Determine the value of phi.
3. Calculate the area of ​​a circle by multiplying the value of the radius (r) by (r) then multiplying by the value of phi.
4. Then the area of ​​the circle is found.
5. Finish. When using logic, you should not think too complicated about a problem, because it is not necessarily a problem that is as complicated as we think.
Think of the simplest things to solve the problem, so it doesn't get stuck in complicated, self-made thoughts. However, don't underestimate the slightest problem, but think simple to produce an effective solution.
In determining the algorithm to solve a problem, maybe we are faced with several algorithm choices. Therefore we must have a guide in determining algorithm choices. Consideration in algorithm selection is, first, the algorithm must be correct. This means that the algorithm will provide output as expected from a number of inputs provided. No matter how good an algorithm is, if it gives the wrong output, then surely the algorithm is not a good algorithm. The second consideration that must be considered is that we must know how well the results achieved by the algorithm. This is especially important in algorithms that require approximation of results, namely algorithms whose results are only approaches. A good algorithm must be able to provide results as close as possible to the actual values. Third is the efficiency of the algorithm. The efficiency of the algorithm can be viewed from two things, namely the efficiency of time and memory. Although algorithms provide the correct or closest output, but if we have to wait a long time to get results such as hours to get the output then usually the algorithm will usually not be the first choice, everyone wants a relatively fast output. Likewise with memory, the greater the memory used, the worse the algorithm will be. In reality, everyone can create different algorithms to solve a problem, even though there are differences in compiling algorithms, of course we expect similar or similar outputs. If faced with problems like this then you should choose the most efficient and fast algorithm.
The purpose of learning logic and algorithms is to be able to get used to doing a plan when solving a problem. Because a problem that is solved with a mature plan will get a more optimal solution than solving the problem without using a plan.

Access webcam camera with OpenCV Python


Access webcam camera with OpenCV python - this time admin posts How to Access webcam cameras using openCV in python.
This tutorial is the basic of OpenCV, which is accessing the camera / webcam. Camera access is an important aspect in using opencv itself. Because opencv itself is more often to access a camera / webcam. Here the admin uses a logitech camera and uses python version 3. Can also access from laptop webcam default. Just look at the source code below.


Source Code :


import cv2 #untuk memanggil komponen opencv python

videoCam = cv2.VideoCapture(0) #webcam / kamera yang digunakan
videoCam.set(cv2.CAP_PROP_FRAME_WIDTH,720) # panjang panel kamera
videoCam.set(cv2.CAP_PROP_FRAME_HEIGHT,480) # lebar panel kamera
while True:
    cond, frame = videoCam.read() # membaca kondisi apabila frame sudah ada

    gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) # cara mengkonvert gambar BGR ke Mode Gray
    cv2.imshow('Original Video', frame) # menampilkan video aslinya
    cv2.imshow('Gray Video', gray) # menampilkan video asli dengan efek gray

    k = cv2.waitKey(1) & 0xff
    if k == ord('q'): # jika menekan Q maka program akan exit.
        break

videoCam.release()
cv2.destroyAllWindows()


Note :
If using 2 cameras, change the number 1 or 0 on VideoCapture (1)

Screenshot Program Result :


Senin, 26 Maret 2018

INSTALL OPENCV PYTHON IN WINDOWS

 

How to Install OpenCV Python Windows - this time the admin posts How to Install OpenCv Python easily and quickly. only use CMD on windows.
OpenCV (Open Source Computer Vision Library) is a software library aimed at real-time dynamic image processing, created by Intel, and now supported by Willow Garage and Itseez. This program is free and is under the auspices of an open source of BSD licenses. This library is a cross platform library. This program is dedicated in large part to real-time image processing. If this library finds the library of Integrated Performance Primitives from Intel in a computer system, then this program will use this routine to speed up the process of working this program automatically.
Python is a multipurpose interpretive programming language with a design philosophy that focuses on the level of code readability. Python is claimed to be a language that combines capabilities, capabilities, with very clear code syntax, and is equipped with a large and comprehensive standard library functionality. Python is also supported by a large community.
Currently python code can be run on a variety of operating system platforms, some of which are Linux / Unix, Windows, Mac OS X, Java Virtual Machine, OS / 2, Amiga, Palm, Symbian

Screenshot :



Bahan yang dibutuhkan :

  • Internet
  • Latest version of Python 2/3
  • PC / Laptop for sure
  • A cup of coffee to be excited


Download Link :
- Python
[ Download ]

How to Install :
1. Install Python Jangan lupa centang "Add Python to Path"
2. open CMD 
3. type "pip install --upgrade pip" 
4. "pip install wheel" 
5. install open cv by typing "pip install opencv-python" 
6. install contrib opencv "pip install opencv-contrib-python" 
7. done :D
8. If you are still confused, see Tutorial Video below.



Modul PDF Siemens S7


Basic Course Siemens Step7 - this time admin shares PDF related to Software Step 7 for free. This PDF includes tutorials ranging from basic to advanced. This PDF is in Indonesian so that visitors can easily understand the use of STEP 7. To download the software on "Download STEP 7 TIA PORTAL V13 Software".



Screenshot :


Fill in this PDF Package:
  • S7 Prog 1 Exercise.pdf
  • S7 Prog 1 latihan 16 bit.pdf
  • S7 Prog 1 latihan 32 bit.pdf
  • S7 Prog 2 chapter 1.pdf
  • S7 Prog 2 chapter 2.pdf
  • S7 Prog 2 chapter 3.pdf
  • S7 Prog 2 chapter 4.pdf
  • S7 Prog 2 chapter 5.pdf
  • S7 Prog 2 chapter 6.pdf
  • S7 Prog 2 chapter 7.pdf
  • S7 Prog 2 chapter 8.pdf
Download Link :
- Modul PDF Siemens S7 [ 4Mb ] [Google Drive ]
[ Download ]

How to Use :
1. Download the Siemens PDF Package
2. Extract File
3. Done

Download WinRAR 5.0 Full

WinRAR 5.0 Full: WinRAR is currently back to updating the version of WinRAR 5.0 Final Full Version. WinRAR is no longer a secret application for PC users. WinRAR itself has become an important part of applications that must be on your PC. WinRAR is an application that you can use to combine multiple files in one folder then you can set and change to several formats such as; RAR, ZIP, CAB, ARJ, LZH, ACE, TAR, GZip, UUE, ISO, BZIP2, Z and 7-Zip.

Screenshot :


Features :
  • It is a powerful compression tool with many integrated additional functions to help you organize your compressed archives.
  • It puts you ahead of the crowd when it comes to compression. By consistently creating smaller archives, WinRAR is often faster than the competition. This will save you disk space, transmission costs AND valuable working time as well.
  • Supports all popular compression formats (RAR, ZIP, CAB, ARJ, LZH, ACE, TAR, GZip, UUE, ISO, BZIP2, Z and 7-Zip).
  • It is ideal for multimedia files. Automatically recognizes and selects the best compression method. The special compression algorithm compresses multimedia files, executables and object libraries particularly well.
  • Allows you to split archives into separate volumes easily, making it possible to save them on several disks for example.
  • Allows you to create selfextracting and multivolume archives.
  • Recovery record and recovery volumes allow to reconstruct even physically damaged archives.
  • It is also ideal, if you are sending data through the web. Its 256 bit password encryption and its authenticated signature technology will give you the peace of mind you have been looking for.
Download Link :
- WinRAR 5.0 32bit [Google Drive ]
[ Download ]
- WinRAR 5.0 64bit [Google Drive ]
[ Download ]
- Crack WinRAR 5.0 32bit [Google Drive ]
[ Download ]

How to Install :

  1. Download WinRAR 5.0 on the link above.
  2. Turn off the Internet Connection.
  3. Extract and install WinRAR 5.0 until it's finished.
  4. Open the Crack folder, then copy "rarreg.key".
  5. Paste the WinRAR directory in (C: \ Program Files \ WinRAR)
  6. Enjoying!

Minggu, 25 Maret 2018

Download STEP 7 TIA PORTAL V13 FULL

Download TIA PORTAL V13 Siemens - this time erwinproject will share the software most sought after by Siemens PLC users, more precisely there is the STEP 7 Tia Portal Software. Tia Portal software allows users to build, configure, and program a number of devices such as PLCs, Siemens HMIs, motion-control systems and networks using only one software package with one installation. This greatly reduces the complexity of software and management maintenance on both End-Users and OEM levels. This time the admin will share STEP 7 Software, 7 SIM STEP, START DRIVER, and FIX STEP 7. This software requires high laptop specifications. but if you can still use this software even though your laptop specifications are low.

Screenshot :




System Minimum Requirements :
  • Operating system (OS) : Windows 7 (64-bit version)/Windows 8 (32-bit/64-bit version)/ Windows 8.1 (32-bit/64-bit version) / Windows 10 (32-bit/64-bit version)
  • Memory : 2 GB
  • CPU : Core-i3 / AMD A6 ( Tested )
  • Hard disk : 30 GB Freespace
  • Display XGA : (1,024 × 768)
  • Disk drive : DVD-ROM drive
Download Link : [Update Link 22/10/2018] [How to download ?]
- STEP 7 TIA PORTAL V13 Siemens [ 1 Gb / Part ] [Google Drive ]
[ Part 01 ] [ Part 02 ] [ Part 03 ] [ Part 04 ] [ Part 05 ] [ Part 06 ]
[ Part 07 ]
- STEP 7 SIM TIA PORTAL V13 Siemens [ 500 Mb / Part ]
Part 01 ] [ Part 02 ] [ Part 03 ]
- START DRIVE SIM TIA PORTAL V13 Siemens [ 500 Mb / Part ]
[ Part 01 ] [ Part 02 ] [ Part 03 ] [ Part 04 ]
- FIX STEP 7 SIM TIA PORTAL V13 Siemens
[ Download ]
- WinRar ( Lewati jika sudah punya softwarenya )
[ Download ]

Password : erwinproject


Download Juga Basic Course Siemens :
[ Download ]

How to Install :
1. Download All STEP 7 Files (Part 1 to Part 7)
2. Make 1 Folder, then Extract with WinRar
3. Download all 7 SIM STEP files (Part 1 to Part 3)
4. Make 1 Folder, then Extract with WinRar
5. Download All START DRIVE Files (Part 1 to Part 3)
6. Make 1 Folder, then Extract with WinRar
7. First, install it first
8. Then install STEP 7 SIM.
9. Then install the START DRIVER SIM.
10. Then copy the STEP FIX File 7 SIM to the Installation folder STEP 7 SIM
11.Done. .

TAG :
Siemens PLC
STEP 7
STEP 7 TIA PORTAL 2018
STEP 7 TIA PORTAL 2017
STEP 7 TIA PORTAL New Link
STEP 7 TIA PORTAL V13
STEP 7 TIA PORTAL V13 Siemens
STEP 7 TIA PORTAL V13 Siemens FULL
STEP 7 TIA PORTAL V13 Siemens Full Final
Siemens
TIA PORTAL V13 FULL