Skip to content

Commit e57ec0d

Browse files
committed
init rep
0 parents  commit e57ec0d

File tree

66 files changed

+1172
-0
lines changed

Some content is hidden

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

66 files changed

+1172
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# STM32F429I-ESP8266-NetMicroFramework
2+
STM32F429I + ESP826 as a Monitoring system of air quality in different places of the world using .Net Micro Framework Platform

TouchScreen.sln

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Microsoft Visual Studio Solution File, Format Version 12.00
2+
# Visual Studio Express 2012 for Windows Desktop
3+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TouchScreen", "TouchScreen\TouchScreen.csproj", "{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}"
4+
EndProject
5+
Global
6+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7+
Debug|Any CPU = Debug|Any CPU
8+
Release|Any CPU = Release|Any CPU
9+
EndGlobalSection
10+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
11+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
12+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Debug|Any CPU.Build.0 = Debug|Any CPU
13+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
14+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Release|Any CPU.Build.0 = Release|Any CPU
16+
{D0BC600D-BDB0-4530-9BA0-6DF24AA5AA69}.Release|Any CPU.Deploy.0 = Release|Any CPU
17+
EndGlobalSection
18+
GlobalSection(SolutionProperties) = preSolution
19+
HideSolutionNode = FALSE
20+
EndGlobalSection
21+
EndGlobal

TouchScreen.suo

8.5 KB
Binary file not shown.

TouchScreen.v11.suo

66 KB
Binary file not shown.

TouchScreen/OnBoardFlash.dat

11.1 MB
Binary file not shown.

TouchScreen/OnBoardFlash.dat.smd

89 KB
Binary file not shown.

TouchScreen/Program.cs

+405
Large diffs are not rendered by default.
+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2+
// Copyright (c) Microsoft Corporation. All rights reserved.
3+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
4+
5+
using System.Reflection;
6+
using System.Runtime.CompilerServices;
7+
using System.Runtime.InteropServices;
8+
9+
// General Information about an assembly is controlled through the following
10+
// set of attributes. Change these attribute values to modify the information
11+
// associated with an assembly.
12+
[assembly: AssemblyTitle("SimpleTouchInput")]
13+
[assembly: AssemblyDescription("")]
14+
[assembly: AssemblyConfiguration("")]
15+
[assembly: AssemblyCompany("Microsoft Corp.")]
16+
[assembly: AssemblyProduct("SimpleTouchInput")]
17+
[assembly: AssemblyCopyright("Copyright © Microsoft Corp. 2008")]
18+
[assembly: AssemblyTrademark("")]
19+
[assembly: AssemblyCulture("")]
20+
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
[assembly: AssemblyVersion("1.0.0.0")]
29+
[assembly: AssemblyFileVersion("1.0.0.0")]

TouchScreen/ReadMe.txt

+75
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
/**
2+
@page TouchScreen TouchScreen
3+
4+
@verbatim
5+
******************** (C) COPYRIGHT 2013 STMicroelectronics *******************
6+
* @file TouchScreen\TouchScreen\readme.txt
7+
* @author MCD
8+
* @version V1.0.0
9+
* @date 24-Sep-2013
10+
* @brief Description of the TouchScreen Example.
11+
******************************************************************************
12+
* @attention
13+
*
14+
* <h2><center>&copy; COPYRIGHT 2013 STMicroelectronics</center></h2>
15+
*
16+
* Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
17+
* You may not use this file except in compliance with the License.
18+
* You may obtain a copy of the License at:
19+
*
20+
* http://www.st.com/software_license_agreement_liberty_v2
21+
*
22+
* Unless required by applicable law or agreed to in writing, software
23+
* distributed under the License is distributed on an "AS IS" BASIS,
24+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
25+
* See the License for the specific language governing permissions and
26+
* limitations under the License.
27+
*
28+
******************************************************************************
29+
@endverbatim
30+
31+
@par Example Description
32+
33+
This example describes how to use the NETMF TouchScreen feature.
34+
The LCD Touch panel is connected to the STMPE811QTR IO expnader which is connected
35+
to the STM32F429 by I2C3. The driver of STMPE811QTR is implemented in HAL level and its
36+
data is delivered to the NETMF TouchScreen library.
37+
38+
When touching the Touch panel, two events occurs: Touch Down and then Touch Up.
39+
In this example the coordinates of the touch is displayed on LCD and a butterfly image is
40+
drawn at the touch position. When Touch down event occurs, a butterfly with partially closed
41+
wings is displayed and in the touch up event, a butterfly with open wings is displayed.
42+
For more information about TouchScreen features, see MSDN documentation.
43+
44+
@par Directory contents
45+
46+
- GPIO_Toggle.csproj Project file.
47+
- GPIO_Toggle.csproj.user Project options file.
48+
- Properties/AssemblyInfo.cs Application metadata.
49+
- Program.cs Main program
50+
51+
@par Hardware and Software environment
52+
53+
- This example has been tested with STMicroelectronics STM32F429I-DISCOVERY
54+
boards.
55+
56+
- STM32F429I-DISCOVERY Set-up
57+
- None
58+
59+
- Required assemblies files:
60+
- System;
61+
- Microsoft.SPOT;
62+
- Microsoft.SPOT.Input;
63+
- Microsoft.SPOT.Presentation;
64+
- Microsoft.SPOT.Presentation.Controls;
65+
- Microsoft.SPOT.Presentation.Media;
66+
67+
@par How to use it ?
68+
69+
In order to make the program work, you should do the following:
70+
- Open GPIO_Toggle.csproj project.
71+
- Rebuild all files: Build->Build Solution
72+
- Load and Run program: Debug->Run(F5)
73+
74+
* <h3><center>&copy; COPYRIGHT 2013 STMicroelectronics</center></h3>
75+
*/

TouchScreen/Resources.Designer.cs

+75
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

TouchScreen/Resources.resx

+187
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<root>
3+
<!--
4+
Microsoft ResX Schema
5+
6+
Version 2.0
7+
8+
The primary goals of this format is to allow a simple XML format
9+
that is mostly human readable. The generation and parsing of the
10+
various data types are done through the TypeConverter classes
11+
associated with the data types.
12+
13+
Example:
14+
15+
... ado.net/XML headers & schema ...
16+
<resheader name="resmimetype">text/microsoft-resx</resheader>
17+
<resheader name="version">2.0</resheader>
18+
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
19+
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
20+
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
21+
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
22+
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
23+
<value>[base64 mime encoded serialized .NET Framework object]</value>
24+
</data>
25+
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
26+
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
27+
<comment>This is a comment</comment>
28+
</data>
29+
30+
There are any number of "resheader" rows that contain simple
31+
name/value pairs.
32+
33+
Each data row contains a name, and value. The row also contains a
34+
type or mimetype. Type corresponds to a .NET class that support
35+
text/value conversion through the TypeConverter architecture.
36+
Classes that don't support this are serialized and stored with the
37+
mimetype set.
38+
39+
The mimetype is used for serialized objects, and tells the
40+
ResXResourceReader how to depersist the object. This is currently not
41+
extensible. For a given mimetype the value must be set accordingly:
42+
43+
Note - application/x-microsoft.net.object.binary.base64 is the format
44+
that the ResXResourceWriter will generate, however the reader can
45+
read any of the formats listed below.
46+
47+
mimetype: application/x-microsoft.net.object.binary.base64
48+
value : The object must be serialized with
49+
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
50+
: and then encoded with base64 encoding.
51+
52+
mimetype: application/x-microsoft.net.object.soap.base64
53+
value : The object must be serialized with
54+
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
55+
: and then encoded with base64 encoding.
56+
57+
mimetype: application/x-microsoft.net.object.bytearray.base64
58+
value : The object must be serialized into a byte array
59+
: using a System.ComponentModel.TypeConverter
60+
: and then encoded with base64 encoding.
61+
-->
62+
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
63+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
64+
<xsd:element name="root" msdata:IsDataSet="true">
65+
<xsd:complexType>
66+
<xsd:choice maxOccurs="unbounded">
67+
<xsd:element name="metadata">
68+
<xsd:complexType>
69+
<xsd:sequence>
70+
<xsd:element name="value" type="xsd:string" minOccurs="0" />
71+
</xsd:sequence>
72+
<xsd:attribute name="name" use="required" type="xsd:string" />
73+
<xsd:attribute name="type" type="xsd:string" />
74+
<xsd:attribute name="mimetype" type="xsd:string" />
75+
<xsd:attribute ref="xml:space" />
76+
</xsd:complexType>
77+
</xsd:element>
78+
<xsd:element name="assembly">
79+
<xsd:complexType>
80+
<xsd:attribute name="alias" type="xsd:string" />
81+
<xsd:attribute name="name" type="xsd:string" />
82+
</xsd:complexType>
83+
</xsd:element>
84+
<xsd:element name="data">
85+
<xsd:complexType>
86+
<xsd:sequence>
87+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
88+
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
89+
</xsd:sequence>
90+
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
91+
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
92+
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
93+
<xsd:attribute ref="xml:space" />
94+
</xsd:complexType>
95+
</xsd:element>
96+
<xsd:element name="resheader">
97+
<xsd:complexType>
98+
<xsd:sequence>
99+
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
100+
</xsd:sequence>
101+
<xsd:attribute name="name" type="xsd:string" use="required" />
102+
</xsd:complexType>
103+
</xsd:element>
104+
</xsd:choice>
105+
</xsd:complexType>
106+
</xsd:element>
107+
</xsd:schema>
108+
<resheader name="resmimetype">
109+
<value>text/microsoft-resx</value>
110+
</resheader>
111+
<resheader name="version">
112+
<value>2.0</value>
113+
</resheader>
114+
<resheader name="reader">
115+
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
116+
</resheader>
117+
<resheader name="writer">
118+
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
119+
</resheader>
120+
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
121+
<data name="small" type="System.Resources.ResXFileRef, System.Windows.Forms">
122+
<value>resources\small.tinyfnt;System.Byte[], mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
123+
</data>
124+
<data name="String1" xml:space="preserve">
125+
<value>Hello World!</value>
126+
</data>
127+
<data name="big" type="System.Resources.ResXFileRef, System.Windows.Forms">
128+
<value>Resources\big.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
129+
</data>
130+
<data name="Calibri12" type="System.Resources.ResXFileRef, System.Windows.Forms">
131+
<value>Resources\Calibri12.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
132+
</data>
133+
<data name="Calibri12AA" type="System.Resources.ResXFileRef, System.Windows.Forms">
134+
<value>Resources\Calibri12AA.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
135+
</data>
136+
<data name="Calibri12Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
137+
<value>Resources\Calibri12Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
138+
</data>
139+
<data name="Calibri16" type="System.Resources.ResXFileRef, System.Windows.Forms">
140+
<value>Resources\Calibri16.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
141+
</data>
142+
<data name="Calibri16AA" type="System.Resources.ResXFileRef, System.Windows.Forms">
143+
<value>Resources\Calibri16AA.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
144+
</data>
145+
<data name="Calibri16Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
146+
<value>Resources\Calibri16Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
147+
</data>
148+
<data name="Calibri8" type="System.Resources.ResXFileRef, System.Windows.Forms">
149+
<value>Resources\Calibri8.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
150+
</data>
151+
<data name="Calibri8AA" type="System.Resources.ResXFileRef, System.Windows.Forms">
152+
<value>Resources\Calibri8AA.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
153+
</data>
154+
<data name="Calibri8Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
155+
<value>Resources\Calibri8Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
156+
</data>
157+
<data name="Clibold" type="System.Resources.ResXFileRef, System.Windows.Forms">
158+
<value>Resources\Clibold.fontdef;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
159+
</data>
160+
<data name="med" type="System.Resources.ResXFileRef, System.Windows.Forms">
161+
<value>Resources\med.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
162+
</data>
163+
<data name="icon_left" type="System.Resources.ResXFileRef, System.Windows.Forms">
164+
<value>Resources\icon_left.bmp;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
165+
</data>
166+
<data name="Calibri20" type="System.Resources.ResXFileRef, System.Windows.Forms">
167+
<value>Resources\Calibri20.tinyfnt;System.Byte[], mscorlib, Version=4.3.1.0, Culture=neutral, PublicKeyToken=null</value>
168+
</data>
169+
<data name="Calibri20AA" type="System.Resources.ResXFileRef, System.Windows.Forms">
170+
<value>Resources\Calibri20AA.tinyfnt;System.Byte[], mscorlib, Version=4.3.1.0, Culture=neutral, PublicKeyToken=null</value>
171+
</data>
172+
<data name="Calibri20Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
173+
<value>Resources\Calibri20Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.1.0, Culture=neutral, PublicKeyToken=null</value>
174+
</data>
175+
<data name="Calibri32" type="System.Resources.ResXFileRef, System.Windows.Forms">
176+
<value>Resources\Calibri32.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
177+
</data>
178+
<data name="Calibri32Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
179+
<value>Resources\Calibri32Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
180+
</data>
181+
<data name="Calibri26" type="System.Resources.ResXFileRef, System.Windows.Forms">
182+
<value>Resources\Calibri26.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
183+
</data>
184+
<data name="Calibri26Bold" type="System.Resources.ResXFileRef, System.Windows.Forms">
185+
<value>Resources\Calibri26Bold.tinyfnt;System.Byte[], mscorlib, Version=4.3.0.0, Culture=neutral, PublicKeyToken=null</value>
186+
</data>
187+
</root>
1.64 KB
Binary file not shown.
2.75 KB
Binary file not shown.
1.7 KB
Binary file not shown.
2.12 KB
Binary file not shown.
3.65 KB
Binary file not shown.
2.35 KB
Binary file not shown.
3.14 KB
Binary file not shown.
5.32 KB
Binary file not shown.
5.59 KB
Binary file not shown.
4.47 KB
Binary file not shown.
4.8 KB
Binary file not shown.
6.69 KB
Binary file not shown.
7.07 KB
Binary file not shown.
1.03 KB
Binary file not shown.
1.82 KB
Binary file not shown.
1.03 KB
Binary file not shown.

0 commit comments

Comments
 (0)