Skip to content

Commit aa5c367

Browse files
committed
feat: added hmi for testing
1 parent 5640117 commit aa5c367

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+26974
-7
lines changed

.Zeugwerk/.config

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
modules = [
2+
"MyApplication",
3+
"MyHmi"
4+
]
5+

MyApplication/.Zeugwerk/config.json

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,25 @@
3131
"branch": "main",
3232
"target": "TC3.1",
3333
"configuration": "Release",
34-
"distributor-name": "Stefan Besler"
34+
"distributor-name": "Stefan Besler",
35+
"namespace": "Pushover"
3536
},
3637
{
3738
"version": "1.0.0.0",
3839
"name": "Testbench",
3940
"branch": "main",
4041
"target": "TC3.1",
4142
"configuration": "Release",
42-
"distributor-name": "Zeugwerk GmbH"
43+
"distributor-name": "Zeugwerk GmbH",
44+
"namespace": "Testbench"
4345
}
4446
],
4547
"references": {
4648
"*": [
47-
"Tc2_Standard=*",
48-
"Tc2_System=*",
49-
"Tc3_Module=*"
50-
]
49+
"Tc2_Standard=*",
50+
"Tc2_System=*",
51+
"Tc3_Module=*"
52+
]
5153
},
5254
"repositories": [],
5355
"bindings": {},
@@ -56,9 +58,11 @@
5658
"argument": {},
5759
"license": {}
5860
},
61+
"description": "",
5962
"icon-file": "",
6063
"project-url": "",
6164
"display-name": "MyApplication",
65+
"authors": "",
6266
"entitlement": "",
6367
"license": "",
6468
"license-file": "",
@@ -67,5 +71,5 @@
6771
]
6872
}
6973
],
70-
"directories": null
74+
"modules": null
7175
}

MyHmi/.Zeugwerk/config.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"fileversion": 1,
3+
"solution": "MyHmi.sln",
4+
"projects": [
5+
{
6+
"name": "MyHmi",
7+
"type": "Hmi"
8+
}
9+
],
10+
"modules": null
11+
}

MyHmi/.eslintrc.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"$schema": "http://json.schemastore.org/eslintrc",
3+
"env": {
4+
"browser": true,
5+
"es6": true,
6+
"jquery": true
7+
},
8+
"parserOptions": {
9+
"ecmaVersion": 6,
10+
"sourceType": "script"
11+
},
12+
"rules": {
13+
"no-dupe-args": "error",
14+
"no-dupe-else-if": "error",
15+
"no-duplicate-case": "warn",
16+
"no-redeclare": "error",
17+
"no-unexpected-multiline": "error",
18+
"use-isnan": "error"
19+
},
20+
"overrides": [
21+
{
22+
"files": [ "*.ts", "*.tsx" ],
23+
"rules": {
24+
25+
}
26+
}
27+
]
28+
}

MyHmi/.gitignore

Lines changed: 290 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,290 @@
1+
## Ignore TwinCAT HMI temporary files, build results, and
2+
## files generated by popular TwinCAT HMI add-ons.
3+
4+
.engineering_servers/
5+
tchmipublish.journal.json
6+
liveview_*
7+
*.cache
8+
*.db-shm
9+
*.db-wal
10+
*.pid
11+
**/.hmiframework/
12+
**/.hmipkgs/
13+
**/*.d.ts
14+
**/*.js.map
15+
16+
## Ignore Visual Studio temporary files, build results, and
17+
## files generated by popular Visual Studio add-ons.
18+
##
19+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
20+
21+
# User-specific files
22+
*.suo
23+
*.user
24+
*.userosscache
25+
*.sln.docstates
26+
*.vcxproj.filters
27+
28+
# User-specific files (MonoDevelop/Xamarin Studio)
29+
*.userprefs
30+
31+
# Build results
32+
[Dd]ebug/
33+
[Dd]ebugPublic/
34+
[Rr]elease/
35+
[Rr]eleases/
36+
x64/
37+
x86/
38+
bld/
39+
[Bb]in/
40+
[Oo]bj/
41+
[Ll]og/
42+
43+
# Visual Studio 2015 cache/options directory
44+
.vs/
45+
# Uncomment if you have tasks that create the project's static files in wwwroot
46+
#wwwroot/
47+
48+
# MSTest test Results
49+
[Tt]est[Rr]esult*/
50+
[Bb]uild[Ll]og.*
51+
52+
# NUNIT
53+
*.VisualState.xml
54+
TestResult.xml
55+
56+
# Build Results of an ATL Project
57+
[Dd]ebugPS/
58+
[Rr]eleasePS/
59+
dlldata.c
60+
61+
# .NET Core
62+
project.lock.json
63+
project.fragment.lock.json
64+
artifacts/
65+
**/Properties/launchSettings.json
66+
67+
*_i.c
68+
*_p.c
69+
*_i.h
70+
*.ilk
71+
*.meta
72+
*.obj
73+
*.pch
74+
*.pdb
75+
*.pgc
76+
*.pgd
77+
*.rsp
78+
*.sbr
79+
*.tlb
80+
*.tli
81+
*.tlh
82+
*.tmp
83+
*.tmp_proj
84+
*.log
85+
*.vspscc
86+
*.vssscc
87+
.builds
88+
*.pidb
89+
*.svclog
90+
*.scc
91+
92+
# Chutzpah Test files
93+
_Chutzpah*
94+
95+
# Visual C++ cache files
96+
ipch/
97+
*.aps
98+
*.ncb
99+
*.opendb
100+
*.opensdf
101+
*.sdf
102+
*.cachefile
103+
*.VC.db
104+
*.VC.VC.opendb
105+
106+
# Visual Studio profiler
107+
*.psess
108+
*.vsp
109+
*.vspx
110+
*.sap
111+
112+
# TFS 2012 Local Workspace
113+
$tf/
114+
115+
# Guidance Automation Toolkit
116+
*.gpState
117+
118+
# ReSharper is a .NET coding add-in
119+
_ReSharper*/
120+
*.[Rr]e[Ss]harper
121+
*.DotSettings.user
122+
123+
# JustCode is a .NET coding add-in
124+
.JustCode
125+
126+
# TeamCity is a build add-in
127+
_TeamCity*
128+
129+
# DotCover is a Code Coverage Tool
130+
*.dotCover
131+
132+
# Visual Studio code coverage results
133+
*.coverage
134+
*.coveragexml
135+
136+
# NCrunch
137+
_NCrunch_*
138+
.*crunch*.local.xml
139+
nCrunchTemp_*
140+
141+
# MightyMoose
142+
*.mm.*
143+
AutoTest.Net/
144+
145+
# Web workbench (sass)
146+
.sass-cache/
147+
148+
# Installshield output folder
149+
[Ee]xpress/
150+
151+
# DocProject is a documentation generator add-in
152+
DocProject/buildhelp/
153+
DocProject/Help/*.HxT
154+
DocProject/Help/*.HxC
155+
DocProject/Help/*.hhc
156+
DocProject/Help/*.hhk
157+
DocProject/Help/*.hhp
158+
DocProject/Help/Html2
159+
DocProject/Help/html
160+
161+
# Click-Once directory
162+
publish/
163+
164+
# Publish Web Output
165+
*.[Pp]ublish.xml
166+
*.azurePubxml
167+
# TODO: Comment the next line if you want to checkin your web deploy settings
168+
# but database connection strings (with potential passwords) will be unencrypted
169+
*.pubxml
170+
*.publishproj
171+
172+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
173+
# checkin your Azure Web App publish settings, but sensitive information contained
174+
# in these scripts will be unencrypted
175+
PublishScripts/
176+
177+
# NuGet Packages
178+
*.nupkg
179+
# The packages folder can be ignored because of Package Restore
180+
**/packages/*
181+
# except build/, which is used as an MSBuild target.
182+
!**/packages/build/
183+
# Uncomment if necessary however generally it will be regenerated when needed
184+
#!**/packages/repositories.config
185+
# NuGet v3's project.json files produces more ignoreable files
186+
*.nuget.props
187+
*.nuget.targets
188+
189+
# Microsoft Azure Build Output
190+
csx/
191+
*.build.csdef
192+
193+
# Microsoft Azure Emulator
194+
ecf/
195+
rcf/
196+
197+
# Windows Store app package directories and files
198+
AppPackages/
199+
BundleArtifacts/
200+
Package.StoreAssociation.xml
201+
_pkginfo.txt
202+
203+
# Visual Studio cache files
204+
# files ending in .cache can be ignored
205+
*.[Cc]ache
206+
# but keep track of directories ending in .cache
207+
!*.[Cc]ache/
208+
209+
# Others
210+
ClientBin/
211+
~$*
212+
*~
213+
*.dbmdl
214+
*.dbproj.schemaview
215+
*.jfm
216+
*.pfx
217+
*.publishsettings
218+
node_modules/
219+
orleans.codegen.cs
220+
221+
# Since there are multiple workflows, uncomment next line to ignore bower_components
222+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
223+
#bower_components/
224+
225+
# RIA/Silverlight projects
226+
Generated_Code/
227+
228+
# Backup & report files from converting an old project file
229+
# to a newer Visual Studio version. Backup files are not needed,
230+
# because git is used.
231+
_UpgradeReport_Files/
232+
Backup*/
233+
UpgradeLog*.XML
234+
UpgradeLog*.htm
235+
236+
# SQL Server files
237+
*.mdf
238+
*.ldf
239+
240+
# Business Intelligence projects
241+
*.rdl.data
242+
*.bim.layout
243+
*.bim_*.settings
244+
245+
# Microsoft Fakes
246+
FakesAssemblies/
247+
248+
# GhostDoc plugin setting file
249+
*.GhostDoc.xml
250+
251+
# Node.js Tools for Visual Studio
252+
.ntvs_analysis.dat
253+
254+
# Visual Studio 6 build log
255+
*.plg
256+
257+
# Visual Studio 6 workspace options file
258+
*.opt
259+
260+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
261+
*.vbw
262+
263+
# Visual Studio LightSwitch build output
264+
**/*.HTMLClient/GeneratedArtifacts
265+
**/*.DesktopClient/GeneratedArtifacts
266+
**/*.DesktopClient/ModelManifest.xml
267+
**/*.Server/GeneratedArtifacts
268+
**/*.Server/ModelManifest.xml
269+
_Pvt_Extensions
270+
271+
# Paket dependency manager
272+
.paket/paket.exe
273+
paket-files/
274+
275+
# FAKE - F# Make
276+
.fake/
277+
278+
# JetBrains Rider
279+
.idea/
280+
*.sln.iml
281+
282+
# CodeRush
283+
.cr/
284+
285+
# Python Tools for Visual Studio (PTVS)
286+
__pycache__/
287+
*.pyc
288+
289+
# Cake - Uncomment if you are using it
290+
# tools/

0 commit comments

Comments
 (0)