Skip to content

Commit b27d85c

Browse files
committed
Nuevo Commit con Branch de logitech y monitor dinamico
1 parent 012def7 commit b27d85c

File tree

819 files changed

+6259
-3764
lines changed

Some content is hidden

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

819 files changed

+6259
-3764
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,10 @@ ModelManifest.xml
145145
# Windows image file caches
146146
Thumbs.db
147147
ehthumbs.db
148-
148+
MikuMikuDanceE_v926x64/
149+
mikuLowRes/
150+
miku/
151+
Virtual Dub/
149152
# Folder config file
150153
Desktop.ini
151154

Andromeda.csproj

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<AssemblyName>Andromeda</AssemblyName>
1313
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
15-
<ApplicationIcon>icon.ico</ApplicationIcon>
15+
<ApplicationIcon>andromeda.ico</ApplicationIcon>
1616
<PublishUrl>publish\</PublishUrl>
1717
<Install>true</Install>
1818
<InstallFrom>Disk</InstallFrom>
@@ -55,6 +55,24 @@
5555
<WarningLevel>4</WarningLevel>
5656
<Prefer32Bit>false</Prefer32Bit>
5757
</PropertyGroup>
58+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
59+
<DebugSymbols>true</DebugSymbols>
60+
<OutputPath>bin\x86\Debug\</OutputPath>
61+
<DefineConstants>DEBUG;TRACE</DefineConstants>
62+
<DebugType>full</DebugType>
63+
<PlatformTarget>x86</PlatformTarget>
64+
<ErrorReport>prompt</ErrorReport>
65+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
66+
</PropertyGroup>
67+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
68+
<OutputPath>bin\x86\Release\</OutputPath>
69+
<DefineConstants>TRACE</DefineConstants>
70+
<Optimize>true</Optimize>
71+
<DebugType>pdbonly</DebugType>
72+
<PlatformTarget>x86</PlatformTarget>
73+
<ErrorReport>prompt</ErrorReport>
74+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
75+
</PropertyGroup>
5876
<ItemGroup>
5977
<Reference Include="BouncyCastle, Version=1.8.5678.26229, Culture=neutral, PublicKeyToken=eec3120e64a3fcba, processorArchitecture=MSIL">
6078
<HintPath>packages\MimeKit.1.2.8.0\lib\net45\BouncyCastle.dll</HintPath>
@@ -111,7 +129,11 @@
111129
<DependentUpon>AGauge.cs</DependentUpon>
112130
</Compile>
113131
<Compile Include="Animate.cs" />
132+
<Compile Include="CUMonitorUpdate.cs" />
114133
<Compile Include="GlobalKeyboardHook.cs" />
134+
<Compile Include="HWMonitor.cs" />
135+
<Compile Include="LogiLcd.cs" />
136+
<Compile Include="LogitechScreenApi.cs" />
115137
<Compile Include="MailModule.cs" />
116138
<Compile Include="CommandImpl.cs" />
117139
<Compile Include="Correo.cs">
@@ -128,7 +150,7 @@
128150
</Compile>
129151
<Compile Include="KeyboardHook.cs" />
130152
<Compile Include="SpeechRecognizer.cs" />
131-
<Compile Include="clock.cs" />
153+
<Compile Include="Clock.cs" />
132154
<Compile Include="Form1.cs">
133155
<SubType>Form</SubType>
134156
</Compile>
@@ -209,6 +231,7 @@
209231
</Compile>
210232
</ItemGroup>
211233
<ItemGroup>
234+
<Content Include="andromeda.ico" />
212235
<Content Include="icon.ico" />
213236
<Content Include="IconosMail\base.png" />
214237
<Content Include="IconosMail\mail1x64.png" />

Andromeda.sln

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,26 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 14
4-
VisualStudioVersion = 14.0.23107.0
3+
# Visual Studio 2013
4+
VisualStudioVersion = 12.0.21005.1
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Andromeda", "Andromeda.csproj", "{86163730-9513-4D99-A696-A5070DF9D043}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11+
Debug|x86 = Debug|x86
1112
Release|Any CPU = Release|Any CPU
13+
Release|x86 = Release|x86
1214
EndGlobalSection
1315
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1416
{86163730-9513-4D99-A696-A5070DF9D043}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1517
{86163730-9513-4D99-A696-A5070DF9D043}.Debug|Any CPU.Build.0 = Debug|Any CPU
18+
{86163730-9513-4D99-A696-A5070DF9D043}.Debug|x86.ActiveCfg = Debug|Any CPU
19+
{86163730-9513-4D99-A696-A5070DF9D043}.Debug|x86.Build.0 = Debug|Any CPU
1620
{86163730-9513-4D99-A696-A5070DF9D043}.Release|Any CPU.ActiveCfg = Release|Any CPU
1721
{86163730-9513-4D99-A696-A5070DF9D043}.Release|Any CPU.Build.0 = Release|Any CPU
22+
{86163730-9513-4D99-A696-A5070DF9D043}.Release|x86.ActiveCfg = Release|x86
23+
{86163730-9513-4D99-A696-A5070DF9D043}.Release|x86.Build.0 = Release|x86
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

CUMonitorUpdate.cs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Andromeda
8+
{
9+
public class CUMonitorUpdate
10+
{
11+
public String devName;
12+
public int load;
13+
public int temp;
14+
public int ramUsage;
15+
public int clk;
16+
}
17+
}

DMcLgLCD.dll

45.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)