Darien Figueroa / Mbed 2 deprecated repo3

Dependencies:   mbed MAX14720 MAX30205 USBDevice

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Program.cs Source File

Program.cs

00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Threading.Tasks;
00005 using System.Windows.Forms;
00006 
00007 namespace FileLogExample
00008 {
00009     static class Program
00010     {
00011         /// <summary>
00012         /// The main entry point for the application.
00013         /// </summary>
00014         [STAThread]
00015         static void Main()
00016         {
00017             Application.EnableVisualStyles();
00018             Application.SetCompatibleTextRenderingDefault(false);
00019             Application.Run(new Form1());
00020         }
00021     }
00022 }