Form1.Designer.cs 238 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455
  1. namespace MOTINOVA_MC_Test
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows 窗体设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  30. this.groupBox1 = new System.Windows.Forms.GroupBox();
  31. this.label58 = new System.Windows.Forms.Label();
  32. this.button_RefreshPort = new System.Windows.Forms.Button();
  33. this.button_ComOpen = new System.Windows.Forms.Button();
  34. this.textBox_RevCnt = new System.Windows.Forms.TextBox();
  35. this.comboBox_Baudrate = new System.Windows.Forms.ComboBox();
  36. this.comboBox_ComIndex = new System.Windows.Forms.ComboBox();
  37. this.label2 = new System.Windows.Forms.Label();
  38. this.label1 = new System.Windows.Forms.Label();
  39. this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
  40. this.groupBox2 = new System.Windows.Forms.GroupBox();
  41. this.button_ReadStartData = new System.Windows.Forms.Button();
  42. this.button_Write_Torque_Start = new System.Windows.Forms.Button();
  43. this.textBox_Torque_Stdev = new System.Windows.Forms.TextBox();
  44. this.textBox_TorqueData = new System.Windows.Forms.TextBox();
  45. this.textBox_Torque_Start = new System.Windows.Forms.TextBox();
  46. this.label110 = new System.Windows.Forms.Label();
  47. this.label57 = new System.Windows.Forms.Label();
  48. this.label9 = new System.Windows.Forms.Label();
  49. this.label111 = new System.Windows.Forms.Label();
  50. this.checkBox_Savedata = new System.Windows.Forms.CheckBox();
  51. this.checkBox_ReadTorqueData = new System.Windows.Forms.CheckBox();
  52. this.label4 = new System.Windows.Forms.Label();
  53. this.groupBox3 = new System.Windows.Forms.GroupBox();
  54. this.label114 = new System.Windows.Forms.Label();
  55. this.label46 = new System.Windows.Forms.Label();
  56. this.label56 = new System.Windows.Forms.Label();
  57. this.label55 = new System.Windows.Forms.Label();
  58. this.label113 = new System.Windows.Forms.Label();
  59. this.label43 = new System.Windows.Forms.Label();
  60. this.label76 = new System.Windows.Forms.Label();
  61. this.label42 = new System.Windows.Forms.Label();
  62. this.label40 = new System.Windows.Forms.Label();
  63. this.label39 = new System.Windows.Forms.Label();
  64. this.label44 = new System.Windows.Forms.Label();
  65. this.label70 = new System.Windows.Forms.Label();
  66. this.label48 = new System.Windows.Forms.Label();
  67. this.label54 = new System.Windows.Forms.Label();
  68. this.label37 = new System.Windows.Forms.Label();
  69. this.label41 = new System.Windows.Forms.Label();
  70. this.label36 = new System.Windows.Forms.Label();
  71. this.label38 = new System.Windows.Forms.Label();
  72. this.label22 = new System.Windows.Forms.Label();
  73. this.label112 = new System.Windows.Forms.Label();
  74. this.label35 = new System.Windows.Forms.Label();
  75. this.label23 = new System.Windows.Forms.Label();
  76. this.label24 = new System.Windows.Forms.Label();
  77. this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
  78. this.textBox_RunInfo_OutSpeed = new System.Windows.Forms.TextBox();
  79. this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
  80. this.textBox_Sensor1 = new System.Windows.Forms.TextBox();
  81. this.textBox_RunInfo_Voltage = new System.Windows.Forms.TextBox();
  82. this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
  83. this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
  84. this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
  85. this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
  86. this.textBox_Sensor2 = new System.Windows.Forms.TextBox();
  87. this.textBox_RunInfo_Gear = new System.Windows.Forms.TextBox();
  88. this.textBox_RunInfo_Light = new System.Windows.Forms.TextBox();
  89. this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
  90. this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
  91. this.textBox_RunInfo_ODO_Km = new System.Windows.Forms.TextBox();
  92. this.textBox_Sensor3 = new System.Windows.Forms.TextBox();
  93. this.textBox_RunInfo_PowerAvg = new System.Windows.Forms.TextBox();
  94. this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
  95. this.textBox_RunInfo_T_Roil = new System.Windows.Forms.TextBox();
  96. this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
  97. this.textBox_RunInfo_Distance = new System.Windows.Forms.TextBox();
  98. this.textBox_RunInfo_Time = new System.Windows.Forms.TextBox();
  99. this.textBox_RunInfo_ErrorCode = new System.Windows.Forms.TextBox();
  100. this.groupBox5 = new System.Windows.Forms.GroupBox();
  101. this.radioButton_WorkMode_Confg = new System.Windows.Forms.RadioButton();
  102. this.radioButton_WorkMode_Run = new System.Windows.Forms.RadioButton();
  103. this.groupBox6 = new System.Windows.Forms.GroupBox();
  104. this.checkBox_AutoSend = new System.Windows.Forms.CheckBox();
  105. this.radioButton_Gear_WALK = new System.Windows.Forms.RadioButton();
  106. this.radioButton_Gear_SMART = new System.Windows.Forms.RadioButton();
  107. this.radioButton_Gear_TURBO = new System.Windows.Forms.RadioButton();
  108. this.radioButton_Gear_SPORT = new System.Windows.Forms.RadioButton();
  109. this.radioButton_Gear_NORM = new System.Windows.Forms.RadioButton();
  110. this.radioButton_Gear_ECO = new System.Windows.Forms.RadioButton();
  111. this.radioButton_Gear_OFF = new System.Windows.Forms.RadioButton();
  112. this.groupBox7 = new System.Windows.Forms.GroupBox();
  113. this.radioButton_Light_OFF = new System.Windows.Forms.RadioButton();
  114. this.radioButton_Light_ON = new System.Windows.Forms.RadioButton();
  115. this.groupBox8 = new System.Windows.Forms.GroupBox();
  116. this.button_Reset = new System.Windows.Forms.Button();
  117. this.button_LogClear = new System.Windows.Forms.Button();
  118. this.button_Recovery = new System.Windows.Forms.Button();
  119. this.button_ClearData = new System.Windows.Forms.Button();
  120. this.groupBox9 = new System.Windows.Forms.GroupBox();
  121. this.button_Write_Mode = new System.Windows.Forms.Button();
  122. this.button_Read_VerInfo = new System.Windows.Forms.Button();
  123. this.button_Write_SN = new System.Windows.Forms.Button();
  124. this.label109 = new System.Windows.Forms.Label();
  125. this.label120 = new System.Windows.Forms.Label();
  126. this.label8 = new System.Windows.Forms.Label();
  127. this.label7 = new System.Windows.Forms.Label();
  128. this.textBox_Firmware_Special = new System.Windows.Forms.TextBox();
  129. this.textBox_TE_FW = new System.Windows.Forms.TextBox();
  130. this.textBox_FW = new System.Windows.Forms.TextBox();
  131. this.textBox_HW = new System.Windows.Forms.TextBox();
  132. this.textBox_SN = new System.Windows.Forms.TextBox();
  133. this.textBox_Mode = new System.Windows.Forms.TextBox();
  134. this.label6 = new System.Windows.Forms.Label();
  135. this.groupBox10 = new System.Windows.Forms.GroupBox();
  136. this.comboBox_SpeedSing = new System.Windows.Forms.ComboBox();
  137. this.comboBox_SerNum = new System.Windows.Forms.ComboBox();
  138. this.comboBox_NoWatch = new System.Windows.Forms.ComboBox();
  139. this.comboBox_DownDec = new System.Windows.Forms.ComboBox();
  140. this.comboBox_StartMode = new System.Windows.Forms.ComboBox();
  141. this.comboBox_Config_GasMode = new System.Windows.Forms.ComboBox();
  142. this.button_Write_Config = new System.Windows.Forms.Button();
  143. this.button_Read_Config = new System.Windows.Forms.Button();
  144. this.label27 = new System.Windows.Forms.Label();
  145. this.label26 = new System.Windows.Forms.Label();
  146. this.textBox_Config_SPORT_K = new System.Windows.Forms.TextBox();
  147. this.textBox_Config_SMART_K = new System.Windows.Forms.TextBox();
  148. this.textBox_Config_NORM_Acc = new System.Windows.Forms.TextBox();
  149. this.textBox_Config_TURBO_Acc = new System.Windows.Forms.TextBox();
  150. this.textBox_Config_TURBO_K = new System.Windows.Forms.TextBox();
  151. this.textBox_Config_SPORT_Acc = new System.Windows.Forms.TextBox();
  152. this.textBox_Config_SMART_Acc = new System.Windows.Forms.TextBox();
  153. this.label25 = new System.Windows.Forms.Label();
  154. this.textBox_Config_NORM_K = new System.Windows.Forms.TextBox();
  155. this.textBox_Config_ECO_Acc = new System.Windows.Forms.TextBox();
  156. this.label31 = new System.Windows.Forms.Label();
  157. this.label30 = new System.Windows.Forms.Label();
  158. this.label34 = new System.Windows.Forms.Label();
  159. this.textBox_Config_ECO_K = new System.Windows.Forms.TextBox();
  160. this.textBox_Config_WalkMotorSpeed = new System.Windows.Forms.TextBox();
  161. this.textBox_Config_WheelAdj = new System.Windows.Forms.TextBox();
  162. this.textBox_Config_WalkSpeedLimit = new System.Windows.Forms.TextBox();
  163. this.textBox_Config_UV_Protect = new System.Windows.Forms.TextBox();
  164. this.label29 = new System.Windows.Forms.Label();
  165. this.label33 = new System.Windows.Forms.Label();
  166. this.textBox_Config_CadenceNum = new System.Windows.Forms.TextBox();
  167. this.textBox_Config_WheelSize = new System.Windows.Forms.TextBox();
  168. this.textBox_Config_MaxSpeed = new System.Windows.Forms.TextBox();
  169. this.label28 = new System.Windows.Forms.Label();
  170. this.label32 = new System.Windows.Forms.Label();
  171. this.textBox_Config_T_Alarm = new System.Windows.Forms.TextBox();
  172. this.textBox_Config_StopTime = new System.Windows.Forms.TextBox();
  173. this.label126 = new System.Windows.Forms.Label();
  174. this.label63 = new System.Windows.Forms.Label();
  175. this.label62 = new System.Windows.Forms.Label();
  176. this.label125 = new System.Windows.Forms.Label();
  177. this.label124 = new System.Windows.Forms.Label();
  178. this.label21 = new System.Windows.Forms.Label();
  179. this.textBox_Config_MaxCurrent = new System.Windows.Forms.TextBox();
  180. this.textBox_Config_SpeedNum = new System.Windows.Forms.TextBox();
  181. this.label61 = new System.Windows.Forms.Label();
  182. this.label20 = new System.Windows.Forms.Label();
  183. this.textBox_Config_Teeth_B = new System.Windows.Forms.TextBox();
  184. this.textBox_Config_T_Protect = new System.Windows.Forms.TextBox();
  185. this.label60 = new System.Windows.Forms.Label();
  186. this.label19 = new System.Windows.Forms.Label();
  187. this.label11 = new System.Windows.Forms.Label();
  188. this.label18 = new System.Windows.Forms.Label();
  189. this.label13 = new System.Windows.Forms.Label();
  190. this.label17 = new System.Windows.Forms.Label();
  191. this.label14 = new System.Windows.Forms.Label();
  192. this.label16 = new System.Windows.Forms.Label();
  193. this.label15 = new System.Windows.Forms.Label();
  194. this.label12 = new System.Windows.Forms.Label();
  195. this.label59 = new System.Windows.Forms.Label();
  196. this.label10 = new System.Windows.Forms.Label();
  197. this.textBox_Config_Teeth_F = new System.Windows.Forms.TextBox();
  198. this.groupBox11 = new System.Windows.Forms.GroupBox();
  199. this.button_Write_MotorConfig = new System.Windows.Forms.Button();
  200. this.button_Read_MortoConfig = new System.Windows.Forms.Button();
  201. this.textBox_Motor_Power = new System.Windows.Forms.TextBox();
  202. this.textBox_Motor_R = new System.Windows.Forms.TextBox();
  203. this.textBox_Motor_Speed = new System.Windows.Forms.TextBox();
  204. this.textBox_Motor_Voltage = new System.Windows.Forms.TextBox();
  205. this.textBox_Motor_E = new System.Windows.Forms.TextBox();
  206. this.textBox_Motor_Lq = new System.Windows.Forms.TextBox();
  207. this.label45 = new System.Windows.Forms.Label();
  208. this.textBox_Motor_Ld = new System.Windows.Forms.TextBox();
  209. this.label53 = new System.Windows.Forms.Label();
  210. this.label47 = new System.Windows.Forms.Label();
  211. this.label51 = new System.Windows.Forms.Label();
  212. this.label52 = new System.Windows.Forms.Label();
  213. this.label49 = new System.Windows.Forms.Label();
  214. this.label50 = new System.Windows.Forms.Label();
  215. this.timer1 = new System.Windows.Forms.Timer(this.components);
  216. this.groupBox4 = new System.Windows.Forms.GroupBox();
  217. this.textBox_Config_SpeedlimitStop = new System.Windows.Forms.TextBox();
  218. this.label128 = new System.Windows.Forms.Label();
  219. this.textBox_Config_SpeedlimitStart = new System.Windows.Forms.TextBox();
  220. this.label129 = new System.Windows.Forms.Label();
  221. this.textBox_Config_Period = new System.Windows.Forms.TextBox();
  222. this.label130 = new System.Windows.Forms.Label();
  223. this.textBox_Config_Pulse = new System.Windows.Forms.TextBox();
  224. this.label131 = new System.Windows.Forms.Label();
  225. this.textBox_Config_SpeedAlarm = new System.Windows.Forms.TextBox();
  226. this.label132 = new System.Windows.Forms.Label();
  227. this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
  228. this.comboBox_AttiSensor = new System.Windows.Forms.ComboBox();
  229. this.comboBox_FrontLigthVol = new System.Windows.Forms.ComboBox();
  230. this.comboBox_TailLightMode = new System.Windows.Forms.ComboBox();
  231. this.button_Write_Config_Ext = new System.Windows.Forms.Button();
  232. this.button_Read_Config_Ext = new System.Windows.Forms.Button();
  233. this.label123 = new System.Windows.Forms.Label();
  234. this.label66 = new System.Windows.Forms.Label();
  235. this.label122 = new System.Windows.Forms.Label();
  236. this.label65 = new System.Windows.Forms.Label();
  237. this.textBox_Config_Angle_Roll = new System.Windows.Forms.TextBox();
  238. this.label121 = new System.Windows.Forms.Label();
  239. this.label64 = new System.Windows.Forms.Label();
  240. this.textBox_Config_Angle_Pitch = new System.Windows.Forms.TextBox();
  241. this.groupBox12 = new System.Windows.Forms.GroupBox();
  242. this.checkBox_ReadRideInfo = new System.Windows.Forms.CheckBox();
  243. this.button_Read_RidedInfo = new System.Windows.Forms.Button();
  244. this.label71 = new System.Windows.Forms.Label();
  245. this.label67 = new System.Windows.Forms.Label();
  246. this.textBox_RideInfo_Trip_Time = new System.Windows.Forms.TextBox();
  247. this.textBox_RideInfo_Trip_Km = new System.Windows.Forms.TextBox();
  248. this.label68 = new System.Windows.Forms.Label();
  249. this.textBox_RideInfo_ODO_Time = new System.Windows.Forms.TextBox();
  250. this.label69 = new System.Windows.Forms.Label();
  251. this.textBox_RideInfo_ODO_Km = new System.Windows.Forms.TextBox();
  252. this.groupBox13 = new System.Windows.Forms.GroupBox();
  253. this.checkBox_ReadAttitudeAngleAutoSend = new System.Windows.Forms.CheckBox();
  254. this.button_Read_AttitudeAngle = new System.Windows.Forms.Button();
  255. this.label72 = new System.Windows.Forms.Label();
  256. this.label73 = new System.Windows.Forms.Label();
  257. this.textBox_Attitude_RollAngle_Rel = new System.Windows.Forms.TextBox();
  258. this.textBox_Attitude_RollAngle_Abs = new System.Windows.Forms.TextBox();
  259. this.label74 = new System.Windows.Forms.Label();
  260. this.textBox_Attitude_PitchAngle_Rel = new System.Windows.Forms.TextBox();
  261. this.label75 = new System.Windows.Forms.Label();
  262. this.textBox_Attitude_PitchAngle_Abs = new System.Windows.Forms.TextBox();
  263. this.label78 = new System.Windows.Forms.Label();
  264. this.label_BiuldTime = new System.Windows.Forms.Label();
  265. this.label77 = new System.Windows.Forms.Label();
  266. this.groupBox14 = new System.Windows.Forms.GroupBox();
  267. this.label99 = new System.Windows.Forms.Label();
  268. this.button_ReadErrorLog = new System.Windows.Forms.Button();
  269. this.button_ReadRunLog = new System.Windows.Forms.Button();
  270. this.label96 = new System.Windows.Forms.Label();
  271. this.textBox_Runlog1_MCU_MIN = new System.Windows.Forms.TextBox();
  272. this.textBox_Runlog1_Coil_MIN = new System.Windows.Forms.TextBox();
  273. this.label98 = new System.Windows.Forms.Label();
  274. this.textBox_Runlog1_MCU_MAX = new System.Windows.Forms.TextBox();
  275. this.label97 = new System.Windows.Forms.Label();
  276. this.textBox_Runlog1_Coil_MAX = new System.Windows.Forms.TextBox();
  277. this.label95 = new System.Windows.Forms.Label();
  278. this.textBox_Runlog1_PCB_MIN = new System.Windows.Forms.TextBox();
  279. this.label94 = new System.Windows.Forms.Label();
  280. this.textBox_Runlog1_PCB_MAX = new System.Windows.Forms.TextBox();
  281. this.label93 = new System.Windows.Forms.Label();
  282. this.textBox_Runlog1_PBUFault = new System.Windows.Forms.TextBox();
  283. this.label92 = new System.Windows.Forms.Label();
  284. this.textBox_Runlog1_HMIFault = new System.Windows.Forms.TextBox();
  285. this.label91 = new System.Windows.Forms.Label();
  286. this.textBox_Runlog1_BMSFault = new System.Windows.Forms.TextBox();
  287. this.label90 = new System.Windows.Forms.Label();
  288. this.textBox_Runlog1_NTCFault = new System.Windows.Forms.TextBox();
  289. this.label89 = new System.Windows.Forms.Label();
  290. this.textBox_Runlog1_Phase = new System.Windows.Forms.TextBox();
  291. this.label88 = new System.Windows.Forms.Label();
  292. this.textBox_Runlog1_HallFault = new System.Windows.Forms.TextBox();
  293. this.label87 = new System.Windows.Forms.Label();
  294. this.textBox_Runlog1_TQSFault = new System.Windows.Forms.TextBox();
  295. this.label86 = new System.Windows.Forms.Label();
  296. this.textBox_Runlog1_SPSFault = new System.Windows.Forms.TextBox();
  297. this.label85 = new System.Windows.Forms.Label();
  298. this.textBox_Runlog1_OT = new System.Windows.Forms.TextBox();
  299. this.label84 = new System.Windows.Forms.Label();
  300. this.textBox_Runlog1_Lock = new System.Windows.Forms.TextBox();
  301. this.label83 = new System.Windows.Forms.Label();
  302. this.textBox_Runlog1_OV = new System.Windows.Forms.TextBox();
  303. this.label82 = new System.Windows.Forms.Label();
  304. this.textBox_Runlog1_UV = new System.Windows.Forms.TextBox();
  305. this.label81 = new System.Windows.Forms.Label();
  306. this.textBox_Runlog1_OC = new System.Windows.Forms.TextBox();
  307. this.label80 = new System.Windows.Forms.Label();
  308. this.textBox_Runlog1_RunTime = new System.Windows.Forms.TextBox();
  309. this.label107 = new System.Windows.Forms.Label();
  310. this.textBox_Runlog2_TE_CircuitFault = new System.Windows.Forms.TextBox();
  311. this.label106 = new System.Windows.Forms.Label();
  312. this.textBox_Runlog2_TE_MCUFault = new System.Windows.Forms.TextBox();
  313. this.label105 = new System.Windows.Forms.Label();
  314. this.textBox_Runlog2_CircuitFault = new System.Windows.Forms.TextBox();
  315. this.label104 = new System.Windows.Forms.Label();
  316. this.textBox_Runlog2_VolFault = new System.Windows.Forms.TextBox();
  317. this.label103 = new System.Windows.Forms.Label();
  318. this.textBox_Runlog2_MOS_SC = new System.Windows.Forms.TextBox();
  319. this.label102 = new System.Windows.Forms.Label();
  320. this.textBox_Runlog2_GasFault = new System.Windows.Forms.TextBox();
  321. this.label101 = new System.Windows.Forms.Label();
  322. this.textBox_Runlog2_CDSFault = new System.Windows.Forms.TextBox();
  323. this.label100 = new System.Windows.Forms.Label();
  324. this.textBox_Runlog2_MCUFault = new System.Windows.Forms.TextBox();
  325. this.label79 = new System.Windows.Forms.Label();
  326. this.textBox_Runlog1_PowerCount = new System.Windows.Forms.TextBox();
  327. this.label108 = new System.Windows.Forms.Label();
  328. this.label_DateTime = new System.Windows.Forms.Label();
  329. this.timer2 = new System.Windows.Forms.Timer(this.components);
  330. this.button_DataExport = new System.Windows.Forms.Button();
  331. this.groupBox15 = new System.Windows.Forms.GroupBox();
  332. this.groupBox16 = new System.Windows.Forms.GroupBox();
  333. this.trackBar_MotorSpeedSet = new System.Windows.Forms.TrackBar();
  334. this.label_MotorSpeedSet = new System.Windows.Forms.Label();
  335. this.groupBox17 = new System.Windows.Forms.GroupBox();
  336. this.checkBox_Sensor3 = new System.Windows.Forms.CheckBox();
  337. this.checkBox_Sensor2 = new System.Windows.Forms.CheckBox();
  338. this.checkBox_Sensor1 = new System.Windows.Forms.CheckBox();
  339. this.label115 = new System.Windows.Forms.Label();
  340. this.button_WriteK = new System.Windows.Forms.Button();
  341. this.button_ReadZero = new System.Windows.Forms.Button();
  342. this.label5 = new System.Windows.Forms.Label();
  343. this.textBox_Sensor3_K = new System.Windows.Forms.TextBox();
  344. this.textBox_Sensor2_K = new System.Windows.Forms.TextBox();
  345. this.label119 = new System.Windows.Forms.Label();
  346. this.label118 = new System.Windows.Forms.Label();
  347. this.label117 = new System.Windows.Forms.Label();
  348. this.label116 = new System.Windows.Forms.Label();
  349. this.textBox_Sensor1_K = new System.Windows.Forms.TextBox();
  350. this.textBox_Sensor3_Zero = new System.Windows.Forms.TextBox();
  351. this.textBox_Sensor2_Zero = new System.Windows.Forms.TextBox();
  352. this.textBox_Sensor1_Zero = new System.Windows.Forms.TextBox();
  353. this.textBox_Sensor3_Std = new System.Windows.Forms.TextBox();
  354. this.textBox_Sensor2_Std = new System.Windows.Forms.TextBox();
  355. this.textBox_Sensor1_Std = new System.Windows.Forms.TextBox();
  356. this.textBox_Sensor3_Avg = new System.Windows.Forms.TextBox();
  357. this.label3 = new System.Windows.Forms.Label();
  358. this.textBox_Sensor2_Avg = new System.Windows.Forms.TextBox();
  359. this.textBox_Sensor1_Avg = new System.Windows.Forms.TextBox();
  360. this.label127 = new System.Windows.Forms.Label();
  361. this.label1_Welcom = new System.Windows.Forms.Label();
  362. this.button_ReadAll = new System.Windows.Forms.Button();
  363. this.groupBox1.SuspendLayout();
  364. this.groupBox2.SuspendLayout();
  365. this.groupBox3.SuspendLayout();
  366. this.groupBox5.SuspendLayout();
  367. this.groupBox6.SuspendLayout();
  368. this.groupBox7.SuspendLayout();
  369. this.groupBox8.SuspendLayout();
  370. this.groupBox9.SuspendLayout();
  371. this.groupBox10.SuspendLayout();
  372. this.groupBox11.SuspendLayout();
  373. this.groupBox4.SuspendLayout();
  374. this.groupBox12.SuspendLayout();
  375. this.groupBox13.SuspendLayout();
  376. this.groupBox14.SuspendLayout();
  377. this.groupBox15.SuspendLayout();
  378. this.groupBox16.SuspendLayout();
  379. ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).BeginInit();
  380. this.groupBox17.SuspendLayout();
  381. this.SuspendLayout();
  382. //
  383. // groupBox1
  384. //
  385. this.groupBox1.Controls.Add(this.label58);
  386. this.groupBox1.Controls.Add(this.button_RefreshPort);
  387. this.groupBox1.Controls.Add(this.button_ComOpen);
  388. this.groupBox1.Controls.Add(this.textBox_RevCnt);
  389. this.groupBox1.Controls.Add(this.comboBox_Baudrate);
  390. this.groupBox1.Controls.Add(this.comboBox_ComIndex);
  391. this.groupBox1.Controls.Add(this.label2);
  392. this.groupBox1.Controls.Add(this.label1);
  393. this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  394. this.groupBox1.Location = new System.Drawing.Point(7, 12);
  395. this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  396. this.groupBox1.Name = "groupBox1";
  397. this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  398. this.groupBox1.Size = new System.Drawing.Size(240, 119);
  399. this.groupBox1.TabIndex = 0;
  400. this.groupBox1.TabStop = false;
  401. this.groupBox1.Text = "串口设置";
  402. //
  403. // label58
  404. //
  405. this.label58.AutoSize = true;
  406. this.label58.Location = new System.Drawing.Point(10, 89);
  407. this.label58.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  408. this.label58.Name = "label58";
  409. this.label58.Size = new System.Drawing.Size(37, 20);
  410. this.label58.TabIndex = 10;
  411. this.label58.Text = "计数";
  412. this.label58.Click += new System.EventHandler(this.label58_Click);
  413. //
  414. // button_RefreshPort
  415. //
  416. this.button_RefreshPort.Location = new System.Drawing.Point(158, 26);
  417. this.button_RefreshPort.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  418. this.button_RefreshPort.Name = "button_RefreshPort";
  419. this.button_RefreshPort.Size = new System.Drawing.Size(72, 28);
  420. this.button_RefreshPort.TabIndex = 1;
  421. this.button_RefreshPort.Text = "刷新";
  422. this.button_RefreshPort.UseVisualStyleBackColor = true;
  423. this.button_RefreshPort.Click += new System.EventHandler(this.button_RefreshPort_Click);
  424. //
  425. // button_ComOpen
  426. //
  427. this.button_ComOpen.Location = new System.Drawing.Point(158, 55);
  428. this.button_ComOpen.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  429. this.button_ComOpen.Name = "button_ComOpen";
  430. this.button_ComOpen.Size = new System.Drawing.Size(72, 56);
  431. this.button_ComOpen.TabIndex = 1;
  432. this.button_ComOpen.Text = "连接";
  433. this.button_ComOpen.UseVisualStyleBackColor = true;
  434. this.button_ComOpen.Click += new System.EventHandler(this.button_ComOpen_Click);
  435. //
  436. // textBox_RevCnt
  437. //
  438. this.textBox_RevCnt.Location = new System.Drawing.Point(75, 85);
  439. this.textBox_RevCnt.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  440. this.textBox_RevCnt.Name = "textBox_RevCnt";
  441. this.textBox_RevCnt.ReadOnly = true;
  442. this.textBox_RevCnt.Size = new System.Drawing.Size(80, 26);
  443. this.textBox_RevCnt.TabIndex = 2;
  444. this.textBox_RevCnt.Text = "0";
  445. //
  446. // comboBox_Baudrate
  447. //
  448. this.comboBox_Baudrate.FormattingEnabled = true;
  449. this.comboBox_Baudrate.Items.AddRange(new object[] {
  450. "2400",
  451. "4800",
  452. "9600",
  453. "19200",
  454. "38400",
  455. "57600",
  456. "115200"});
  457. this.comboBox_Baudrate.Location = new System.Drawing.Point(75, 55);
  458. this.comboBox_Baudrate.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  459. this.comboBox_Baudrate.Name = "comboBox_Baudrate";
  460. this.comboBox_Baudrate.Size = new System.Drawing.Size(80, 28);
  461. this.comboBox_Baudrate.TabIndex = 1;
  462. //
  463. // comboBox_ComIndex
  464. //
  465. this.comboBox_ComIndex.FormattingEnabled = true;
  466. this.comboBox_ComIndex.Location = new System.Drawing.Point(75, 26);
  467. this.comboBox_ComIndex.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  468. this.comboBox_ComIndex.Name = "comboBox_ComIndex";
  469. this.comboBox_ComIndex.Size = new System.Drawing.Size(80, 28);
  470. this.comboBox_ComIndex.TabIndex = 1;
  471. //
  472. // label2
  473. //
  474. this.label2.AutoSize = true;
  475. this.label2.Location = new System.Drawing.Point(10, 60);
  476. this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  477. this.label2.Name = "label2";
  478. this.label2.Size = new System.Drawing.Size(51, 20);
  479. this.label2.TabIndex = 1;
  480. this.label2.Text = "波特率";
  481. //
  482. // label1
  483. //
  484. this.label1.AutoSize = true;
  485. this.label1.Location = new System.Drawing.Point(10, 28);
  486. this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  487. this.label1.Name = "label1";
  488. this.label1.Size = new System.Drawing.Size(51, 20);
  489. this.label1.TabIndex = 1;
  490. this.label1.Text = "串口号";
  491. //
  492. // serialPort1
  493. //
  494. this.serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.serialPort1_DataReceived);
  495. //
  496. // groupBox2
  497. //
  498. this.groupBox2.Controls.Add(this.button_ReadStartData);
  499. this.groupBox2.Controls.Add(this.button_Write_Torque_Start);
  500. this.groupBox2.Controls.Add(this.textBox_Torque_Stdev);
  501. this.groupBox2.Controls.Add(this.textBox_TorqueData);
  502. this.groupBox2.Controls.Add(this.textBox_Torque_Start);
  503. this.groupBox2.Controls.Add(this.label110);
  504. this.groupBox2.Controls.Add(this.label57);
  505. this.groupBox2.Controls.Add(this.label9);
  506. this.groupBox2.Controls.Add(this.label111);
  507. this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  508. this.groupBox2.Location = new System.Drawing.Point(7, 207);
  509. this.groupBox2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  510. this.groupBox2.Name = "groupBox2";
  511. this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  512. this.groupBox2.Size = new System.Drawing.Size(240, 133);
  513. this.groupBox2.TabIndex = 1;
  514. this.groupBox2.TabStop = false;
  515. this.groupBox2.Text = "力矩传感器";
  516. this.groupBox2.Visible = false;
  517. //
  518. // button_ReadStartData
  519. //
  520. this.button_ReadStartData.Location = new System.Drawing.Point(159, 69);
  521. this.button_ReadStartData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  522. this.button_ReadStartData.Name = "button_ReadStartData";
  523. this.button_ReadStartData.Size = new System.Drawing.Size(68, 30);
  524. this.button_ReadStartData.TabIndex = 4;
  525. this.button_ReadStartData.Text = "查询";
  526. this.button_ReadStartData.UseVisualStyleBackColor = true;
  527. this.button_ReadStartData.Click += new System.EventHandler(this.button_ReadStartData_Click);
  528. //
  529. // button_Write_Torque_Start
  530. //
  531. this.button_Write_Torque_Start.Enabled = false;
  532. this.button_Write_Torque_Start.Location = new System.Drawing.Point(159, 99);
  533. this.button_Write_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  534. this.button_Write_Torque_Start.Name = "button_Write_Torque_Start";
  535. this.button_Write_Torque_Start.Size = new System.Drawing.Size(68, 30);
  536. this.button_Write_Torque_Start.TabIndex = 4;
  537. this.button_Write_Torque_Start.Text = "写入";
  538. this.button_Write_Torque_Start.UseVisualStyleBackColor = true;
  539. this.button_Write_Torque_Start.Click += new System.EventHandler(this.button_Write_Torque_Start_Click);
  540. //
  541. // textBox_Torque_Stdev
  542. //
  543. this.textBox_Torque_Stdev.Location = new System.Drawing.Point(160, 42);
  544. this.textBox_Torque_Stdev.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  545. this.textBox_Torque_Stdev.Name = "textBox_Torque_Stdev";
  546. this.textBox_Torque_Stdev.ReadOnly = true;
  547. this.textBox_Torque_Stdev.Size = new System.Drawing.Size(66, 26);
  548. this.textBox_Torque_Stdev.TabIndex = 2;
  549. this.textBox_Torque_Stdev.Text = "---";
  550. //
  551. // textBox_TorqueData
  552. //
  553. this.textBox_TorqueData.Location = new System.Drawing.Point(89, 42);
  554. this.textBox_TorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  555. this.textBox_TorqueData.Name = "textBox_TorqueData";
  556. this.textBox_TorqueData.ReadOnly = true;
  557. this.textBox_TorqueData.Size = new System.Drawing.Size(66, 26);
  558. this.textBox_TorqueData.TabIndex = 2;
  559. this.textBox_TorqueData.Text = "---";
  560. //
  561. // textBox_Torque_Start
  562. //
  563. this.textBox_Torque_Start.Location = new System.Drawing.Point(89, 87);
  564. this.textBox_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  565. this.textBox_Torque_Start.Name = "textBox_Torque_Start";
  566. this.textBox_Torque_Start.Size = new System.Drawing.Size(66, 26);
  567. this.textBox_Torque_Start.TabIndex = 2;
  568. this.textBox_Torque_Start.Text = "---";
  569. //
  570. // label110
  571. //
  572. this.label110.AutoSize = true;
  573. this.label110.Location = new System.Drawing.Point(166, 18);
  574. this.label110.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  575. this.label110.Name = "label110";
  576. this.label110.Size = new System.Drawing.Size(51, 20);
  577. this.label110.TabIndex = 2;
  578. this.label110.Text = "标准差";
  579. //
  580. // label57
  581. //
  582. this.label57.AutoSize = true;
  583. this.label57.Location = new System.Drawing.Point(96, 18);
  584. this.label57.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  585. this.label57.Name = "label57";
  586. this.label57.Size = new System.Drawing.Size(51, 20);
  587. this.label57.TabIndex = 2;
  588. this.label57.Text = "平均值";
  589. //
  590. // label9
  591. //
  592. this.label9.AutoSize = true;
  593. this.label9.Location = new System.Drawing.Point(7, 90);
  594. this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  595. this.label9.Name = "label9";
  596. this.label9.Size = new System.Drawing.Size(51, 20);
  597. this.label9.TabIndex = 2;
  598. this.label9.Text = "启动值";
  599. this.label9.DoubleClick += new System.EventHandler(this.label9_DoubleClick);
  600. this.label9.MouseHover += new System.EventHandler(this.label9_MouseHover);
  601. //
  602. // label111
  603. //
  604. this.label111.AutoSize = true;
  605. this.label111.Location = new System.Drawing.Point(6, 44);
  606. this.label111.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  607. this.label111.Name = "label111";
  608. this.label111.Size = new System.Drawing.Size(79, 20);
  609. this.label111.TabIndex = 2;
  610. this.label111.Text = "力矩传感器";
  611. //
  612. // checkBox_Savedata
  613. //
  614. this.checkBox_Savedata.AutoSize = true;
  615. this.checkBox_Savedata.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  616. this.checkBox_Savedata.ForeColor = System.Drawing.Color.Red;
  617. this.checkBox_Savedata.Location = new System.Drawing.Point(11, 45);
  618. this.checkBox_Savedata.Name = "checkBox_Savedata";
  619. this.checkBox_Savedata.Size = new System.Drawing.Size(112, 24);
  620. this.checkBox_Savedata.TabIndex = 6;
  621. this.checkBox_Savedata.Text = "运行信息记录";
  622. this.checkBox_Savedata.UseVisualStyleBackColor = true;
  623. this.checkBox_Savedata.CheckedChanged += new System.EventHandler(this.checkBox_Savedata_CheckedChanged);
  624. //
  625. // checkBox_ReadTorqueData
  626. //
  627. this.checkBox_ReadTorqueData.AutoSize = true;
  628. this.checkBox_ReadTorqueData.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  629. this.checkBox_ReadTorqueData.ForeColor = System.Drawing.Color.Red;
  630. this.checkBox_ReadTorqueData.Location = new System.Drawing.Point(11, 20);
  631. this.checkBox_ReadTorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  632. this.checkBox_ReadTorqueData.Name = "checkBox_ReadTorqueData";
  633. this.checkBox_ReadTorqueData.Size = new System.Drawing.Size(84, 24);
  634. this.checkBox_ReadTorqueData.TabIndex = 5;
  635. this.checkBox_ReadTorqueData.Text = "曲线采集";
  636. this.checkBox_ReadTorqueData.UseVisualStyleBackColor = true;
  637. this.checkBox_ReadTorqueData.CheckedChanged += new System.EventHandler(this.checkBox_ReadTorqueData_CheckedChanged);
  638. //
  639. // label4
  640. //
  641. this.label4.AutoSize = true;
  642. this.label4.Location = new System.Drawing.Point(7, 25);
  643. this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  644. this.label4.Name = "label4";
  645. this.label4.Size = new System.Drawing.Size(37, 20);
  646. this.label4.TabIndex = 2;
  647. this.label4.Text = "型号";
  648. //
  649. // groupBox3
  650. //
  651. this.groupBox3.Controls.Add(this.label114);
  652. this.groupBox3.Controls.Add(this.label46);
  653. this.groupBox3.Controls.Add(this.label56);
  654. this.groupBox3.Controls.Add(this.label55);
  655. this.groupBox3.Controls.Add(this.label113);
  656. this.groupBox3.Controls.Add(this.label43);
  657. this.groupBox3.Controls.Add(this.label76);
  658. this.groupBox3.Controls.Add(this.label42);
  659. this.groupBox3.Controls.Add(this.label40);
  660. this.groupBox3.Controls.Add(this.label39);
  661. this.groupBox3.Controls.Add(this.label44);
  662. this.groupBox3.Controls.Add(this.label70);
  663. this.groupBox3.Controls.Add(this.label48);
  664. this.groupBox3.Controls.Add(this.label54);
  665. this.groupBox3.Controls.Add(this.label37);
  666. this.groupBox3.Controls.Add(this.label41);
  667. this.groupBox3.Controls.Add(this.label36);
  668. this.groupBox3.Controls.Add(this.label38);
  669. this.groupBox3.Controls.Add(this.label22);
  670. this.groupBox3.Controls.Add(this.label112);
  671. this.groupBox3.Controls.Add(this.label35);
  672. this.groupBox3.Controls.Add(this.label23);
  673. this.groupBox3.Controls.Add(this.label24);
  674. this.groupBox3.Controls.Add(this.textBox_RunInfo_BikeSpeed);
  675. this.groupBox3.Controls.Add(this.textBox_RunInfo_OutSpeed);
  676. this.groupBox3.Controls.Add(this.textBox_RunInfo_Power);
  677. this.groupBox3.Controls.Add(this.textBox_Sensor1);
  678. this.groupBox3.Controls.Add(this.textBox_RunInfo_Voltage);
  679. this.groupBox3.Controls.Add(this.textBox_RunInfo_Current);
  680. this.groupBox3.Controls.Add(this.textBox_RunInfo_Cadence);
  681. this.groupBox3.Controls.Add(this.textBox_RunInfo_Torque);
  682. this.groupBox3.Controls.Add(this.textBox_RunInfo_Dir);
  683. this.groupBox3.Controls.Add(this.textBox_Sensor2);
  684. this.groupBox3.Controls.Add(this.textBox_RunInfo_Gear);
  685. this.groupBox3.Controls.Add(this.textBox_RunInfo_Light);
  686. this.groupBox3.Controls.Add(this.textBox_RunInfo_SOC);
  687. this.groupBox3.Controls.Add(this.textBox_RunInfo_Range);
  688. this.groupBox3.Controls.Add(this.textBox_RunInfo_ODO_Km);
  689. this.groupBox3.Controls.Add(this.textBox_Sensor3);
  690. this.groupBox3.Controls.Add(this.textBox_RunInfo_PowerAvg);
  691. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_PCB);
  692. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_Roil);
  693. this.groupBox3.Controls.Add(this.textBox_RunInfo_T_MCU);
  694. this.groupBox3.Controls.Add(this.textBox_RunInfo_Distance);
  695. this.groupBox3.Controls.Add(this.textBox_RunInfo_Time);
  696. this.groupBox3.Controls.Add(this.textBox_RunInfo_ErrorCode);
  697. this.groupBox3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  698. this.groupBox3.Location = new System.Drawing.Point(251, 13);
  699. this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  700. this.groupBox3.Name = "groupBox3";
  701. this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  702. this.groupBox3.Size = new System.Drawing.Size(640, 191);
  703. this.groupBox3.TabIndex = 2;
  704. this.groupBox3.TabStop = false;
  705. this.groupBox3.Text = "运行信息";
  706. this.groupBox3.Visible = false;
  707. //
  708. // label114
  709. //
  710. this.label114.AutoSize = true;
  711. this.label114.Location = new System.Drawing.Point(304, 164);
  712. this.label114.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  713. this.label114.Name = "label114";
  714. this.label114.Size = new System.Drawing.Size(59, 20);
  715. this.label114.TabIndex = 2;
  716. this.label114.Text = "传感器3";
  717. //
  718. // label46
  719. //
  720. this.label46.AutoSize = true;
  721. this.label46.Location = new System.Drawing.Point(304, 137);
  722. this.label46.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  723. this.label46.Name = "label46";
  724. this.label46.Size = new System.Drawing.Size(64, 20);
  725. this.label46.TabIndex = 2;
  726. this.label46.Text = "PCB温度";
  727. //
  728. // label56
  729. //
  730. this.label56.AutoSize = true;
  731. this.label56.Location = new System.Drawing.Point(467, 29);
  732. this.label56.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  733. this.label56.Name = "label56";
  734. this.label56.Size = new System.Drawing.Size(65, 20);
  735. this.label56.TabIndex = 2;
  736. this.label56.Text = "绕组温度";
  737. //
  738. // label55
  739. //
  740. this.label55.AutoSize = true;
  741. this.label55.Location = new System.Drawing.Point(467, 137);
  742. this.label55.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  743. this.label55.Name = "label55";
  744. this.label55.Size = new System.Drawing.Size(51, 20);
  745. this.label55.TabIndex = 2;
  746. this.label55.Text = "故障码";
  747. //
  748. // label113
  749. //
  750. this.label113.AutoSize = true;
  751. this.label113.Location = new System.Drawing.Point(161, 164);
  752. this.label113.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  753. this.label113.Name = "label113";
  754. this.label113.Size = new System.Drawing.Size(59, 20);
  755. this.label113.TabIndex = 2;
  756. this.label113.Text = "传感器2";
  757. //
  758. // label43
  759. //
  760. this.label43.AutoSize = true;
  761. this.label43.Location = new System.Drawing.Point(161, 137);
  762. this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  763. this.label43.Name = "label43";
  764. this.label43.Size = new System.Drawing.Size(65, 20);
  765. this.label43.TabIndex = 2;
  766. this.label43.Text = "大灯状态";
  767. //
  768. // label76
  769. //
  770. this.label76.AutoSize = true;
  771. this.label76.Location = new System.Drawing.Point(303, 83);
  772. this.label76.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  773. this.label76.Name = "label76";
  774. this.label76.Size = new System.Drawing.Size(70, 20);
  775. this.label76.TabIndex = 2;
  776. this.label76.Text = "ODO里程";
  777. //
  778. // label42
  779. //
  780. this.label42.AutoSize = true;
  781. this.label42.Location = new System.Drawing.Point(303, 56);
  782. this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  783. this.label42.Name = "label42";
  784. this.label42.Size = new System.Drawing.Size(65, 20);
  785. this.label42.TabIndex = 2;
  786. this.label42.Text = "续航里程";
  787. //
  788. // label40
  789. //
  790. this.label40.AutoSize = true;
  791. this.label40.Location = new System.Drawing.Point(161, 56);
  792. this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  793. this.label40.Name = "label40";
  794. this.label40.Size = new System.Drawing.Size(65, 20);
  795. this.label40.TabIndex = 2;
  796. this.label40.Text = "踩踏力矩";
  797. //
  798. // label39
  799. //
  800. this.label39.AutoSize = true;
  801. this.label39.Location = new System.Drawing.Point(161, 110);
  802. this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  803. this.label39.Name = "label39";
  804. this.label39.Size = new System.Drawing.Size(65, 20);
  805. this.label39.TabIndex = 2;
  806. this.label39.Text = "助力档位";
  807. //
  808. // label44
  809. //
  810. this.label44.AutoSize = true;
  811. this.label44.Location = new System.Drawing.Point(303, 110);
  812. this.label44.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  813. this.label44.Name = "label44";
  814. this.label44.Size = new System.Drawing.Size(65, 20);
  815. this.label44.TabIndex = 2;
  816. this.label44.Text = "平均功耗";
  817. //
  818. // label70
  819. //
  820. this.label70.AutoSize = true;
  821. this.label70.Location = new System.Drawing.Point(467, 110);
  822. this.label70.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  823. this.label70.Name = "label70";
  824. this.label70.Size = new System.Drawing.Size(65, 20);
  825. this.label70.TabIndex = 2;
  826. this.label70.Text = "单次时间";
  827. //
  828. // label48
  829. //
  830. this.label48.AutoSize = true;
  831. this.label48.Location = new System.Drawing.Point(467, 83);
  832. this.label48.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  833. this.label48.Name = "label48";
  834. this.label48.Size = new System.Drawing.Size(65, 20);
  835. this.label48.TabIndex = 2;
  836. this.label48.Text = "单次里程";
  837. //
  838. // label54
  839. //
  840. this.label54.AutoSize = true;
  841. this.label54.Location = new System.Drawing.Point(467, 56);
  842. this.label54.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  843. this.label54.Name = "label54";
  844. this.label54.Size = new System.Drawing.Size(70, 20);
  845. this.label54.TabIndex = 2;
  846. this.label54.Text = "MCU温度";
  847. //
  848. // label37
  849. //
  850. this.label37.AutoSize = true;
  851. this.label37.Location = new System.Drawing.Point(7, 110);
  852. this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  853. this.label37.Name = "label37";
  854. this.label37.Size = new System.Drawing.Size(65, 20);
  855. this.label37.TabIndex = 2;
  856. this.label37.Text = "母线电压";
  857. //
  858. // label41
  859. //
  860. this.label41.AutoSize = true;
  861. this.label41.Location = new System.Drawing.Point(303, 29);
  862. this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  863. this.label41.Name = "label41";
  864. this.label41.Size = new System.Drawing.Size(65, 20);
  865. this.label41.TabIndex = 2;
  866. this.label41.Text = "剩余电量";
  867. //
  868. // label36
  869. //
  870. this.label36.AutoSize = true;
  871. this.label36.Location = new System.Drawing.Point(161, 29);
  872. this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  873. this.label36.Name = "label36";
  874. this.label36.Size = new System.Drawing.Size(37, 20);
  875. this.label36.TabIndex = 2;
  876. this.label36.Text = "踏频";
  877. //
  878. // label38
  879. //
  880. this.label38.AutoSize = true;
  881. this.label38.Location = new System.Drawing.Point(161, 83);
  882. this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  883. this.label38.Name = "label38";
  884. this.label38.Size = new System.Drawing.Size(65, 20);
  885. this.label38.TabIndex = 2;
  886. this.label38.Text = "踩踏方向";
  887. //
  888. // label22
  889. //
  890. this.label22.AutoSize = true;
  891. this.label22.Location = new System.Drawing.Point(7, 29);
  892. this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  893. this.label22.Name = "label22";
  894. this.label22.Size = new System.Drawing.Size(37, 20);
  895. this.label22.TabIndex = 2;
  896. this.label22.Text = "车速";
  897. //
  898. // label112
  899. //
  900. this.label112.AutoSize = true;
  901. this.label112.Location = new System.Drawing.Point(7, 164);
  902. this.label112.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  903. this.label112.Name = "label112";
  904. this.label112.Size = new System.Drawing.Size(59, 20);
  905. this.label112.TabIndex = 2;
  906. this.label112.Text = "传感器1";
  907. //
  908. // label35
  909. //
  910. this.label35.AutoSize = true;
  911. this.label35.Location = new System.Drawing.Point(7, 137);
  912. this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  913. this.label35.Name = "label35";
  914. this.label35.Size = new System.Drawing.Size(65, 20);
  915. this.label35.TabIndex = 2;
  916. this.label35.Text = "母线电流";
  917. //
  918. // label23
  919. //
  920. this.label23.AutoSize = true;
  921. this.label23.Location = new System.Drawing.Point(7, 83);
  922. this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  923. this.label23.Name = "label23";
  924. this.label23.Size = new System.Drawing.Size(51, 20);
  925. this.label23.TabIndex = 2;
  926. this.label23.Text = "电功率";
  927. //
  928. // label24
  929. //
  930. this.label24.AutoSize = true;
  931. this.label24.Location = new System.Drawing.Point(7, 56);
  932. this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  933. this.label24.Name = "label24";
  934. this.label24.Size = new System.Drawing.Size(65, 20);
  935. this.label24.TabIndex = 2;
  936. this.label24.Text = "输出转速";
  937. //
  938. // textBox_RunInfo_BikeSpeed
  939. //
  940. this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(77, 25);
  941. this.textBox_RunInfo_BikeSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  942. this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
  943. this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
  944. this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(81, 26);
  945. this.textBox_RunInfo_BikeSpeed.TabIndex = 17;
  946. //
  947. // textBox_RunInfo_OutSpeed
  948. //
  949. this.textBox_RunInfo_OutSpeed.Location = new System.Drawing.Point(77, 52);
  950. this.textBox_RunInfo_OutSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  951. this.textBox_RunInfo_OutSpeed.Name = "textBox_RunInfo_OutSpeed";
  952. this.textBox_RunInfo_OutSpeed.ReadOnly = true;
  953. this.textBox_RunInfo_OutSpeed.Size = new System.Drawing.Size(81, 26);
  954. this.textBox_RunInfo_OutSpeed.TabIndex = 21;
  955. //
  956. // textBox_RunInfo_Power
  957. //
  958. this.textBox_RunInfo_Power.Location = new System.Drawing.Point(77, 79);
  959. this.textBox_RunInfo_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  960. this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
  961. this.textBox_RunInfo_Power.ReadOnly = true;
  962. this.textBox_RunInfo_Power.Size = new System.Drawing.Size(81, 26);
  963. this.textBox_RunInfo_Power.TabIndex = 25;
  964. //
  965. // textBox_Sensor1
  966. //
  967. this.textBox_Sensor1.Location = new System.Drawing.Point(77, 160);
  968. this.textBox_Sensor1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  969. this.textBox_Sensor1.Name = "textBox_Sensor1";
  970. this.textBox_Sensor1.ReadOnly = true;
  971. this.textBox_Sensor1.Size = new System.Drawing.Size(81, 26);
  972. this.textBox_Sensor1.TabIndex = 37;
  973. //
  974. // textBox_RunInfo_Voltage
  975. //
  976. this.textBox_RunInfo_Voltage.Location = new System.Drawing.Point(77, 106);
  977. this.textBox_RunInfo_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  978. this.textBox_RunInfo_Voltage.Name = "textBox_RunInfo_Voltage";
  979. this.textBox_RunInfo_Voltage.ReadOnly = true;
  980. this.textBox_RunInfo_Voltage.Size = new System.Drawing.Size(81, 26);
  981. this.textBox_RunInfo_Voltage.TabIndex = 29;
  982. //
  983. // textBox_RunInfo_Current
  984. //
  985. this.textBox_RunInfo_Current.Location = new System.Drawing.Point(77, 133);
  986. this.textBox_RunInfo_Current.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  987. this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
  988. this.textBox_RunInfo_Current.ReadOnly = true;
  989. this.textBox_RunInfo_Current.Size = new System.Drawing.Size(81, 26);
  990. this.textBox_RunInfo_Current.TabIndex = 33;
  991. //
  992. // textBox_RunInfo_Cadence
  993. //
  994. this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(230, 25);
  995. this.textBox_RunInfo_Cadence.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  996. this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
  997. this.textBox_RunInfo_Cadence.ReadOnly = true;
  998. this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(70, 26);
  999. this.textBox_RunInfo_Cadence.TabIndex = 18;
  1000. //
  1001. // textBox_RunInfo_Torque
  1002. //
  1003. this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(230, 52);
  1004. this.textBox_RunInfo_Torque.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1005. this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
  1006. this.textBox_RunInfo_Torque.ReadOnly = true;
  1007. this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(70, 26);
  1008. this.textBox_RunInfo_Torque.TabIndex = 22;
  1009. //
  1010. // textBox_RunInfo_Dir
  1011. //
  1012. this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(230, 79);
  1013. this.textBox_RunInfo_Dir.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1014. this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
  1015. this.textBox_RunInfo_Dir.ReadOnly = true;
  1016. this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(70, 26);
  1017. this.textBox_RunInfo_Dir.TabIndex = 26;
  1018. //
  1019. // textBox_Sensor2
  1020. //
  1021. this.textBox_Sensor2.Location = new System.Drawing.Point(230, 160);
  1022. this.textBox_Sensor2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1023. this.textBox_Sensor2.Name = "textBox_Sensor2";
  1024. this.textBox_Sensor2.ReadOnly = true;
  1025. this.textBox_Sensor2.Size = new System.Drawing.Size(70, 26);
  1026. this.textBox_Sensor2.TabIndex = 38;
  1027. //
  1028. // textBox_RunInfo_Gear
  1029. //
  1030. this.textBox_RunInfo_Gear.Location = new System.Drawing.Point(230, 106);
  1031. this.textBox_RunInfo_Gear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1032. this.textBox_RunInfo_Gear.Name = "textBox_RunInfo_Gear";
  1033. this.textBox_RunInfo_Gear.ReadOnly = true;
  1034. this.textBox_RunInfo_Gear.Size = new System.Drawing.Size(70, 26);
  1035. this.textBox_RunInfo_Gear.TabIndex = 30;
  1036. //
  1037. // textBox_RunInfo_Light
  1038. //
  1039. this.textBox_RunInfo_Light.Location = new System.Drawing.Point(230, 133);
  1040. this.textBox_RunInfo_Light.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1041. this.textBox_RunInfo_Light.Name = "textBox_RunInfo_Light";
  1042. this.textBox_RunInfo_Light.ReadOnly = true;
  1043. this.textBox_RunInfo_Light.Size = new System.Drawing.Size(70, 26);
  1044. this.textBox_RunInfo_Light.TabIndex = 34;
  1045. //
  1046. // textBox_RunInfo_SOC
  1047. //
  1048. this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(374, 25);
  1049. this.textBox_RunInfo_SOC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1050. this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
  1051. this.textBox_RunInfo_SOC.ReadOnly = true;
  1052. this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(90, 26);
  1053. this.textBox_RunInfo_SOC.TabIndex = 19;
  1054. //
  1055. // textBox_RunInfo_Range
  1056. //
  1057. this.textBox_RunInfo_Range.Location = new System.Drawing.Point(374, 52);
  1058. this.textBox_RunInfo_Range.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1059. this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
  1060. this.textBox_RunInfo_Range.ReadOnly = true;
  1061. this.textBox_RunInfo_Range.Size = new System.Drawing.Size(90, 26);
  1062. this.textBox_RunInfo_Range.TabIndex = 23;
  1063. //
  1064. // textBox_RunInfo_ODO_Km
  1065. //
  1066. this.textBox_RunInfo_ODO_Km.Location = new System.Drawing.Point(374, 79);
  1067. this.textBox_RunInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1068. this.textBox_RunInfo_ODO_Km.Name = "textBox_RunInfo_ODO_Km";
  1069. this.textBox_RunInfo_ODO_Km.ReadOnly = true;
  1070. this.textBox_RunInfo_ODO_Km.Size = new System.Drawing.Size(90, 26);
  1071. this.textBox_RunInfo_ODO_Km.TabIndex = 27;
  1072. //
  1073. // textBox_Sensor3
  1074. //
  1075. this.textBox_Sensor3.Location = new System.Drawing.Point(374, 160);
  1076. this.textBox_Sensor3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1077. this.textBox_Sensor3.Name = "textBox_Sensor3";
  1078. this.textBox_Sensor3.ReadOnly = true;
  1079. this.textBox_Sensor3.Size = new System.Drawing.Size(90, 26);
  1080. this.textBox_Sensor3.TabIndex = 39;
  1081. //
  1082. // textBox_RunInfo_PowerAvg
  1083. //
  1084. this.textBox_RunInfo_PowerAvg.Location = new System.Drawing.Point(374, 106);
  1085. this.textBox_RunInfo_PowerAvg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1086. this.textBox_RunInfo_PowerAvg.Name = "textBox_RunInfo_PowerAvg";
  1087. this.textBox_RunInfo_PowerAvg.ReadOnly = true;
  1088. this.textBox_RunInfo_PowerAvg.Size = new System.Drawing.Size(90, 26);
  1089. this.textBox_RunInfo_PowerAvg.TabIndex = 31;
  1090. //
  1091. // textBox_RunInfo_T_PCB
  1092. //
  1093. this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(374, 133);
  1094. this.textBox_RunInfo_T_PCB.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1095. this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
  1096. this.textBox_RunInfo_T_PCB.ReadOnly = true;
  1097. this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(90, 26);
  1098. this.textBox_RunInfo_T_PCB.TabIndex = 35;
  1099. //
  1100. // textBox_RunInfo_T_Roil
  1101. //
  1102. this.textBox_RunInfo_T_Roil.Location = new System.Drawing.Point(541, 25);
  1103. this.textBox_RunInfo_T_Roil.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1104. this.textBox_RunInfo_T_Roil.Name = "textBox_RunInfo_T_Roil";
  1105. this.textBox_RunInfo_T_Roil.ReadOnly = true;
  1106. this.textBox_RunInfo_T_Roil.Size = new System.Drawing.Size(90, 26);
  1107. this.textBox_RunInfo_T_Roil.TabIndex = 20;
  1108. //
  1109. // textBox_RunInfo_T_MCU
  1110. //
  1111. this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(541, 52);
  1112. this.textBox_RunInfo_T_MCU.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1113. this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
  1114. this.textBox_RunInfo_T_MCU.ReadOnly = true;
  1115. this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(90, 26);
  1116. this.textBox_RunInfo_T_MCU.TabIndex = 24;
  1117. //
  1118. // textBox_RunInfo_Distance
  1119. //
  1120. this.textBox_RunInfo_Distance.Location = new System.Drawing.Point(541, 79);
  1121. this.textBox_RunInfo_Distance.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1122. this.textBox_RunInfo_Distance.Name = "textBox_RunInfo_Distance";
  1123. this.textBox_RunInfo_Distance.ReadOnly = true;
  1124. this.textBox_RunInfo_Distance.Size = new System.Drawing.Size(90, 26);
  1125. this.textBox_RunInfo_Distance.TabIndex = 28;
  1126. //
  1127. // textBox_RunInfo_Time
  1128. //
  1129. this.textBox_RunInfo_Time.Location = new System.Drawing.Point(541, 106);
  1130. this.textBox_RunInfo_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1131. this.textBox_RunInfo_Time.Name = "textBox_RunInfo_Time";
  1132. this.textBox_RunInfo_Time.ReadOnly = true;
  1133. this.textBox_RunInfo_Time.Size = new System.Drawing.Size(90, 26);
  1134. this.textBox_RunInfo_Time.TabIndex = 32;
  1135. //
  1136. // textBox_RunInfo_ErrorCode
  1137. //
  1138. this.textBox_RunInfo_ErrorCode.Location = new System.Drawing.Point(541, 133);
  1139. this.textBox_RunInfo_ErrorCode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1140. this.textBox_RunInfo_ErrorCode.Name = "textBox_RunInfo_ErrorCode";
  1141. this.textBox_RunInfo_ErrorCode.ReadOnly = true;
  1142. this.textBox_RunInfo_ErrorCode.Size = new System.Drawing.Size(90, 26);
  1143. this.textBox_RunInfo_ErrorCode.TabIndex = 36;
  1144. this.textBox_RunInfo_ErrorCode.MouseHover += new System.EventHandler(this.textBox_RunInfo_ErrorCode_MouseHover);
  1145. //
  1146. // groupBox5
  1147. //
  1148. this.groupBox5.Controls.Add(this.radioButton_WorkMode_Confg);
  1149. this.groupBox5.Controls.Add(this.radioButton_WorkMode_Run);
  1150. this.groupBox5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1151. this.groupBox5.Location = new System.Drawing.Point(6, 344);
  1152. this.groupBox5.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1153. this.groupBox5.Name = "groupBox5";
  1154. this.groupBox5.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1155. this.groupBox5.Size = new System.Drawing.Size(240, 76);
  1156. this.groupBox5.TabIndex = 4;
  1157. this.groupBox5.TabStop = false;
  1158. this.groupBox5.Text = "工作模式";
  1159. this.groupBox5.Visible = false;
  1160. //
  1161. // radioButton_WorkMode_Confg
  1162. //
  1163. this.radioButton_WorkMode_Confg.AutoSize = true;
  1164. this.radioButton_WorkMode_Confg.Location = new System.Drawing.Point(134, 33);
  1165. this.radioButton_WorkMode_Confg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1166. this.radioButton_WorkMode_Confg.Name = "radioButton_WorkMode_Confg";
  1167. this.radioButton_WorkMode_Confg.Size = new System.Drawing.Size(83, 24);
  1168. this.radioButton_WorkMode_Confg.TabIndex = 5;
  1169. this.radioButton_WorkMode_Confg.Text = "配置模式";
  1170. this.radioButton_WorkMode_Confg.UseVisualStyleBackColor = true;
  1171. this.radioButton_WorkMode_Confg.Click += new System.EventHandler(this.radioButton_WorkMode_Confg_Click);
  1172. //
  1173. // radioButton_WorkMode_Run
  1174. //
  1175. this.radioButton_WorkMode_Run.AutoSize = true;
  1176. this.radioButton_WorkMode_Run.Checked = true;
  1177. this.radioButton_WorkMode_Run.Location = new System.Drawing.Point(18, 33);
  1178. this.radioButton_WorkMode_Run.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1179. this.radioButton_WorkMode_Run.Name = "radioButton_WorkMode_Run";
  1180. this.radioButton_WorkMode_Run.Size = new System.Drawing.Size(83, 24);
  1181. this.radioButton_WorkMode_Run.TabIndex = 5;
  1182. this.radioButton_WorkMode_Run.TabStop = true;
  1183. this.radioButton_WorkMode_Run.Text = "运行模式";
  1184. this.radioButton_WorkMode_Run.UseVisualStyleBackColor = true;
  1185. this.radioButton_WorkMode_Run.Click += new System.EventHandler(this.radioButton_WorkMode_Run_Click);
  1186. //
  1187. // groupBox6
  1188. //
  1189. this.groupBox6.Controls.Add(this.checkBox_AutoSend);
  1190. this.groupBox6.Controls.Add(this.radioButton_Gear_WALK);
  1191. this.groupBox6.Controls.Add(this.radioButton_Gear_SMART);
  1192. this.groupBox6.Controls.Add(this.radioButton_Gear_TURBO);
  1193. this.groupBox6.Controls.Add(this.radioButton_Gear_SPORT);
  1194. this.groupBox6.Controls.Add(this.radioButton_Gear_NORM);
  1195. this.groupBox6.Controls.Add(this.radioButton_Gear_ECO);
  1196. this.groupBox6.Controls.Add(this.radioButton_Gear_OFF);
  1197. this.groupBox6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1198. this.groupBox6.Location = new System.Drawing.Point(6, 422);
  1199. this.groupBox6.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1200. this.groupBox6.Name = "groupBox6";
  1201. this.groupBox6.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1202. this.groupBox6.Size = new System.Drawing.Size(240, 150);
  1203. this.groupBox6.TabIndex = 5;
  1204. this.groupBox6.TabStop = false;
  1205. this.groupBox6.Text = "助力档位";
  1206. this.groupBox6.Visible = false;
  1207. //
  1208. // checkBox_AutoSend
  1209. //
  1210. this.checkBox_AutoSend.AutoSize = true;
  1211. this.checkBox_AutoSend.Location = new System.Drawing.Point(134, 121);
  1212. this.checkBox_AutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1213. this.checkBox_AutoSend.Name = "checkBox_AutoSend";
  1214. this.checkBox_AutoSend.Size = new System.Drawing.Size(56, 24);
  1215. this.checkBox_AutoSend.TabIndex = 7;
  1216. this.checkBox_AutoSend.Text = "自动";
  1217. this.checkBox_AutoSend.UseVisualStyleBackColor = true;
  1218. this.checkBox_AutoSend.CheckedChanged += new System.EventHandler(this.checkBox_AutoSend_CheckedChanged);
  1219. //
  1220. // radioButton_Gear_WALK
  1221. //
  1222. this.radioButton_Gear_WALK.AutoSize = true;
  1223. this.radioButton_Gear_WALK.Location = new System.Drawing.Point(134, 90);
  1224. this.radioButton_Gear_WALK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1225. this.radioButton_Gear_WALK.Name = "radioButton_Gear_WALK";
  1226. this.radioButton_Gear_WALK.Size = new System.Drawing.Size(67, 24);
  1227. this.radioButton_Gear_WALK.TabIndex = 6;
  1228. this.radioButton_Gear_WALK.Text = "WALK";
  1229. this.radioButton_Gear_WALK.UseVisualStyleBackColor = true;
  1230. this.radioButton_Gear_WALK.Click += new System.EventHandler(this.radioButton_Gear_WALK_Click);
  1231. //
  1232. // radioButton_Gear_SMART
  1233. //
  1234. this.radioButton_Gear_SMART.AutoSize = true;
  1235. this.radioButton_Gear_SMART.Location = new System.Drawing.Point(134, 56);
  1236. this.radioButton_Gear_SMART.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1237. this.radioButton_Gear_SMART.Name = "radioButton_Gear_SMART";
  1238. this.radioButton_Gear_SMART.Size = new System.Drawing.Size(76, 24);
  1239. this.radioButton_Gear_SMART.TabIndex = 6;
  1240. this.radioButton_Gear_SMART.Text = "SMART";
  1241. this.radioButton_Gear_SMART.UseVisualStyleBackColor = true;
  1242. this.radioButton_Gear_SMART.Click += new System.EventHandler(this.radioButton_Gear_SMART_Click);
  1243. //
  1244. // radioButton_Gear_TURBO
  1245. //
  1246. this.radioButton_Gear_TURBO.AutoSize = true;
  1247. this.radioButton_Gear_TURBO.Location = new System.Drawing.Point(134, 24);
  1248. this.radioButton_Gear_TURBO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1249. this.radioButton_Gear_TURBO.Name = "radioButton_Gear_TURBO";
  1250. this.radioButton_Gear_TURBO.Size = new System.Drawing.Size(74, 24);
  1251. this.radioButton_Gear_TURBO.TabIndex = 6;
  1252. this.radioButton_Gear_TURBO.Text = "TURBO";
  1253. this.radioButton_Gear_TURBO.UseVisualStyleBackColor = true;
  1254. this.radioButton_Gear_TURBO.Click += new System.EventHandler(this.radioButton_Gear_TURBO_Click);
  1255. //
  1256. // radioButton_Gear_SPORT
  1257. //
  1258. this.radioButton_Gear_SPORT.AutoSize = true;
  1259. this.radioButton_Gear_SPORT.Location = new System.Drawing.Point(18, 120);
  1260. this.radioButton_Gear_SPORT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1261. this.radioButton_Gear_SPORT.Name = "radioButton_Gear_SPORT";
  1262. this.radioButton_Gear_SPORT.Size = new System.Drawing.Size(72, 24);
  1263. this.radioButton_Gear_SPORT.TabIndex = 6;
  1264. this.radioButton_Gear_SPORT.Text = "SPORT";
  1265. this.radioButton_Gear_SPORT.UseVisualStyleBackColor = true;
  1266. this.radioButton_Gear_SPORT.Click += new System.EventHandler(this.radioButton_Gear_SPORT_Click);
  1267. //
  1268. // radioButton_Gear_NORM
  1269. //
  1270. this.radioButton_Gear_NORM.AutoSize = true;
  1271. this.radioButton_Gear_NORM.Location = new System.Drawing.Point(18, 90);
  1272. this.radioButton_Gear_NORM.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1273. this.radioButton_Gear_NORM.Name = "radioButton_Gear_NORM";
  1274. this.radioButton_Gear_NORM.Size = new System.Drawing.Size(72, 24);
  1275. this.radioButton_Gear_NORM.TabIndex = 6;
  1276. this.radioButton_Gear_NORM.Text = "NORM";
  1277. this.radioButton_Gear_NORM.UseVisualStyleBackColor = true;
  1278. this.radioButton_Gear_NORM.Click += new System.EventHandler(this.radioButton_Gear_NORM_Click);
  1279. //
  1280. // radioButton_Gear_ECO
  1281. //
  1282. this.radioButton_Gear_ECO.AutoSize = true;
  1283. this.radioButton_Gear_ECO.Location = new System.Drawing.Point(18, 56);
  1284. this.radioButton_Gear_ECO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1285. this.radioButton_Gear_ECO.Name = "radioButton_Gear_ECO";
  1286. this.radioButton_Gear_ECO.Size = new System.Drawing.Size(55, 24);
  1287. this.radioButton_Gear_ECO.TabIndex = 6;
  1288. this.radioButton_Gear_ECO.Text = "ECO";
  1289. this.radioButton_Gear_ECO.UseVisualStyleBackColor = true;
  1290. this.radioButton_Gear_ECO.Click += new System.EventHandler(this.radioButton_Gear_ECO_Click);
  1291. //
  1292. // radioButton_Gear_OFF
  1293. //
  1294. this.radioButton_Gear_OFF.AutoSize = true;
  1295. this.radioButton_Gear_OFF.Checked = true;
  1296. this.radioButton_Gear_OFF.Location = new System.Drawing.Point(18, 24);
  1297. this.radioButton_Gear_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1298. this.radioButton_Gear_OFF.Name = "radioButton_Gear_OFF";
  1299. this.radioButton_Gear_OFF.Size = new System.Drawing.Size(52, 24);
  1300. this.radioButton_Gear_OFF.TabIndex = 6;
  1301. this.radioButton_Gear_OFF.TabStop = true;
  1302. this.radioButton_Gear_OFF.Text = "OFF";
  1303. this.radioButton_Gear_OFF.UseVisualStyleBackColor = true;
  1304. this.radioButton_Gear_OFF.Click += new System.EventHandler(this.radioButton_Gear_OFF_Click);
  1305. //
  1306. // groupBox7
  1307. //
  1308. this.groupBox7.Controls.Add(this.radioButton_Light_OFF);
  1309. this.groupBox7.Controls.Add(this.radioButton_Light_ON);
  1310. this.groupBox7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1311. this.groupBox7.Location = new System.Drawing.Point(7, 575);
  1312. this.groupBox7.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1313. this.groupBox7.Name = "groupBox7";
  1314. this.groupBox7.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1315. this.groupBox7.Size = new System.Drawing.Size(240, 56);
  1316. this.groupBox7.TabIndex = 6;
  1317. this.groupBox7.TabStop = false;
  1318. this.groupBox7.Text = "大灯开关";
  1319. this.groupBox7.Visible = false;
  1320. //
  1321. // radioButton_Light_OFF
  1322. //
  1323. this.radioButton_Light_OFF.AutoSize = true;
  1324. this.radioButton_Light_OFF.Checked = true;
  1325. this.radioButton_Light_OFF.Location = new System.Drawing.Point(17, 26);
  1326. this.radioButton_Light_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1327. this.radioButton_Light_OFF.Name = "radioButton_Light_OFF";
  1328. this.radioButton_Light_OFF.Size = new System.Drawing.Size(52, 24);
  1329. this.radioButton_Light_OFF.TabIndex = 6;
  1330. this.radioButton_Light_OFF.TabStop = true;
  1331. this.radioButton_Light_OFF.Text = "OFF";
  1332. this.radioButton_Light_OFF.UseVisualStyleBackColor = true;
  1333. this.radioButton_Light_OFF.Click += new System.EventHandler(this.radioButton_Light_OFF_Click);
  1334. //
  1335. // radioButton_Light_ON
  1336. //
  1337. this.radioButton_Light_ON.AutoSize = true;
  1338. this.radioButton_Light_ON.Location = new System.Drawing.Point(131, 26);
  1339. this.radioButton_Light_ON.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1340. this.radioButton_Light_ON.Name = "radioButton_Light_ON";
  1341. this.radioButton_Light_ON.Size = new System.Drawing.Size(49, 24);
  1342. this.radioButton_Light_ON.TabIndex = 6;
  1343. this.radioButton_Light_ON.Text = "ON";
  1344. this.radioButton_Light_ON.UseVisualStyleBackColor = true;
  1345. this.radioButton_Light_ON.Click += new System.EventHandler(this.radioButton_Light_ON_Click);
  1346. //
  1347. // groupBox8
  1348. //
  1349. this.groupBox8.Controls.Add(this.button_Reset);
  1350. this.groupBox8.Controls.Add(this.button_LogClear);
  1351. this.groupBox8.Controls.Add(this.button_Recovery);
  1352. this.groupBox8.Controls.Add(this.button_ClearData);
  1353. this.groupBox8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1354. this.groupBox8.Location = new System.Drawing.Point(7, 635);
  1355. this.groupBox8.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1356. this.groupBox8.Name = "groupBox8";
  1357. this.groupBox8.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1358. this.groupBox8.Size = new System.Drawing.Size(240, 79);
  1359. this.groupBox8.TabIndex = 7;
  1360. this.groupBox8.TabStop = false;
  1361. this.groupBox8.Text = "系统控制";
  1362. this.groupBox8.Visible = false;
  1363. //
  1364. // button_Reset
  1365. //
  1366. this.button_Reset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
  1367. this.button_Reset.Location = new System.Drawing.Point(175, 21);
  1368. this.button_Reset.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1369. this.button_Reset.Name = "button_Reset";
  1370. this.button_Reset.Size = new System.Drawing.Size(50, 50);
  1371. this.button_Reset.TabIndex = 2;
  1372. this.button_Reset.Text = "重启";
  1373. this.button_Reset.UseVisualStyleBackColor = false;
  1374. this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
  1375. //
  1376. // button_LogClear
  1377. //
  1378. this.button_LogClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
  1379. this.button_LogClear.Location = new System.Drawing.Point(121, 21);
  1380. this.button_LogClear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1381. this.button_LogClear.Name = "button_LogClear";
  1382. this.button_LogClear.Size = new System.Drawing.Size(50, 50);
  1383. this.button_LogClear.TabIndex = 2;
  1384. this.button_LogClear.Text = "记录清除";
  1385. this.button_LogClear.UseVisualStyleBackColor = false;
  1386. this.button_LogClear.Click += new System.EventHandler(this.button_LogClear_Click);
  1387. this.button_LogClear.MouseHover += new System.EventHandler(this.button_LogClear_MouseHover);
  1388. //
  1389. // button_Recovery
  1390. //
  1391. this.button_Recovery.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
  1392. this.button_Recovery.Enabled = false;
  1393. this.button_Recovery.Location = new System.Drawing.Point(67, 21);
  1394. this.button_Recovery.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1395. this.button_Recovery.Name = "button_Recovery";
  1396. this.button_Recovery.Size = new System.Drawing.Size(50, 50);
  1397. this.button_Recovery.TabIndex = 2;
  1398. this.button_Recovery.Text = "参数还原";
  1399. this.button_Recovery.UseVisualStyleBackColor = false;
  1400. this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
  1401. this.button_Recovery.MouseHover += new System.EventHandler(this.button_Recovery_MouseHover);
  1402. //
  1403. // button_ClearData
  1404. //
  1405. this.button_ClearData.BackColor = System.Drawing.Color.Red;
  1406. this.button_ClearData.Enabled = false;
  1407. this.button_ClearData.Location = new System.Drawing.Point(13, 21);
  1408. this.button_ClearData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1409. this.button_ClearData.Name = "button_ClearData";
  1410. this.button_ClearData.Size = new System.Drawing.Size(50, 50);
  1411. this.button_ClearData.TabIndex = 2;
  1412. this.button_ClearData.Text = "系统清除";
  1413. this.button_ClearData.UseVisualStyleBackColor = false;
  1414. this.button_ClearData.Click += new System.EventHandler(this.button_ClearData_Click);
  1415. this.button_ClearData.MouseHover += new System.EventHandler(this.button_ClearData_MouseHover);
  1416. //
  1417. // groupBox9
  1418. //
  1419. this.groupBox9.Controls.Add(this.button_Write_Mode);
  1420. this.groupBox9.Controls.Add(this.button_Read_VerInfo);
  1421. this.groupBox9.Controls.Add(this.button_Write_SN);
  1422. this.groupBox9.Controls.Add(this.label109);
  1423. this.groupBox9.Controls.Add(this.label120);
  1424. this.groupBox9.Controls.Add(this.label8);
  1425. this.groupBox9.Controls.Add(this.label7);
  1426. this.groupBox9.Controls.Add(this.textBox_Firmware_Special);
  1427. this.groupBox9.Controls.Add(this.textBox_TE_FW);
  1428. this.groupBox9.Controls.Add(this.textBox_FW);
  1429. this.groupBox9.Controls.Add(this.textBox_HW);
  1430. this.groupBox9.Controls.Add(this.textBox_SN);
  1431. this.groupBox9.Controls.Add(this.textBox_Mode);
  1432. this.groupBox9.Controls.Add(this.label6);
  1433. this.groupBox9.Controls.Add(this.label4);
  1434. this.groupBox9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1435. this.groupBox9.Location = new System.Drawing.Point(753, 603);
  1436. this.groupBox9.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1437. this.groupBox9.Name = "groupBox9";
  1438. this.groupBox9.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1439. this.groupBox9.Size = new System.Drawing.Size(313, 183);
  1440. this.groupBox9.TabIndex = 8;
  1441. this.groupBox9.TabStop = false;
  1442. this.groupBox9.Text = "版本信息 ";
  1443. this.groupBox9.Visible = false;
  1444. //
  1445. // button_Write_Mode
  1446. //
  1447. this.button_Write_Mode.Enabled = false;
  1448. this.button_Write_Mode.Location = new System.Drawing.Point(249, 24);
  1449. this.button_Write_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1450. this.button_Write_Mode.Name = "button_Write_Mode";
  1451. this.button_Write_Mode.Size = new System.Drawing.Size(58, 30);
  1452. this.button_Write_Mode.TabIndex = 4;
  1453. this.button_Write_Mode.Text = "写入";
  1454. this.button_Write_Mode.UseVisualStyleBackColor = true;
  1455. this.button_Write_Mode.Click += new System.EventHandler(this.button_Write_Mode_Click);
  1456. //
  1457. // button_Read_VerInfo
  1458. //
  1459. this.button_Read_VerInfo.Location = new System.Drawing.Point(249, 108);
  1460. this.button_Read_VerInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1461. this.button_Read_VerInfo.Name = "button_Read_VerInfo";
  1462. this.button_Read_VerInfo.Size = new System.Drawing.Size(58, 59);
  1463. this.button_Read_VerInfo.TabIndex = 2;
  1464. this.button_Read_VerInfo.Text = "查询";
  1465. this.button_Read_VerInfo.UseVisualStyleBackColor = true;
  1466. this.button_Read_VerInfo.Click += new System.EventHandler(this.button_Read_VerInfo_Click);
  1467. //
  1468. // button_Write_SN
  1469. //
  1470. this.button_Write_SN.Enabled = false;
  1471. this.button_Write_SN.Location = new System.Drawing.Point(249, 54);
  1472. this.button_Write_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1473. this.button_Write_SN.Name = "button_Write_SN";
  1474. this.button_Write_SN.Size = new System.Drawing.Size(58, 30);
  1475. this.button_Write_SN.TabIndex = 5;
  1476. this.button_Write_SN.Text = "写入";
  1477. this.button_Write_SN.UseVisualStyleBackColor = true;
  1478. this.button_Write_SN.Click += new System.EventHandler(this.button_Write_SN_Click);
  1479. //
  1480. // label109
  1481. //
  1482. this.label109.AutoSize = true;
  1483. this.label109.Location = new System.Drawing.Point(7, 154);
  1484. this.label109.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1485. this.label109.Name = "label109";
  1486. this.label109.Size = new System.Drawing.Size(25, 20);
  1487. this.label109.TabIndex = 2;
  1488. this.label109.Text = "TE";
  1489. //
  1490. // label120
  1491. //
  1492. this.label120.AutoSize = true;
  1493. this.label120.Location = new System.Drawing.Point(7, 128);
  1494. this.label120.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1495. this.label120.Name = "label120";
  1496. this.label120.Size = new System.Drawing.Size(37, 20);
  1497. this.label120.TabIndex = 2;
  1498. this.label120.Text = "描述";
  1499. //
  1500. // label8
  1501. //
  1502. this.label8.AutoSize = true;
  1503. this.label8.Location = new System.Drawing.Point(7, 103);
  1504. this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1505. this.label8.Name = "label8";
  1506. this.label8.Size = new System.Drawing.Size(37, 20);
  1507. this.label8.TabIndex = 2;
  1508. this.label8.Text = "软件";
  1509. //
  1510. // label7
  1511. //
  1512. this.label7.AutoSize = true;
  1513. this.label7.Location = new System.Drawing.Point(7, 77);
  1514. this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1515. this.label7.Name = "label7";
  1516. this.label7.Size = new System.Drawing.Size(37, 20);
  1517. this.label7.TabIndex = 2;
  1518. this.label7.Text = "硬件";
  1519. //
  1520. // textBox_Firmware_Special
  1521. //
  1522. this.textBox_Firmware_Special.Location = new System.Drawing.Point(63, 125);
  1523. this.textBox_Firmware_Special.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1524. this.textBox_Firmware_Special.Name = "textBox_Firmware_Special";
  1525. this.textBox_Firmware_Special.ReadOnly = true;
  1526. this.textBox_Firmware_Special.Size = new System.Drawing.Size(180, 26);
  1527. this.textBox_Firmware_Special.TabIndex = 2;
  1528. this.textBox_Firmware_Special.Text = "---";
  1529. //
  1530. // textBox_TE_FW
  1531. //
  1532. this.textBox_TE_FW.Location = new System.Drawing.Point(63, 151);
  1533. this.textBox_TE_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1534. this.textBox_TE_FW.Name = "textBox_TE_FW";
  1535. this.textBox_TE_FW.ReadOnly = true;
  1536. this.textBox_TE_FW.Size = new System.Drawing.Size(180, 26);
  1537. this.textBox_TE_FW.TabIndex = 2;
  1538. this.textBox_TE_FW.Text = "---";
  1539. //
  1540. // textBox_FW
  1541. //
  1542. this.textBox_FW.Location = new System.Drawing.Point(63, 100);
  1543. this.textBox_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1544. this.textBox_FW.Name = "textBox_FW";
  1545. this.textBox_FW.ReadOnly = true;
  1546. this.textBox_FW.Size = new System.Drawing.Size(180, 26);
  1547. this.textBox_FW.TabIndex = 2;
  1548. this.textBox_FW.Text = "---";
  1549. //
  1550. // textBox_HW
  1551. //
  1552. this.textBox_HW.Location = new System.Drawing.Point(63, 74);
  1553. this.textBox_HW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1554. this.textBox_HW.Name = "textBox_HW";
  1555. this.textBox_HW.ReadOnly = true;
  1556. this.textBox_HW.Size = new System.Drawing.Size(180, 26);
  1557. this.textBox_HW.TabIndex = 2;
  1558. this.textBox_HW.Text = "---";
  1559. //
  1560. // textBox_SN
  1561. //
  1562. this.textBox_SN.Location = new System.Drawing.Point(63, 48);
  1563. this.textBox_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1564. this.textBox_SN.Name = "textBox_SN";
  1565. this.textBox_SN.Size = new System.Drawing.Size(180, 26);
  1566. this.textBox_SN.TabIndex = 2;
  1567. this.textBox_SN.Text = "---";
  1568. //
  1569. // textBox_Mode
  1570. //
  1571. this.textBox_Mode.Location = new System.Drawing.Point(63, 22);
  1572. this.textBox_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1573. this.textBox_Mode.Name = "textBox_Mode";
  1574. this.textBox_Mode.Size = new System.Drawing.Size(180, 26);
  1575. this.textBox_Mode.TabIndex = 2;
  1576. this.textBox_Mode.Text = "---";
  1577. //
  1578. // label6
  1579. //
  1580. this.label6.AutoSize = true;
  1581. this.label6.Location = new System.Drawing.Point(7, 51);
  1582. this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1583. this.label6.Name = "label6";
  1584. this.label6.Size = new System.Drawing.Size(37, 20);
  1585. this.label6.TabIndex = 2;
  1586. this.label6.Text = "序列";
  1587. //
  1588. // groupBox10
  1589. //
  1590. this.groupBox10.Controls.Add(this.comboBox_SpeedSing);
  1591. this.groupBox10.Controls.Add(this.comboBox_SerNum);
  1592. this.groupBox10.Controls.Add(this.comboBox_NoWatch);
  1593. this.groupBox10.Controls.Add(this.comboBox_DownDec);
  1594. this.groupBox10.Controls.Add(this.comboBox_StartMode);
  1595. this.groupBox10.Controls.Add(this.comboBox_Config_GasMode);
  1596. this.groupBox10.Controls.Add(this.button_Write_Config);
  1597. this.groupBox10.Controls.Add(this.button_Read_Config);
  1598. this.groupBox10.Controls.Add(this.label27);
  1599. this.groupBox10.Controls.Add(this.label26);
  1600. this.groupBox10.Controls.Add(this.textBox_Config_SPORT_K);
  1601. this.groupBox10.Controls.Add(this.textBox_Config_SMART_K);
  1602. this.groupBox10.Controls.Add(this.textBox_Config_NORM_Acc);
  1603. this.groupBox10.Controls.Add(this.textBox_Config_TURBO_Acc);
  1604. this.groupBox10.Controls.Add(this.textBox_Config_TURBO_K);
  1605. this.groupBox10.Controls.Add(this.textBox_Config_SPORT_Acc);
  1606. this.groupBox10.Controls.Add(this.textBox_Config_SMART_Acc);
  1607. this.groupBox10.Controls.Add(this.label25);
  1608. this.groupBox10.Controls.Add(this.textBox_Config_NORM_K);
  1609. this.groupBox10.Controls.Add(this.textBox_Config_ECO_Acc);
  1610. this.groupBox10.Controls.Add(this.label31);
  1611. this.groupBox10.Controls.Add(this.label30);
  1612. this.groupBox10.Controls.Add(this.label34);
  1613. this.groupBox10.Controls.Add(this.textBox_Config_ECO_K);
  1614. this.groupBox10.Controls.Add(this.textBox_Config_WalkMotorSpeed);
  1615. this.groupBox10.Controls.Add(this.textBox_Config_WheelAdj);
  1616. this.groupBox10.Controls.Add(this.textBox_Config_WalkSpeedLimit);
  1617. this.groupBox10.Controls.Add(this.textBox_Config_UV_Protect);
  1618. this.groupBox10.Controls.Add(this.label29);
  1619. this.groupBox10.Controls.Add(this.label33);
  1620. this.groupBox10.Controls.Add(this.textBox_Config_CadenceNum);
  1621. this.groupBox10.Controls.Add(this.textBox_Config_WheelSize);
  1622. this.groupBox10.Controls.Add(this.textBox_Config_MaxSpeed);
  1623. this.groupBox10.Controls.Add(this.label28);
  1624. this.groupBox10.Controls.Add(this.label32);
  1625. this.groupBox10.Controls.Add(this.textBox_Config_T_Alarm);
  1626. this.groupBox10.Controls.Add(this.textBox_Config_StopTime);
  1627. this.groupBox10.Controls.Add(this.label126);
  1628. this.groupBox10.Controls.Add(this.label63);
  1629. this.groupBox10.Controls.Add(this.label62);
  1630. this.groupBox10.Controls.Add(this.label125);
  1631. this.groupBox10.Controls.Add(this.label124);
  1632. this.groupBox10.Controls.Add(this.label21);
  1633. this.groupBox10.Controls.Add(this.textBox_Config_MaxCurrent);
  1634. this.groupBox10.Controls.Add(this.textBox_Config_SpeedNum);
  1635. this.groupBox10.Controls.Add(this.label61);
  1636. this.groupBox10.Controls.Add(this.label20);
  1637. this.groupBox10.Controls.Add(this.textBox_Config_Teeth_B);
  1638. this.groupBox10.Controls.Add(this.textBox_Config_T_Protect);
  1639. this.groupBox10.Controls.Add(this.label60);
  1640. this.groupBox10.Controls.Add(this.label19);
  1641. this.groupBox10.Controls.Add(this.label11);
  1642. this.groupBox10.Controls.Add(this.label18);
  1643. this.groupBox10.Controls.Add(this.label13);
  1644. this.groupBox10.Controls.Add(this.label17);
  1645. this.groupBox10.Controls.Add(this.label14);
  1646. this.groupBox10.Controls.Add(this.label16);
  1647. this.groupBox10.Controls.Add(this.label15);
  1648. this.groupBox10.Controls.Add(this.label12);
  1649. this.groupBox10.Controls.Add(this.label59);
  1650. this.groupBox10.Controls.Add(this.label10);
  1651. this.groupBox10.Controls.Add(this.textBox_Config_Teeth_F);
  1652. this.groupBox10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  1653. this.groupBox10.Location = new System.Drawing.Point(251, 343);
  1654. this.groupBox10.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1655. this.groupBox10.Name = "groupBox10";
  1656. this.groupBox10.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1657. this.groupBox10.Size = new System.Drawing.Size(325, 442);
  1658. this.groupBox10.TabIndex = 9;
  1659. this.groupBox10.TabStop = false;
  1660. this.groupBox10.Text = "用户参数1";
  1661. this.groupBox10.Visible = false;
  1662. //
  1663. // comboBox_SpeedSing
  1664. //
  1665. this.comboBox_SpeedSing.FormattingEnabled = true;
  1666. this.comboBox_SpeedSing.Items.AddRange(new object[] {
  1667. "传感器",
  1668. "踏频",
  1669. "通信"});
  1670. this.comboBox_SpeedSing.Location = new System.Drawing.Point(251, 336);
  1671. this.comboBox_SpeedSing.Name = "comboBox_SpeedSing";
  1672. this.comboBox_SpeedSing.Size = new System.Drawing.Size(70, 28);
  1673. this.comboBox_SpeedSing.TabIndex = 7;
  1674. //
  1675. // comboBox_SerNum
  1676. //
  1677. this.comboBox_SerNum.FormattingEnabled = true;
  1678. this.comboBox_SerNum.Items.AddRange(new object[] {
  1679. "0",
  1680. "1",
  1681. "2",
  1682. "3",
  1683. "4",
  1684. "5",
  1685. "6",
  1686. "7",
  1687. "8",
  1688. "9",
  1689. "10",
  1690. "11",
  1691. "12",
  1692. "13",
  1693. "14",
  1694. "15"});
  1695. this.comboBox_SerNum.Location = new System.Drawing.Point(80, 336);
  1696. this.comboBox_SerNum.Name = "comboBox_SerNum";
  1697. this.comboBox_SerNum.Size = new System.Drawing.Size(70, 28);
  1698. this.comboBox_SerNum.TabIndex = 6;
  1699. //
  1700. // comboBox_NoWatch
  1701. //
  1702. this.comboBox_NoWatch.FormattingEnabled = true;
  1703. this.comboBox_NoWatch.Items.AddRange(new object[] {
  1704. "有",
  1705. "无"});
  1706. this.comboBox_NoWatch.Location = new System.Drawing.Point(80, 282);
  1707. this.comboBox_NoWatch.Name = "comboBox_NoWatch";
  1708. this.comboBox_NoWatch.Size = new System.Drawing.Size(70, 28);
  1709. this.comboBox_NoWatch.TabIndex = 5;
  1710. //
  1711. // comboBox_DownDec
  1712. //
  1713. this.comboBox_DownDec.FormattingEnabled = true;
  1714. this.comboBox_DownDec.Items.AddRange(new object[] {
  1715. "超慢",
  1716. "慢",
  1717. "正常",
  1718. "快",
  1719. "超快"});
  1720. this.comboBox_DownDec.Location = new System.Drawing.Point(80, 124);
  1721. this.comboBox_DownDec.Name = "comboBox_DownDec";
  1722. this.comboBox_DownDec.Size = new System.Drawing.Size(70, 28);
  1723. this.comboBox_DownDec.TabIndex = 4;
  1724. //
  1725. // comboBox_StartMode
  1726. //
  1727. this.comboBox_StartMode.FormattingEnabled = true;
  1728. this.comboBox_StartMode.Items.AddRange(new object[] {
  1729. "柔和",
  1730. "正常",
  1731. "强劲"});
  1732. this.comboBox_StartMode.Location = new System.Drawing.Point(80, 44);
  1733. this.comboBox_StartMode.Name = "comboBox_StartMode";
  1734. this.comboBox_StartMode.Size = new System.Drawing.Size(70, 28);
  1735. this.comboBox_StartMode.TabIndex = 4;
  1736. //
  1737. // comboBox_Config_GasMode
  1738. //
  1739. this.comboBox_Config_GasMode.FormattingEnabled = true;
  1740. this.comboBox_Config_GasMode.Items.AddRange(new object[] {
  1741. "不支持",
  1742. "支持"});
  1743. this.comboBox_Config_GasMode.Location = new System.Drawing.Point(80, 16);
  1744. this.comboBox_Config_GasMode.Name = "comboBox_Config_GasMode";
  1745. this.comboBox_Config_GasMode.Size = new System.Drawing.Size(70, 28);
  1746. this.comboBox_Config_GasMode.TabIndex = 4;
  1747. //
  1748. // button_Write_Config
  1749. //
  1750. this.button_Write_Config.Enabled = false;
  1751. this.button_Write_Config.Location = new System.Drawing.Point(157, 414);
  1752. this.button_Write_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1753. this.button_Write_Config.Name = "button_Write_Config";
  1754. this.button_Write_Config.Size = new System.Drawing.Size(67, 26);
  1755. this.button_Write_Config.TabIndex = 2;
  1756. this.button_Write_Config.Text = "写入";
  1757. this.button_Write_Config.UseVisualStyleBackColor = true;
  1758. this.button_Write_Config.Click += new System.EventHandler(this.button_Write_Config_Click);
  1759. //
  1760. // button_Read_Config
  1761. //
  1762. this.button_Read_Config.Location = new System.Drawing.Point(11, 414);
  1763. this.button_Read_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1764. this.button_Read_Config.Name = "button_Read_Config";
  1765. this.button_Read_Config.Size = new System.Drawing.Size(67, 26);
  1766. this.button_Read_Config.TabIndex = 2;
  1767. this.button_Read_Config.Text = "查询";
  1768. this.button_Read_Config.UseVisualStyleBackColor = true;
  1769. this.button_Read_Config.Click += new System.EventHandler(this.button_Read_Config_Click);
  1770. //
  1771. // label27
  1772. //
  1773. this.label27.AutoSize = true;
  1774. this.label27.Location = new System.Drawing.Point(153, 75);
  1775. this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1776. this.label27.Name = "label27";
  1777. this.label27.Size = new System.Drawing.Size(82, 20);
  1778. this.label27.TabIndex = 3;
  1779. this.label27.Text = "NORM增益";
  1780. //
  1781. // label26
  1782. //
  1783. this.label26.AutoSize = true;
  1784. this.label26.Location = new System.Drawing.Point(153, 48);
  1785. this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1786. this.label26.Name = "label26";
  1787. this.label26.Size = new System.Drawing.Size(65, 20);
  1788. this.label26.TabIndex = 2;
  1789. this.label26.Text = "ECO加速";
  1790. //
  1791. // textBox_Config_SPORT_K
  1792. //
  1793. this.textBox_Config_SPORT_K.Location = new System.Drawing.Point(251, 125);
  1794. this.textBox_Config_SPORT_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1795. this.textBox_Config_SPORT_K.Name = "textBox_Config_SPORT_K";
  1796. this.textBox_Config_SPORT_K.Size = new System.Drawing.Size(70, 26);
  1797. this.textBox_Config_SPORT_K.TabIndex = 2;
  1798. //
  1799. // textBox_Config_SMART_K
  1800. //
  1801. this.textBox_Config_SMART_K.Location = new System.Drawing.Point(251, 230);
  1802. this.textBox_Config_SMART_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1803. this.textBox_Config_SMART_K.Name = "textBox_Config_SMART_K";
  1804. this.textBox_Config_SMART_K.Size = new System.Drawing.Size(70, 26);
  1805. this.textBox_Config_SMART_K.TabIndex = 2;
  1806. //
  1807. // textBox_Config_NORM_Acc
  1808. //
  1809. this.textBox_Config_NORM_Acc.Location = new System.Drawing.Point(251, 98);
  1810. this.textBox_Config_NORM_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1811. this.textBox_Config_NORM_Acc.Name = "textBox_Config_NORM_Acc";
  1812. this.textBox_Config_NORM_Acc.Size = new System.Drawing.Size(70, 26);
  1813. this.textBox_Config_NORM_Acc.TabIndex = 2;
  1814. //
  1815. // textBox_Config_TURBO_Acc
  1816. //
  1817. this.textBox_Config_TURBO_Acc.Location = new System.Drawing.Point(251, 204);
  1818. this.textBox_Config_TURBO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1819. this.textBox_Config_TURBO_Acc.Name = "textBox_Config_TURBO_Acc";
  1820. this.textBox_Config_TURBO_Acc.Size = new System.Drawing.Size(70, 26);
  1821. this.textBox_Config_TURBO_Acc.TabIndex = 2;
  1822. //
  1823. // textBox_Config_TURBO_K
  1824. //
  1825. this.textBox_Config_TURBO_K.Location = new System.Drawing.Point(251, 178);
  1826. this.textBox_Config_TURBO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1827. this.textBox_Config_TURBO_K.Name = "textBox_Config_TURBO_K";
  1828. this.textBox_Config_TURBO_K.Size = new System.Drawing.Size(70, 26);
  1829. this.textBox_Config_TURBO_K.TabIndex = 2;
  1830. //
  1831. // textBox_Config_SPORT_Acc
  1832. //
  1833. this.textBox_Config_SPORT_Acc.Location = new System.Drawing.Point(251, 152);
  1834. this.textBox_Config_SPORT_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1835. this.textBox_Config_SPORT_Acc.Name = "textBox_Config_SPORT_Acc";
  1836. this.textBox_Config_SPORT_Acc.Size = new System.Drawing.Size(70, 26);
  1837. this.textBox_Config_SPORT_Acc.TabIndex = 2;
  1838. //
  1839. // textBox_Config_SMART_Acc
  1840. //
  1841. this.textBox_Config_SMART_Acc.Location = new System.Drawing.Point(251, 256);
  1842. this.textBox_Config_SMART_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1843. this.textBox_Config_SMART_Acc.Name = "textBox_Config_SMART_Acc";
  1844. this.textBox_Config_SMART_Acc.Size = new System.Drawing.Size(70, 26);
  1845. this.textBox_Config_SMART_Acc.TabIndex = 2;
  1846. //
  1847. // label25
  1848. //
  1849. this.label25.AutoSize = true;
  1850. this.label25.Location = new System.Drawing.Point(153, 20);
  1851. this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1852. this.label25.Name = "label25";
  1853. this.label25.Size = new System.Drawing.Size(65, 20);
  1854. this.label25.TabIndex = 2;
  1855. this.label25.Text = "ECO增益";
  1856. //
  1857. // textBox_Config_NORM_K
  1858. //
  1859. this.textBox_Config_NORM_K.Location = new System.Drawing.Point(251, 72);
  1860. this.textBox_Config_NORM_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1861. this.textBox_Config_NORM_K.Name = "textBox_Config_NORM_K";
  1862. this.textBox_Config_NORM_K.Size = new System.Drawing.Size(70, 26);
  1863. this.textBox_Config_NORM_K.TabIndex = 2;
  1864. //
  1865. // textBox_Config_ECO_Acc
  1866. //
  1867. this.textBox_Config_ECO_Acc.Location = new System.Drawing.Point(251, 45);
  1868. this.textBox_Config_ECO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1869. this.textBox_Config_ECO_Acc.Name = "textBox_Config_ECO_Acc";
  1870. this.textBox_Config_ECO_Acc.Size = new System.Drawing.Size(70, 26);
  1871. this.textBox_Config_ECO_Acc.TabIndex = 2;
  1872. //
  1873. // label31
  1874. //
  1875. this.label31.AutoSize = true;
  1876. this.label31.Location = new System.Drawing.Point(153, 181);
  1877. this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1878. this.label31.Name = "label31";
  1879. this.label31.Size = new System.Drawing.Size(84, 20);
  1880. this.label31.TabIndex = 2;
  1881. this.label31.Text = "TURBO增益";
  1882. //
  1883. // label30
  1884. //
  1885. this.label30.AutoSize = true;
  1886. this.label30.Location = new System.Drawing.Point(153, 155);
  1887. this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1888. this.label30.Name = "label30";
  1889. this.label30.Size = new System.Drawing.Size(82, 20);
  1890. this.label30.TabIndex = 2;
  1891. this.label30.Text = "SPORT加速";
  1892. //
  1893. // label34
  1894. //
  1895. this.label34.AutoSize = true;
  1896. this.label34.Location = new System.Drawing.Point(153, 259);
  1897. this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1898. this.label34.Name = "label34";
  1899. this.label34.Size = new System.Drawing.Size(86, 20);
  1900. this.label34.TabIndex = 2;
  1901. this.label34.Text = "SMART加速";
  1902. //
  1903. // textBox_Config_ECO_K
  1904. //
  1905. this.textBox_Config_ECO_K.Location = new System.Drawing.Point(251, 17);
  1906. this.textBox_Config_ECO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1907. this.textBox_Config_ECO_K.Name = "textBox_Config_ECO_K";
  1908. this.textBox_Config_ECO_K.Size = new System.Drawing.Size(70, 26);
  1909. this.textBox_Config_ECO_K.TabIndex = 2;
  1910. //
  1911. // textBox_Config_WalkMotorSpeed
  1912. //
  1913. this.textBox_Config_WalkMotorSpeed.Location = new System.Drawing.Point(251, 390);
  1914. this.textBox_Config_WalkMotorSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1915. this.textBox_Config_WalkMotorSpeed.Name = "textBox_Config_WalkMotorSpeed";
  1916. this.textBox_Config_WalkMotorSpeed.Size = new System.Drawing.Size(70, 26);
  1917. this.textBox_Config_WalkMotorSpeed.TabIndex = 2;
  1918. //
  1919. // textBox_Config_WheelAdj
  1920. //
  1921. this.textBox_Config_WheelAdj.Location = new System.Drawing.Point(251, 364);
  1922. this.textBox_Config_WheelAdj.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1923. this.textBox_Config_WheelAdj.Name = "textBox_Config_WheelAdj";
  1924. this.textBox_Config_WheelAdj.Size = new System.Drawing.Size(70, 26);
  1925. this.textBox_Config_WheelAdj.TabIndex = 2;
  1926. //
  1927. // textBox_Config_WalkSpeedLimit
  1928. //
  1929. this.textBox_Config_WalkSpeedLimit.Location = new System.Drawing.Point(80, 390);
  1930. this.textBox_Config_WalkSpeedLimit.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1931. this.textBox_Config_WalkSpeedLimit.Name = "textBox_Config_WalkSpeedLimit";
  1932. this.textBox_Config_WalkSpeedLimit.Size = new System.Drawing.Size(70, 26);
  1933. this.textBox_Config_WalkSpeedLimit.TabIndex = 2;
  1934. //
  1935. // textBox_Config_UV_Protect
  1936. //
  1937. this.textBox_Config_UV_Protect.Location = new System.Drawing.Point(80, 364);
  1938. this.textBox_Config_UV_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1939. this.textBox_Config_UV_Protect.Name = "textBox_Config_UV_Protect";
  1940. this.textBox_Config_UV_Protect.Size = new System.Drawing.Size(70, 26);
  1941. this.textBox_Config_UV_Protect.TabIndex = 2;
  1942. //
  1943. // label29
  1944. //
  1945. this.label29.AutoSize = true;
  1946. this.label29.Location = new System.Drawing.Point(153, 128);
  1947. this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1948. this.label29.Name = "label29";
  1949. this.label29.Size = new System.Drawing.Size(82, 20);
  1950. this.label29.TabIndex = 2;
  1951. this.label29.Text = "SPORT增益";
  1952. //
  1953. // label33
  1954. //
  1955. this.label33.AutoSize = true;
  1956. this.label33.Location = new System.Drawing.Point(153, 233);
  1957. this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1958. this.label33.Name = "label33";
  1959. this.label33.Size = new System.Drawing.Size(86, 20);
  1960. this.label33.TabIndex = 2;
  1961. this.label33.Text = "SMART增益";
  1962. //
  1963. // textBox_Config_CadenceNum
  1964. //
  1965. this.textBox_Config_CadenceNum.Location = new System.Drawing.Point(251, 310);
  1966. this.textBox_Config_CadenceNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1967. this.textBox_Config_CadenceNum.Name = "textBox_Config_CadenceNum";
  1968. this.textBox_Config_CadenceNum.Size = new System.Drawing.Size(70, 26);
  1969. this.textBox_Config_CadenceNum.TabIndex = 2;
  1970. //
  1971. // textBox_Config_WheelSize
  1972. //
  1973. this.textBox_Config_WheelSize.Location = new System.Drawing.Point(80, 310);
  1974. this.textBox_Config_WheelSize.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1975. this.textBox_Config_WheelSize.Name = "textBox_Config_WheelSize";
  1976. this.textBox_Config_WheelSize.Size = new System.Drawing.Size(70, 26);
  1977. this.textBox_Config_WheelSize.TabIndex = 2;
  1978. //
  1979. // textBox_Config_MaxSpeed
  1980. //
  1981. this.textBox_Config_MaxSpeed.Location = new System.Drawing.Point(80, 98);
  1982. this.textBox_Config_MaxSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  1983. this.textBox_Config_MaxSpeed.Name = "textBox_Config_MaxSpeed";
  1984. this.textBox_Config_MaxSpeed.Size = new System.Drawing.Size(70, 26);
  1985. this.textBox_Config_MaxSpeed.TabIndex = 2;
  1986. //
  1987. // label28
  1988. //
  1989. this.label28.AutoSize = true;
  1990. this.label28.Location = new System.Drawing.Point(153, 101);
  1991. this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  1992. this.label28.Name = "label28";
  1993. this.label28.Size = new System.Drawing.Size(82, 20);
  1994. this.label28.TabIndex = 2;
  1995. this.label28.Text = "NORM加速";
  1996. //
  1997. // label32
  1998. //
  1999. this.label32.AutoSize = true;
  2000. this.label32.Location = new System.Drawing.Point(153, 207);
  2001. this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2002. this.label32.Name = "label32";
  2003. this.label32.Size = new System.Drawing.Size(84, 20);
  2004. this.label32.TabIndex = 2;
  2005. this.label32.Text = "TURBO加速";
  2006. //
  2007. // textBox_Config_T_Alarm
  2008. //
  2009. this.textBox_Config_T_Alarm.Location = new System.Drawing.Point(80, 230);
  2010. this.textBox_Config_T_Alarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2011. this.textBox_Config_T_Alarm.Name = "textBox_Config_T_Alarm";
  2012. this.textBox_Config_T_Alarm.Size = new System.Drawing.Size(70, 26);
  2013. this.textBox_Config_T_Alarm.TabIndex = 2;
  2014. //
  2015. // textBox_Config_StopTime
  2016. //
  2017. this.textBox_Config_StopTime.Location = new System.Drawing.Point(80, 72);
  2018. this.textBox_Config_StopTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2019. this.textBox_Config_StopTime.Name = "textBox_Config_StopTime";
  2020. this.textBox_Config_StopTime.Size = new System.Drawing.Size(70, 26);
  2021. this.textBox_Config_StopTime.TabIndex = 2;
  2022. //
  2023. // label126
  2024. //
  2025. this.label126.AutoSize = true;
  2026. this.label126.Location = new System.Drawing.Point(153, 393);
  2027. this.label126.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2028. this.label126.Name = "label126";
  2029. this.label126.Size = new System.Drawing.Size(65, 20);
  2030. this.label126.TabIndex = 2;
  2031. this.label126.Text = "推行转速";
  2032. //
  2033. // label63
  2034. //
  2035. this.label63.AutoSize = true;
  2036. this.label63.Location = new System.Drawing.Point(153, 367);
  2037. this.label63.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2038. this.label63.Name = "label63";
  2039. this.label63.Size = new System.Drawing.Size(79, 20);
  2040. this.label63.TabIndex = 2;
  2041. this.label63.Text = "轮胎微调值";
  2042. //
  2043. // label62
  2044. //
  2045. this.label62.AutoSize = true;
  2046. this.label62.Location = new System.Drawing.Point(153, 340);
  2047. this.label62.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2048. this.label62.Name = "label62";
  2049. this.label62.Size = new System.Drawing.Size(93, 20);
  2050. this.label62.TabIndex = 2;
  2051. this.label62.Text = "无速度传感器";
  2052. //
  2053. // label125
  2054. //
  2055. this.label125.AutoSize = true;
  2056. this.label125.Location = new System.Drawing.Point(9, 393);
  2057. this.label125.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2058. this.label125.Name = "label125";
  2059. this.label125.Size = new System.Drawing.Size(65, 20);
  2060. this.label125.TabIndex = 2;
  2061. this.label125.Text = "推行限速";
  2062. //
  2063. // label124
  2064. //
  2065. this.label124.AutoSize = true;
  2066. this.label124.Location = new System.Drawing.Point(9, 367);
  2067. this.label124.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2068. this.label124.Name = "label124";
  2069. this.label124.Size = new System.Drawing.Size(65, 20);
  2070. this.label124.TabIndex = 2;
  2071. this.label124.Text = "低压保护";
  2072. //
  2073. // label21
  2074. //
  2075. this.label21.AutoSize = true;
  2076. this.label21.Location = new System.Drawing.Point(9, 340);
  2077. this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2078. this.label21.Name = "label21";
  2079. this.label21.Size = new System.Drawing.Size(65, 20);
  2080. this.label21.TabIndex = 2;
  2081. this.label21.Text = "电机系列";
  2082. //
  2083. // textBox_Config_MaxCurrent
  2084. //
  2085. this.textBox_Config_MaxCurrent.Location = new System.Drawing.Point(80, 204);
  2086. this.textBox_Config_MaxCurrent.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2087. this.textBox_Config_MaxCurrent.Name = "textBox_Config_MaxCurrent";
  2088. this.textBox_Config_MaxCurrent.Size = new System.Drawing.Size(70, 26);
  2089. this.textBox_Config_MaxCurrent.TabIndex = 2;
  2090. //
  2091. // textBox_Config_SpeedNum
  2092. //
  2093. this.textBox_Config_SpeedNum.Location = new System.Drawing.Point(251, 283);
  2094. this.textBox_Config_SpeedNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2095. this.textBox_Config_SpeedNum.Name = "textBox_Config_SpeedNum";
  2096. this.textBox_Config_SpeedNum.Size = new System.Drawing.Size(70, 26);
  2097. this.textBox_Config_SpeedNum.TabIndex = 2;
  2098. //
  2099. // label61
  2100. //
  2101. this.label61.AutoSize = true;
  2102. this.label61.Location = new System.Drawing.Point(153, 313);
  2103. this.label61.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2104. this.label61.Name = "label61";
  2105. this.label61.Size = new System.Drawing.Size(93, 20);
  2106. this.label61.TabIndex = 2;
  2107. this.label61.Text = "踏频启动个数";
  2108. //
  2109. // label20
  2110. //
  2111. this.label20.AutoSize = true;
  2112. this.label20.Location = new System.Drawing.Point(9, 313);
  2113. this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2114. this.label20.Name = "label20";
  2115. this.label20.Size = new System.Drawing.Size(65, 20);
  2116. this.label20.TabIndex = 2;
  2117. this.label20.Text = "轮胎周长";
  2118. //
  2119. // textBox_Config_Teeth_B
  2120. //
  2121. this.textBox_Config_Teeth_B.Location = new System.Drawing.Point(80, 178);
  2122. this.textBox_Config_Teeth_B.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2123. this.textBox_Config_Teeth_B.Name = "textBox_Config_Teeth_B";
  2124. this.textBox_Config_Teeth_B.Size = new System.Drawing.Size(70, 26);
  2125. this.textBox_Config_Teeth_B.TabIndex = 2;
  2126. //
  2127. // textBox_Config_T_Protect
  2128. //
  2129. this.textBox_Config_T_Protect.Location = new System.Drawing.Point(80, 256);
  2130. this.textBox_Config_T_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2131. this.textBox_Config_T_Protect.Name = "textBox_Config_T_Protect";
  2132. this.textBox_Config_T_Protect.Size = new System.Drawing.Size(70, 26);
  2133. this.textBox_Config_T_Protect.TabIndex = 2;
  2134. //
  2135. // label60
  2136. //
  2137. this.label60.AutoSize = true;
  2138. this.label60.Location = new System.Drawing.Point(153, 286);
  2139. this.label60.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2140. this.label60.Name = "label60";
  2141. this.label60.Size = new System.Drawing.Size(93, 20);
  2142. this.label60.TabIndex = 2;
  2143. this.label60.Text = "速度信号个数";
  2144. //
  2145. // label19
  2146. //
  2147. this.label19.AutoSize = true;
  2148. this.label19.Location = new System.Drawing.Point(9, 286);
  2149. this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2150. this.label19.Name = "label19";
  2151. this.label19.Size = new System.Drawing.Size(51, 20);
  2152. this.label19.TabIndex = 2;
  2153. this.label19.Text = "无码表";
  2154. //
  2155. // label11
  2156. //
  2157. this.label11.AutoSize = true;
  2158. this.label11.Location = new System.Drawing.Point(9, 75);
  2159. this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2160. this.label11.Name = "label11";
  2161. this.label11.Size = new System.Drawing.Size(65, 20);
  2162. this.label11.TabIndex = 2;
  2163. this.label11.Text = "停机时间";
  2164. //
  2165. // label18
  2166. //
  2167. this.label18.AutoSize = true;
  2168. this.label18.Location = new System.Drawing.Point(9, 259);
  2169. this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2170. this.label18.Name = "label18";
  2171. this.label18.Size = new System.Drawing.Size(65, 20);
  2172. this.label18.TabIndex = 2;
  2173. this.label18.Text = "温度保护";
  2174. //
  2175. // label13
  2176. //
  2177. this.label13.AutoSize = true;
  2178. this.label13.Location = new System.Drawing.Point(9, 128);
  2179. this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2180. this.label13.Name = "label13";
  2181. this.label13.Size = new System.Drawing.Size(65, 20);
  2182. this.label13.TabIndex = 2;
  2183. this.label13.Text = "下降速度";
  2184. //
  2185. // label17
  2186. //
  2187. this.label17.AutoSize = true;
  2188. this.label17.Location = new System.Drawing.Point(9, 233);
  2189. this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2190. this.label17.Name = "label17";
  2191. this.label17.Size = new System.Drawing.Size(65, 20);
  2192. this.label17.TabIndex = 2;
  2193. this.label17.Text = "温度预警";
  2194. //
  2195. // label14
  2196. //
  2197. this.label14.AutoSize = true;
  2198. this.label14.Location = new System.Drawing.Point(9, 155);
  2199. this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2200. this.label14.Name = "label14";
  2201. this.label14.Size = new System.Drawing.Size(65, 20);
  2202. this.label14.TabIndex = 2;
  2203. this.label14.Text = "前飞齿数";
  2204. //
  2205. // label16
  2206. //
  2207. this.label16.AutoSize = true;
  2208. this.label16.Location = new System.Drawing.Point(9, 207);
  2209. this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2210. this.label16.Name = "label16";
  2211. this.label16.Size = new System.Drawing.Size(51, 20);
  2212. this.label16.TabIndex = 2;
  2213. this.label16.Text = "限流值";
  2214. //
  2215. // label15
  2216. //
  2217. this.label15.AutoSize = true;
  2218. this.label15.Location = new System.Drawing.Point(9, 181);
  2219. this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2220. this.label15.Name = "label15";
  2221. this.label15.Size = new System.Drawing.Size(65, 20);
  2222. this.label15.TabIndex = 2;
  2223. this.label15.Text = "后飞齿数";
  2224. //
  2225. // label12
  2226. //
  2227. this.label12.AutoSize = true;
  2228. this.label12.Location = new System.Drawing.Point(9, 101);
  2229. this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2230. this.label12.Name = "label12";
  2231. this.label12.Size = new System.Drawing.Size(51, 20);
  2232. this.label12.TabIndex = 2;
  2233. this.label12.Text = "限速值";
  2234. //
  2235. // label59
  2236. //
  2237. this.label59.AutoSize = true;
  2238. this.label59.Location = new System.Drawing.Point(9, 20);
  2239. this.label59.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2240. this.label59.Name = "label59";
  2241. this.label59.Size = new System.Drawing.Size(65, 20);
  2242. this.label59.TabIndex = 2;
  2243. this.label59.Text = "指拨模式";
  2244. //
  2245. // label10
  2246. //
  2247. this.label10.AutoSize = true;
  2248. this.label10.Location = new System.Drawing.Point(9, 48);
  2249. this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2250. this.label10.Name = "label10";
  2251. this.label10.Size = new System.Drawing.Size(65, 20);
  2252. this.label10.TabIndex = 2;
  2253. this.label10.Text = "启动模式";
  2254. //
  2255. // textBox_Config_Teeth_F
  2256. //
  2257. this.textBox_Config_Teeth_F.Location = new System.Drawing.Point(80, 152);
  2258. this.textBox_Config_Teeth_F.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2259. this.textBox_Config_Teeth_F.Name = "textBox_Config_Teeth_F";
  2260. this.textBox_Config_Teeth_F.Size = new System.Drawing.Size(70, 26);
  2261. this.textBox_Config_Teeth_F.TabIndex = 2;
  2262. //
  2263. // groupBox11
  2264. //
  2265. this.groupBox11.Controls.Add(this.button_Write_MotorConfig);
  2266. this.groupBox11.Controls.Add(this.button_Read_MortoConfig);
  2267. this.groupBox11.Controls.Add(this.textBox_Motor_Power);
  2268. this.groupBox11.Controls.Add(this.textBox_Motor_R);
  2269. this.groupBox11.Controls.Add(this.textBox_Motor_Speed);
  2270. this.groupBox11.Controls.Add(this.textBox_Motor_Voltage);
  2271. this.groupBox11.Controls.Add(this.textBox_Motor_E);
  2272. this.groupBox11.Controls.Add(this.textBox_Motor_Lq);
  2273. this.groupBox11.Controls.Add(this.label45);
  2274. this.groupBox11.Controls.Add(this.textBox_Motor_Ld);
  2275. this.groupBox11.Controls.Add(this.label53);
  2276. this.groupBox11.Controls.Add(this.label47);
  2277. this.groupBox11.Controls.Add(this.label51);
  2278. this.groupBox11.Controls.Add(this.label52);
  2279. this.groupBox11.Controls.Add(this.label49);
  2280. this.groupBox11.Controls.Add(this.label50);
  2281. this.groupBox11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2282. this.groupBox11.Location = new System.Drawing.Point(753, 343);
  2283. this.groupBox11.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2284. this.groupBox11.Name = "groupBox11";
  2285. this.groupBox11.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2286. this.groupBox11.Size = new System.Drawing.Size(313, 176);
  2287. this.groupBox11.TabIndex = 9;
  2288. this.groupBox11.TabStop = false;
  2289. this.groupBox11.Text = "马达参数";
  2290. this.groupBox11.Visible = false;
  2291. //
  2292. // button_Write_MotorConfig
  2293. //
  2294. this.button_Write_MotorConfig.Enabled = false;
  2295. this.button_Write_MotorConfig.Location = new System.Drawing.Point(241, 124);
  2296. this.button_Write_MotorConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2297. this.button_Write_MotorConfig.Name = "button_Write_MotorConfig";
  2298. this.button_Write_MotorConfig.Size = new System.Drawing.Size(60, 35);
  2299. this.button_Write_MotorConfig.TabIndex = 2;
  2300. this.button_Write_MotorConfig.Text = "写入";
  2301. this.button_Write_MotorConfig.UseVisualStyleBackColor = true;
  2302. this.button_Write_MotorConfig.Click += new System.EventHandler(this.button_Write_MotorConfig_Click);
  2303. //
  2304. // button_Read_MortoConfig
  2305. //
  2306. this.button_Read_MortoConfig.Location = new System.Drawing.Point(167, 125);
  2307. this.button_Read_MortoConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2308. this.button_Read_MortoConfig.Name = "button_Read_MortoConfig";
  2309. this.button_Read_MortoConfig.Size = new System.Drawing.Size(60, 35);
  2310. this.button_Read_MortoConfig.TabIndex = 2;
  2311. this.button_Read_MortoConfig.Text = "查询";
  2312. this.button_Read_MortoConfig.UseVisualStyleBackColor = true;
  2313. this.button_Read_MortoConfig.Click += new System.EventHandler(this.button_Read_MortoConfig_Click);
  2314. //
  2315. // textBox_Motor_Power
  2316. //
  2317. this.textBox_Motor_Power.Location = new System.Drawing.Point(82, 28);
  2318. this.textBox_Motor_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2319. this.textBox_Motor_Power.Name = "textBox_Motor_Power";
  2320. this.textBox_Motor_Power.Size = new System.Drawing.Size(70, 26);
  2321. this.textBox_Motor_Power.TabIndex = 2;
  2322. //
  2323. // textBox_Motor_R
  2324. //
  2325. this.textBox_Motor_R.Location = new System.Drawing.Point(246, 28);
  2326. this.textBox_Motor_R.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2327. this.textBox_Motor_R.Name = "textBox_Motor_R";
  2328. this.textBox_Motor_R.Size = new System.Drawing.Size(55, 26);
  2329. this.textBox_Motor_R.TabIndex = 2;
  2330. //
  2331. // textBox_Motor_Speed
  2332. //
  2333. this.textBox_Motor_Speed.Location = new System.Drawing.Point(82, 57);
  2334. this.textBox_Motor_Speed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2335. this.textBox_Motor_Speed.Name = "textBox_Motor_Speed";
  2336. this.textBox_Motor_Speed.Size = new System.Drawing.Size(70, 26);
  2337. this.textBox_Motor_Speed.TabIndex = 2;
  2338. //
  2339. // textBox_Motor_Voltage
  2340. //
  2341. this.textBox_Motor_Voltage.Location = new System.Drawing.Point(246, 86);
  2342. this.textBox_Motor_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2343. this.textBox_Motor_Voltage.Name = "textBox_Motor_Voltage";
  2344. this.textBox_Motor_Voltage.Size = new System.Drawing.Size(55, 26);
  2345. this.textBox_Motor_Voltage.TabIndex = 2;
  2346. //
  2347. // textBox_Motor_E
  2348. //
  2349. this.textBox_Motor_E.Location = new System.Drawing.Point(82, 116);
  2350. this.textBox_Motor_E.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2351. this.textBox_Motor_E.Name = "textBox_Motor_E";
  2352. this.textBox_Motor_E.Size = new System.Drawing.Size(70, 26);
  2353. this.textBox_Motor_E.TabIndex = 2;
  2354. //
  2355. // textBox_Motor_Lq
  2356. //
  2357. this.textBox_Motor_Lq.Location = new System.Drawing.Point(246, 57);
  2358. this.textBox_Motor_Lq.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2359. this.textBox_Motor_Lq.Name = "textBox_Motor_Lq";
  2360. this.textBox_Motor_Lq.Size = new System.Drawing.Size(55, 26);
  2361. this.textBox_Motor_Lq.TabIndex = 2;
  2362. //
  2363. // label45
  2364. //
  2365. this.label45.AutoSize = true;
  2366. this.label45.Location = new System.Drawing.Point(9, 59);
  2367. this.label45.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2368. this.label45.Name = "label45";
  2369. this.label45.Size = new System.Drawing.Size(65, 20);
  2370. this.label45.TabIndex = 2;
  2371. this.label45.Text = "额定转速";
  2372. //
  2373. // textBox_Motor_Ld
  2374. //
  2375. this.textBox_Motor_Ld.Location = new System.Drawing.Point(82, 86);
  2376. this.textBox_Motor_Ld.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2377. this.textBox_Motor_Ld.Name = "textBox_Motor_Ld";
  2378. this.textBox_Motor_Ld.Size = new System.Drawing.Size(70, 26);
  2379. this.textBox_Motor_Ld.TabIndex = 2;
  2380. //
  2381. // label53
  2382. //
  2383. this.label53.AutoSize = true;
  2384. this.label53.Location = new System.Drawing.Point(9, 32);
  2385. this.label53.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2386. this.label53.Name = "label53";
  2387. this.label53.Size = new System.Drawing.Size(65, 20);
  2388. this.label53.TabIndex = 2;
  2389. this.label53.Text = "额定功率";
  2390. //
  2391. // label47
  2392. //
  2393. this.label47.AutoSize = true;
  2394. this.label47.Location = new System.Drawing.Point(169, 59);
  2395. this.label47.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2396. this.label47.Name = "label47";
  2397. this.label47.Size = new System.Drawing.Size(53, 20);
  2398. this.label47.TabIndex = 2;
  2399. this.label47.Text = "定子Lq";
  2400. //
  2401. // label51
  2402. //
  2403. this.label51.AutoSize = true;
  2404. this.label51.Location = new System.Drawing.Point(9, 118);
  2405. this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2406. this.label51.Name = "label51";
  2407. this.label51.Size = new System.Drawing.Size(65, 20);
  2408. this.label51.TabIndex = 2;
  2409. this.label51.Text = "反电动势";
  2410. //
  2411. // label52
  2412. //
  2413. this.label52.AutoSize = true;
  2414. this.label52.Location = new System.Drawing.Point(169, 32);
  2415. this.label52.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2416. this.label52.Name = "label52";
  2417. this.label52.Size = new System.Drawing.Size(65, 20);
  2418. this.label52.TabIndex = 2;
  2419. this.label52.Text = "定子电阻";
  2420. //
  2421. // label49
  2422. //
  2423. this.label49.AutoSize = true;
  2424. this.label49.Location = new System.Drawing.Point(9, 88);
  2425. this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2426. this.label49.Name = "label49";
  2427. this.label49.Size = new System.Drawing.Size(53, 20);
  2428. this.label49.TabIndex = 2;
  2429. this.label49.Text = "定子Ld";
  2430. //
  2431. // label50
  2432. //
  2433. this.label50.AutoSize = true;
  2434. this.label50.Location = new System.Drawing.Point(169, 88);
  2435. this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2436. this.label50.Name = "label50";
  2437. this.label50.Size = new System.Drawing.Size(65, 20);
  2438. this.label50.TabIndex = 2;
  2439. this.label50.Text = "额定电压";
  2440. //
  2441. // timer1
  2442. //
  2443. this.timer1.Enabled = true;
  2444. this.timer1.Interval = 20;
  2445. this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  2446. //
  2447. // groupBox4
  2448. //
  2449. this.groupBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(120)))));
  2450. this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStop);
  2451. this.groupBox4.Controls.Add(this.label128);
  2452. this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStart);
  2453. this.groupBox4.Controls.Add(this.label129);
  2454. this.groupBox4.Controls.Add(this.textBox_Config_Period);
  2455. this.groupBox4.Controls.Add(this.label130);
  2456. this.groupBox4.Controls.Add(this.textBox_Config_Pulse);
  2457. this.groupBox4.Controls.Add(this.label131);
  2458. this.groupBox4.Controls.Add(this.textBox_Config_SpeedAlarm);
  2459. this.groupBox4.Controls.Add(this.label132);
  2460. this.groupBox4.Controls.Add(this.comboBox_TailLightVol);
  2461. this.groupBox4.Controls.Add(this.comboBox_AttiSensor);
  2462. this.groupBox4.Controls.Add(this.comboBox_FrontLigthVol);
  2463. this.groupBox4.Controls.Add(this.comboBox_TailLightMode);
  2464. this.groupBox4.Controls.Add(this.button_Write_Config_Ext);
  2465. this.groupBox4.Controls.Add(this.button_Read_Config_Ext);
  2466. this.groupBox4.Controls.Add(this.label123);
  2467. this.groupBox4.Controls.Add(this.label66);
  2468. this.groupBox4.Controls.Add(this.label122);
  2469. this.groupBox4.Controls.Add(this.label65);
  2470. this.groupBox4.Controls.Add(this.textBox_Config_Angle_Roll);
  2471. this.groupBox4.Controls.Add(this.label121);
  2472. this.groupBox4.Controls.Add(this.label64);
  2473. this.groupBox4.Controls.Add(this.textBox_Config_Angle_Pitch);
  2474. this.groupBox4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2475. this.groupBox4.Location = new System.Drawing.Point(580, 343);
  2476. this.groupBox4.Name = "groupBox4";
  2477. this.groupBox4.Size = new System.Drawing.Size(168, 443);
  2478. this.groupBox4.TabIndex = 10;
  2479. this.groupBox4.TabStop = false;
  2480. this.groupBox4.Text = "用户参数2";
  2481. this.groupBox4.Visible = false;
  2482. //
  2483. // textBox_Config_SpeedlimitStop
  2484. //
  2485. this.textBox_Config_SpeedlimitStop.Location = new System.Drawing.Point(94, 290);
  2486. this.textBox_Config_SpeedlimitStop.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2487. this.textBox_Config_SpeedlimitStop.Name = "textBox_Config_SpeedlimitStop";
  2488. this.textBox_Config_SpeedlimitStop.Size = new System.Drawing.Size(70, 26);
  2489. this.textBox_Config_SpeedlimitStop.TabIndex = 27;
  2490. //
  2491. // label128
  2492. //
  2493. this.label128.AutoSize = true;
  2494. this.label128.Location = new System.Drawing.Point(9, 293);
  2495. this.label128.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2496. this.label128.Name = "label128";
  2497. this.label128.Size = new System.Drawing.Size(65, 20);
  2498. this.label128.TabIndex = 26;
  2499. this.label128.Text = "结束限速";
  2500. //
  2501. // textBox_Config_SpeedlimitStart
  2502. //
  2503. this.textBox_Config_SpeedlimitStart.Location = new System.Drawing.Point(94, 264);
  2504. this.textBox_Config_SpeedlimitStart.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2505. this.textBox_Config_SpeedlimitStart.Name = "textBox_Config_SpeedlimitStart";
  2506. this.textBox_Config_SpeedlimitStart.Size = new System.Drawing.Size(70, 26);
  2507. this.textBox_Config_SpeedlimitStart.TabIndex = 25;
  2508. //
  2509. // label129
  2510. //
  2511. this.label129.AutoSize = true;
  2512. this.label129.Location = new System.Drawing.Point(9, 267);
  2513. this.label129.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2514. this.label129.Name = "label129";
  2515. this.label129.Size = new System.Drawing.Size(65, 20);
  2516. this.label129.TabIndex = 24;
  2517. this.label129.Text = "起始限速";
  2518. //
  2519. // textBox_Config_Period
  2520. //
  2521. this.textBox_Config_Period.Location = new System.Drawing.Point(94, 238);
  2522. this.textBox_Config_Period.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2523. this.textBox_Config_Period.Name = "textBox_Config_Period";
  2524. this.textBox_Config_Period.Size = new System.Drawing.Size(70, 26);
  2525. this.textBox_Config_Period.TabIndex = 23;
  2526. //
  2527. // label130
  2528. //
  2529. this.label130.AutoSize = true;
  2530. this.label130.Location = new System.Drawing.Point(9, 241);
  2531. this.label130.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2532. this.label130.Name = "label130";
  2533. this.label130.Size = new System.Drawing.Size(65, 20);
  2534. this.label130.TabIndex = 22;
  2535. this.label130.Text = "尾灯周期";
  2536. //
  2537. // textBox_Config_Pulse
  2538. //
  2539. this.textBox_Config_Pulse.Location = new System.Drawing.Point(94, 212);
  2540. this.textBox_Config_Pulse.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2541. this.textBox_Config_Pulse.Name = "textBox_Config_Pulse";
  2542. this.textBox_Config_Pulse.Size = new System.Drawing.Size(70, 26);
  2543. this.textBox_Config_Pulse.TabIndex = 21;
  2544. //
  2545. // label131
  2546. //
  2547. this.label131.AutoSize = true;
  2548. this.label131.Location = new System.Drawing.Point(9, 215);
  2549. this.label131.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2550. this.label131.Name = "label131";
  2551. this.label131.Size = new System.Drawing.Size(65, 20);
  2552. this.label131.TabIndex = 20;
  2553. this.label131.Text = "尾灯脉宽";
  2554. //
  2555. // textBox_Config_SpeedAlarm
  2556. //
  2557. this.textBox_Config_SpeedAlarm.Location = new System.Drawing.Point(94, 186);
  2558. this.textBox_Config_SpeedAlarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2559. this.textBox_Config_SpeedAlarm.Name = "textBox_Config_SpeedAlarm";
  2560. this.textBox_Config_SpeedAlarm.Size = new System.Drawing.Size(70, 26);
  2561. this.textBox_Config_SpeedAlarm.TabIndex = 19;
  2562. //
  2563. // label132
  2564. //
  2565. this.label132.AutoSize = true;
  2566. this.label132.Location = new System.Drawing.Point(9, 189);
  2567. this.label132.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2568. this.label132.Name = "label132";
  2569. this.label132.Size = new System.Drawing.Size(65, 20);
  2570. this.label132.TabIndex = 18;
  2571. this.label132.Text = "报警阈值";
  2572. //
  2573. // comboBox_TailLightVol
  2574. //
  2575. this.comboBox_TailLightVol.FormattingEnabled = true;
  2576. this.comboBox_TailLightVol.Items.AddRange(new object[] {
  2577. "6V",
  2578. "12V",
  2579. "随电池",
  2580. "硬件"});
  2581. this.comboBox_TailLightVol.Location = new System.Drawing.Point(94, 158);
  2582. this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
  2583. this.comboBox_TailLightVol.Size = new System.Drawing.Size(70, 28);
  2584. this.comboBox_TailLightVol.TabIndex = 12;
  2585. //
  2586. // comboBox_AttiSensor
  2587. //
  2588. this.comboBox_AttiSensor.FormattingEnabled = true;
  2589. this.comboBox_AttiSensor.Items.AddRange(new object[] {
  2590. "不支持",
  2591. "支持"});
  2592. this.comboBox_AttiSensor.Location = new System.Drawing.Point(94, 74);
  2593. this.comboBox_AttiSensor.Name = "comboBox_AttiSensor";
  2594. this.comboBox_AttiSensor.Size = new System.Drawing.Size(70, 28);
  2595. this.comboBox_AttiSensor.TabIndex = 11;
  2596. //
  2597. // comboBox_FrontLigthVol
  2598. //
  2599. this.comboBox_FrontLigthVol.FormattingEnabled = true;
  2600. this.comboBox_FrontLigthVol.Items.AddRange(new object[] {
  2601. "6V",
  2602. "12V",
  2603. "随电池",
  2604. "硬件"});
  2605. this.comboBox_FrontLigthVol.Location = new System.Drawing.Point(94, 130);
  2606. this.comboBox_FrontLigthVol.Name = "comboBox_FrontLigthVol";
  2607. this.comboBox_FrontLigthVol.Size = new System.Drawing.Size(70, 28);
  2608. this.comboBox_FrontLigthVol.TabIndex = 9;
  2609. //
  2610. // comboBox_TailLightMode
  2611. //
  2612. this.comboBox_TailLightMode.FormattingEnabled = true;
  2613. this.comboBox_TailLightMode.Items.AddRange(new object[] {
  2614. "模式1",
  2615. "模式2",
  2616. "模式3",
  2617. "模式4",
  2618. "模式5",
  2619. "模式6"});
  2620. this.comboBox_TailLightMode.Location = new System.Drawing.Point(94, 102);
  2621. this.comboBox_TailLightMode.Name = "comboBox_TailLightMode";
  2622. this.comboBox_TailLightMode.Size = new System.Drawing.Size(70, 28);
  2623. this.comboBox_TailLightMode.TabIndex = 8;
  2624. //
  2625. // button_Write_Config_Ext
  2626. //
  2627. this.button_Write_Config_Ext.Enabled = false;
  2628. this.button_Write_Config_Ext.Location = new System.Drawing.Point(99, 414);
  2629. this.button_Write_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2630. this.button_Write_Config_Ext.Name = "button_Write_Config_Ext";
  2631. this.button_Write_Config_Ext.Size = new System.Drawing.Size(67, 26);
  2632. this.button_Write_Config_Ext.TabIndex = 2;
  2633. this.button_Write_Config_Ext.Text = "写入";
  2634. this.button_Write_Config_Ext.UseVisualStyleBackColor = true;
  2635. this.button_Write_Config_Ext.Click += new System.EventHandler(this.button_Write_Config_Ext_Click);
  2636. //
  2637. // button_Read_Config_Ext
  2638. //
  2639. this.button_Read_Config_Ext.Location = new System.Drawing.Point(10, 414);
  2640. this.button_Read_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2641. this.button_Read_Config_Ext.Name = "button_Read_Config_Ext";
  2642. this.button_Read_Config_Ext.Size = new System.Drawing.Size(67, 26);
  2643. this.button_Read_Config_Ext.TabIndex = 2;
  2644. this.button_Read_Config_Ext.Text = "查询";
  2645. this.button_Read_Config_Ext.UseVisualStyleBackColor = true;
  2646. this.button_Read_Config_Ext.Click += new System.EventHandler(this.button_Read_Config_Ext_Click);
  2647. //
  2648. // label123
  2649. //
  2650. this.label123.AutoSize = true;
  2651. this.label123.Location = new System.Drawing.Point(9, 162);
  2652. this.label123.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2653. this.label123.Name = "label123";
  2654. this.label123.Size = new System.Drawing.Size(65, 20);
  2655. this.label123.TabIndex = 2;
  2656. this.label123.Text = "尾灯电压";
  2657. //
  2658. // label66
  2659. //
  2660. this.label66.AutoSize = true;
  2661. this.label66.Location = new System.Drawing.Point(9, 77);
  2662. this.label66.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2663. this.label66.Name = "label66";
  2664. this.label66.Size = new System.Drawing.Size(79, 20);
  2665. this.label66.TabIndex = 2;
  2666. this.label66.Text = "姿态传感器";
  2667. //
  2668. // label122
  2669. //
  2670. this.label122.AutoSize = true;
  2671. this.label122.Location = new System.Drawing.Point(9, 134);
  2672. this.label122.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2673. this.label122.Name = "label122";
  2674. this.label122.Size = new System.Drawing.Size(65, 20);
  2675. this.label122.TabIndex = 2;
  2676. this.label122.Text = "前灯电压";
  2677. //
  2678. // label65
  2679. //
  2680. this.label65.AutoSize = true;
  2681. this.label65.Location = new System.Drawing.Point(9, 51);
  2682. this.label65.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2683. this.label65.Name = "label65";
  2684. this.label65.Size = new System.Drawing.Size(79, 20);
  2685. this.label65.TabIndex = 2;
  2686. this.label65.Text = "横滚角零偏";
  2687. //
  2688. // textBox_Config_Angle_Roll
  2689. //
  2690. this.textBox_Config_Angle_Roll.Location = new System.Drawing.Point(94, 48);
  2691. this.textBox_Config_Angle_Roll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2692. this.textBox_Config_Angle_Roll.Name = "textBox_Config_Angle_Roll";
  2693. this.textBox_Config_Angle_Roll.Size = new System.Drawing.Size(70, 26);
  2694. this.textBox_Config_Angle_Roll.TabIndex = 2;
  2695. //
  2696. // label121
  2697. //
  2698. this.label121.AutoSize = true;
  2699. this.label121.Location = new System.Drawing.Point(9, 106);
  2700. this.label121.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2701. this.label121.Name = "label121";
  2702. this.label121.Size = new System.Drawing.Size(65, 20);
  2703. this.label121.TabIndex = 2;
  2704. this.label121.Text = "尾灯模式";
  2705. //
  2706. // label64
  2707. //
  2708. this.label64.AutoSize = true;
  2709. this.label64.Location = new System.Drawing.Point(9, 25);
  2710. this.label64.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2711. this.label64.Name = "label64";
  2712. this.label64.Size = new System.Drawing.Size(79, 20);
  2713. this.label64.TabIndex = 2;
  2714. this.label64.Text = "俯仰角零偏";
  2715. //
  2716. // textBox_Config_Angle_Pitch
  2717. //
  2718. this.textBox_Config_Angle_Pitch.Location = new System.Drawing.Point(94, 22);
  2719. this.textBox_Config_Angle_Pitch.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2720. this.textBox_Config_Angle_Pitch.Name = "textBox_Config_Angle_Pitch";
  2721. this.textBox_Config_Angle_Pitch.Size = new System.Drawing.Size(70, 26);
  2722. this.textBox_Config_Angle_Pitch.TabIndex = 2;
  2723. //
  2724. // groupBox12
  2725. //
  2726. this.groupBox12.Controls.Add(this.checkBox_ReadRideInfo);
  2727. this.groupBox12.Controls.Add(this.button_Read_RidedInfo);
  2728. this.groupBox12.Controls.Add(this.label71);
  2729. this.groupBox12.Controls.Add(this.label67);
  2730. this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Time);
  2731. this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Km);
  2732. this.groupBox12.Controls.Add(this.label68);
  2733. this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Time);
  2734. this.groupBox12.Controls.Add(this.label69);
  2735. this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Km);
  2736. this.groupBox12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2737. this.groupBox12.Location = new System.Drawing.Point(896, 13);
  2738. this.groupBox12.Name = "groupBox12";
  2739. this.groupBox12.Size = new System.Drawing.Size(170, 191);
  2740. this.groupBox12.TabIndex = 11;
  2741. this.groupBox12.TabStop = false;
  2742. this.groupBox12.Text = "骑行信息";
  2743. this.groupBox12.Visible = false;
  2744. //
  2745. // checkBox_ReadRideInfo
  2746. //
  2747. this.checkBox_ReadRideInfo.AutoSize = true;
  2748. this.checkBox_ReadRideInfo.Location = new System.Drawing.Point(102, 155);
  2749. this.checkBox_ReadRideInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2750. this.checkBox_ReadRideInfo.Name = "checkBox_ReadRideInfo";
  2751. this.checkBox_ReadRideInfo.Size = new System.Drawing.Size(56, 24);
  2752. this.checkBox_ReadRideInfo.TabIndex = 8;
  2753. this.checkBox_ReadRideInfo.Text = "自动";
  2754. this.checkBox_ReadRideInfo.UseVisualStyleBackColor = true;
  2755. //
  2756. // button_Read_RidedInfo
  2757. //
  2758. this.button_Read_RidedInfo.Location = new System.Drawing.Point(17, 151);
  2759. this.button_Read_RidedInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2760. this.button_Read_RidedInfo.Name = "button_Read_RidedInfo";
  2761. this.button_Read_RidedInfo.Size = new System.Drawing.Size(67, 35);
  2762. this.button_Read_RidedInfo.TabIndex = 2;
  2763. this.button_Read_RidedInfo.Text = "查询";
  2764. this.button_Read_RidedInfo.UseVisualStyleBackColor = true;
  2765. this.button_Read_RidedInfo.Click += new System.EventHandler(this.button_Read_RidedInfo_Click);
  2766. //
  2767. // label71
  2768. //
  2769. this.label71.AutoSize = true;
  2770. this.label71.Location = new System.Drawing.Point(6, 118);
  2771. this.label71.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2772. this.label71.Name = "label71";
  2773. this.label71.Size = new System.Drawing.Size(67, 20);
  2774. this.label71.TabIndex = 2;
  2775. this.label71.Text = "TRIP时间";
  2776. //
  2777. // label67
  2778. //
  2779. this.label67.AutoSize = true;
  2780. this.label67.Location = new System.Drawing.Point(6, 88);
  2781. this.label67.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2782. this.label67.Name = "label67";
  2783. this.label67.Size = new System.Drawing.Size(67, 20);
  2784. this.label67.TabIndex = 2;
  2785. this.label67.Text = "TRIP里程";
  2786. //
  2787. // textBox_RideInfo_Trip_Time
  2788. //
  2789. this.textBox_RideInfo_Trip_Time.Location = new System.Drawing.Point(79, 114);
  2790. this.textBox_RideInfo_Trip_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2791. this.textBox_RideInfo_Trip_Time.Name = "textBox_RideInfo_Trip_Time";
  2792. this.textBox_RideInfo_Trip_Time.ReadOnly = true;
  2793. this.textBox_RideInfo_Trip_Time.Size = new System.Drawing.Size(85, 26);
  2794. this.textBox_RideInfo_Trip_Time.TabIndex = 2;
  2795. //
  2796. // textBox_RideInfo_Trip_Km
  2797. //
  2798. this.textBox_RideInfo_Trip_Km.Location = new System.Drawing.Point(79, 84);
  2799. this.textBox_RideInfo_Trip_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2800. this.textBox_RideInfo_Trip_Km.Name = "textBox_RideInfo_Trip_Km";
  2801. this.textBox_RideInfo_Trip_Km.ReadOnly = true;
  2802. this.textBox_RideInfo_Trip_Km.Size = new System.Drawing.Size(85, 26);
  2803. this.textBox_RideInfo_Trip_Km.TabIndex = 2;
  2804. //
  2805. // label68
  2806. //
  2807. this.label68.AutoSize = true;
  2808. this.label68.Location = new System.Drawing.Point(6, 59);
  2809. this.label68.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2810. this.label68.Name = "label68";
  2811. this.label68.Size = new System.Drawing.Size(70, 20);
  2812. this.label68.TabIndex = 2;
  2813. this.label68.Text = "ODO时间";
  2814. //
  2815. // textBox_RideInfo_ODO_Time
  2816. //
  2817. this.textBox_RideInfo_ODO_Time.Location = new System.Drawing.Point(79, 55);
  2818. this.textBox_RideInfo_ODO_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2819. this.textBox_RideInfo_ODO_Time.Name = "textBox_RideInfo_ODO_Time";
  2820. this.textBox_RideInfo_ODO_Time.ReadOnly = true;
  2821. this.textBox_RideInfo_ODO_Time.Size = new System.Drawing.Size(85, 26);
  2822. this.textBox_RideInfo_ODO_Time.TabIndex = 2;
  2823. //
  2824. // label69
  2825. //
  2826. this.label69.AutoSize = true;
  2827. this.label69.Location = new System.Drawing.Point(6, 30);
  2828. this.label69.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2829. this.label69.Name = "label69";
  2830. this.label69.Size = new System.Drawing.Size(70, 20);
  2831. this.label69.TabIndex = 2;
  2832. this.label69.Text = "ODO里程";
  2833. //
  2834. // textBox_RideInfo_ODO_Km
  2835. //
  2836. this.textBox_RideInfo_ODO_Km.Location = new System.Drawing.Point(79, 26);
  2837. this.textBox_RideInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2838. this.textBox_RideInfo_ODO_Km.Name = "textBox_RideInfo_ODO_Km";
  2839. this.textBox_RideInfo_ODO_Km.ReadOnly = true;
  2840. this.textBox_RideInfo_ODO_Km.Size = new System.Drawing.Size(85, 26);
  2841. this.textBox_RideInfo_ODO_Km.TabIndex = 2;
  2842. //
  2843. // groupBox13
  2844. //
  2845. this.groupBox13.Controls.Add(this.checkBox_ReadAttitudeAngleAutoSend);
  2846. this.groupBox13.Controls.Add(this.button_Read_AttitudeAngle);
  2847. this.groupBox13.Controls.Add(this.label72);
  2848. this.groupBox13.Controls.Add(this.label73);
  2849. this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Rel);
  2850. this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Abs);
  2851. this.groupBox13.Controls.Add(this.label74);
  2852. this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Rel);
  2853. this.groupBox13.Controls.Add(this.label75);
  2854. this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Abs);
  2855. this.groupBox13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2856. this.groupBox13.Location = new System.Drawing.Point(753, 206);
  2857. this.groupBox13.Name = "groupBox13";
  2858. this.groupBox13.Size = new System.Drawing.Size(313, 133);
  2859. this.groupBox13.TabIndex = 11;
  2860. this.groupBox13.TabStop = false;
  2861. this.groupBox13.Text = "姿态信息";
  2862. this.groupBox13.Visible = false;
  2863. //
  2864. // checkBox_ReadAttitudeAngleAutoSend
  2865. //
  2866. this.checkBox_ReadAttitudeAngleAutoSend.AutoSize = true;
  2867. this.checkBox_ReadAttitudeAngleAutoSend.Location = new System.Drawing.Point(243, 93);
  2868. this.checkBox_ReadAttitudeAngleAutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2869. this.checkBox_ReadAttitudeAngleAutoSend.Name = "checkBox_ReadAttitudeAngleAutoSend";
  2870. this.checkBox_ReadAttitudeAngleAutoSend.Size = new System.Drawing.Size(56, 24);
  2871. this.checkBox_ReadAttitudeAngleAutoSend.TabIndex = 8;
  2872. this.checkBox_ReadAttitudeAngleAutoSend.Text = "自动";
  2873. this.checkBox_ReadAttitudeAngleAutoSend.UseVisualStyleBackColor = true;
  2874. //
  2875. // button_Read_AttitudeAngle
  2876. //
  2877. this.button_Read_AttitudeAngle.Location = new System.Drawing.Point(242, 40);
  2878. this.button_Read_AttitudeAngle.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2879. this.button_Read_AttitudeAngle.Name = "button_Read_AttitudeAngle";
  2880. this.button_Read_AttitudeAngle.Size = new System.Drawing.Size(55, 35);
  2881. this.button_Read_AttitudeAngle.TabIndex = 2;
  2882. this.button_Read_AttitudeAngle.Text = "查询";
  2883. this.button_Read_AttitudeAngle.UseVisualStyleBackColor = true;
  2884. this.button_Read_AttitudeAngle.Click += new System.EventHandler(this.button_Read_AttitudeAngle_Click);
  2885. //
  2886. // label72
  2887. //
  2888. this.label72.AutoSize = true;
  2889. this.label72.Location = new System.Drawing.Point(121, 94);
  2890. this.label72.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2891. this.label72.Name = "label72";
  2892. this.label72.Size = new System.Drawing.Size(65, 20);
  2893. this.label72.TabIndex = 2;
  2894. this.label72.Text = "横滚相对";
  2895. //
  2896. // label73
  2897. //
  2898. this.label73.AutoSize = true;
  2899. this.label73.Location = new System.Drawing.Point(121, 47);
  2900. this.label73.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2901. this.label73.Name = "label73";
  2902. this.label73.Size = new System.Drawing.Size(69, 20);
  2903. this.label73.TabIndex = 2;
  2904. this.label73.Text = "横滚绝对 ";
  2905. //
  2906. // textBox_Attitude_RollAngle_Rel
  2907. //
  2908. this.textBox_Attitude_RollAngle_Rel.Location = new System.Drawing.Point(194, 91);
  2909. this.textBox_Attitude_RollAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2910. this.textBox_Attitude_RollAngle_Rel.Name = "textBox_Attitude_RollAngle_Rel";
  2911. this.textBox_Attitude_RollAngle_Rel.ReadOnly = true;
  2912. this.textBox_Attitude_RollAngle_Rel.Size = new System.Drawing.Size(45, 26);
  2913. this.textBox_Attitude_RollAngle_Rel.TabIndex = 2;
  2914. //
  2915. // textBox_Attitude_RollAngle_Abs
  2916. //
  2917. this.textBox_Attitude_RollAngle_Abs.Location = new System.Drawing.Point(194, 44);
  2918. this.textBox_Attitude_RollAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2919. this.textBox_Attitude_RollAngle_Abs.Name = "textBox_Attitude_RollAngle_Abs";
  2920. this.textBox_Attitude_RollAngle_Abs.ReadOnly = true;
  2921. this.textBox_Attitude_RollAngle_Abs.Size = new System.Drawing.Size(45, 26);
  2922. this.textBox_Attitude_RollAngle_Abs.TabIndex = 2;
  2923. //
  2924. // label74
  2925. //
  2926. this.label74.AutoSize = true;
  2927. this.label74.Location = new System.Drawing.Point(6, 93);
  2928. this.label74.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2929. this.label74.Name = "label74";
  2930. this.label74.Size = new System.Drawing.Size(65, 20);
  2931. this.label74.TabIndex = 2;
  2932. this.label74.Text = "俯仰相对";
  2933. //
  2934. // textBox_Attitude_PitchAngle_Rel
  2935. //
  2936. this.textBox_Attitude_PitchAngle_Rel.Location = new System.Drawing.Point(74, 90);
  2937. this.textBox_Attitude_PitchAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2938. this.textBox_Attitude_PitchAngle_Rel.Name = "textBox_Attitude_PitchAngle_Rel";
  2939. this.textBox_Attitude_PitchAngle_Rel.ReadOnly = true;
  2940. this.textBox_Attitude_PitchAngle_Rel.Size = new System.Drawing.Size(45, 26);
  2941. this.textBox_Attitude_PitchAngle_Rel.TabIndex = 2;
  2942. //
  2943. // label75
  2944. //
  2945. this.label75.AutoSize = true;
  2946. this.label75.Location = new System.Drawing.Point(6, 47);
  2947. this.label75.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  2948. this.label75.Name = "label75";
  2949. this.label75.Size = new System.Drawing.Size(65, 20);
  2950. this.label75.TabIndex = 2;
  2951. this.label75.Text = "俯仰绝对";
  2952. //
  2953. // textBox_Attitude_PitchAngle_Abs
  2954. //
  2955. this.textBox_Attitude_PitchAngle_Abs.Location = new System.Drawing.Point(74, 44);
  2956. this.textBox_Attitude_PitchAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  2957. this.textBox_Attitude_PitchAngle_Abs.Name = "textBox_Attitude_PitchAngle_Abs";
  2958. this.textBox_Attitude_PitchAngle_Abs.ReadOnly = true;
  2959. this.textBox_Attitude_PitchAngle_Abs.Size = new System.Drawing.Size(45, 26);
  2960. this.textBox_Attitude_PitchAngle_Abs.TabIndex = 2;
  2961. //
  2962. // label78
  2963. //
  2964. this.label78.AutoSize = true;
  2965. this.label78.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2966. this.label78.ForeColor = System.Drawing.SystemColors.ControlText;
  2967. this.label78.Location = new System.Drawing.Point(3, 740);
  2968. this.label78.Name = "label78";
  2969. this.label78.Size = new System.Drawing.Size(79, 20);
  2970. this.label78.TabIndex = 12;
  2971. this.label78.Text = "编译时间:";
  2972. //
  2973. // label_BiuldTime
  2974. //
  2975. this.label_BiuldTime.AutoSize = true;
  2976. this.label_BiuldTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2977. this.label_BiuldTime.ForeColor = System.Drawing.SystemColors.ControlText;
  2978. this.label_BiuldTime.Location = new System.Drawing.Point(73, 741);
  2979. this.label_BiuldTime.Name = "label_BiuldTime";
  2980. this.label_BiuldTime.Size = new System.Drawing.Size(18, 20);
  2981. this.label_BiuldTime.TabIndex = 13;
  2982. this.label_BiuldTime.Text = "V";
  2983. //
  2984. // label77
  2985. //
  2986. this.label77.AutoSize = true;
  2987. this.label77.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  2988. this.label77.ForeColor = System.Drawing.SystemColors.ControlText;
  2989. this.label77.Location = new System.Drawing.Point(3, 763);
  2990. this.label77.Name = "label77";
  2991. this.label77.Size = new System.Drawing.Size(247, 20);
  2992. this.label77.TabIndex = 12;
  2993. this.label77.Text = "版权所有:武汉天腾动力科技有限公司";
  2994. //
  2995. // groupBox14
  2996. //
  2997. this.groupBox14.Controls.Add(this.label99);
  2998. this.groupBox14.Controls.Add(this.button_ReadErrorLog);
  2999. this.groupBox14.Controls.Add(this.button_ReadRunLog);
  3000. this.groupBox14.Controls.Add(this.label96);
  3001. this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MIN);
  3002. this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MIN);
  3003. this.groupBox14.Controls.Add(this.label98);
  3004. this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MAX);
  3005. this.groupBox14.Controls.Add(this.label97);
  3006. this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MAX);
  3007. this.groupBox14.Controls.Add(this.label95);
  3008. this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MIN);
  3009. this.groupBox14.Controls.Add(this.label94);
  3010. this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MAX);
  3011. this.groupBox14.Controls.Add(this.label93);
  3012. this.groupBox14.Controls.Add(this.textBox_Runlog1_PBUFault);
  3013. this.groupBox14.Controls.Add(this.label92);
  3014. this.groupBox14.Controls.Add(this.textBox_Runlog1_HMIFault);
  3015. this.groupBox14.Controls.Add(this.label91);
  3016. this.groupBox14.Controls.Add(this.textBox_Runlog1_BMSFault);
  3017. this.groupBox14.Controls.Add(this.label90);
  3018. this.groupBox14.Controls.Add(this.textBox_Runlog1_NTCFault);
  3019. this.groupBox14.Controls.Add(this.label89);
  3020. this.groupBox14.Controls.Add(this.textBox_Runlog1_Phase);
  3021. this.groupBox14.Controls.Add(this.label88);
  3022. this.groupBox14.Controls.Add(this.textBox_Runlog1_HallFault);
  3023. this.groupBox14.Controls.Add(this.label87);
  3024. this.groupBox14.Controls.Add(this.textBox_Runlog1_TQSFault);
  3025. this.groupBox14.Controls.Add(this.label86);
  3026. this.groupBox14.Controls.Add(this.textBox_Runlog1_SPSFault);
  3027. this.groupBox14.Controls.Add(this.label85);
  3028. this.groupBox14.Controls.Add(this.textBox_Runlog1_OT);
  3029. this.groupBox14.Controls.Add(this.label84);
  3030. this.groupBox14.Controls.Add(this.textBox_Runlog1_Lock);
  3031. this.groupBox14.Controls.Add(this.label83);
  3032. this.groupBox14.Controls.Add(this.textBox_Runlog1_OV);
  3033. this.groupBox14.Controls.Add(this.label82);
  3034. this.groupBox14.Controls.Add(this.textBox_Runlog1_UV);
  3035. this.groupBox14.Controls.Add(this.label81);
  3036. this.groupBox14.Controls.Add(this.textBox_Runlog1_OC);
  3037. this.groupBox14.Controls.Add(this.label80);
  3038. this.groupBox14.Controls.Add(this.textBox_Runlog1_RunTime);
  3039. this.groupBox14.Controls.Add(this.label107);
  3040. this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_CircuitFault);
  3041. this.groupBox14.Controls.Add(this.label106);
  3042. this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_MCUFault);
  3043. this.groupBox14.Controls.Add(this.label105);
  3044. this.groupBox14.Controls.Add(this.textBox_Runlog2_CircuitFault);
  3045. this.groupBox14.Controls.Add(this.label104);
  3046. this.groupBox14.Controls.Add(this.textBox_Runlog2_VolFault);
  3047. this.groupBox14.Controls.Add(this.label103);
  3048. this.groupBox14.Controls.Add(this.textBox_Runlog2_MOS_SC);
  3049. this.groupBox14.Controls.Add(this.label102);
  3050. this.groupBox14.Controls.Add(this.textBox_Runlog2_GasFault);
  3051. this.groupBox14.Controls.Add(this.label101);
  3052. this.groupBox14.Controls.Add(this.textBox_Runlog2_CDSFault);
  3053. this.groupBox14.Controls.Add(this.label100);
  3054. this.groupBox14.Controls.Add(this.textBox_Runlog2_MCUFault);
  3055. this.groupBox14.Controls.Add(this.label79);
  3056. this.groupBox14.Controls.Add(this.textBox_Runlog1_PowerCount);
  3057. this.groupBox14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3058. this.groupBox14.Location = new System.Drawing.Point(1070, 13);
  3059. this.groupBox14.Name = "groupBox14";
  3060. this.groupBox14.Size = new System.Drawing.Size(318, 709);
  3061. this.groupBox14.TabIndex = 14;
  3062. this.groupBox14.TabStop = false;
  3063. this.groupBox14.Text = "历史信息";
  3064. this.groupBox14.Visible = false;
  3065. //
  3066. // label99
  3067. //
  3068. this.label99.AutoSize = true;
  3069. this.label99.Location = new System.Drawing.Point(5, 675);
  3070. this.label99.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3071. this.label99.Name = "label99";
  3072. this.label99.Size = new System.Drawing.Size(84, 20);
  3073. this.label99.TabIndex = 3;
  3074. this.label99.Text = "MCU最低温";
  3075. //
  3076. // button_ReadErrorLog
  3077. //
  3078. this.button_ReadErrorLog.Location = new System.Drawing.Point(185, 663);
  3079. this.button_ReadErrorLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3080. this.button_ReadErrorLog.Name = "button_ReadErrorLog";
  3081. this.button_ReadErrorLog.Size = new System.Drawing.Size(80, 35);
  3082. this.button_ReadErrorLog.TabIndex = 2;
  3083. this.button_ReadErrorLog.Text = "记录导出";
  3084. this.button_ReadErrorLog.UseVisualStyleBackColor = true;
  3085. this.button_ReadErrorLog.Click += new System.EventHandler(this.button_ReadErrorLog_Click);
  3086. this.button_ReadErrorLog.MouseHover += new System.EventHandler(this.button_ReadErrorLog_MouseHover);
  3087. //
  3088. // button_ReadRunLog
  3089. //
  3090. this.button_ReadRunLog.Location = new System.Drawing.Point(185, 620);
  3091. this.button_ReadRunLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3092. this.button_ReadRunLog.Name = "button_ReadRunLog";
  3093. this.button_ReadRunLog.Size = new System.Drawing.Size(80, 35);
  3094. this.button_ReadRunLog.TabIndex = 2;
  3095. this.button_ReadRunLog.Text = "查询";
  3096. this.button_ReadRunLog.UseVisualStyleBackColor = true;
  3097. this.button_ReadRunLog.Click += new System.EventHandler(this.button_ReadRunLog_Click);
  3098. //
  3099. // label96
  3100. //
  3101. this.label96.AutoSize = true;
  3102. this.label96.Location = new System.Drawing.Point(5, 611);
  3103. this.label96.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3104. this.label96.Name = "label96";
  3105. this.label96.Size = new System.Drawing.Size(79, 20);
  3106. this.label96.TabIndex = 3;
  3107. this.label96.Text = "绕组最低温";
  3108. //
  3109. // textBox_Runlog1_MCU_MIN
  3110. //
  3111. this.textBox_Runlog1_MCU_MIN.Location = new System.Drawing.Point(90, 672);
  3112. this.textBox_Runlog1_MCU_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3113. this.textBox_Runlog1_MCU_MIN.Name = "textBox_Runlog1_MCU_MIN";
  3114. this.textBox_Runlog1_MCU_MIN.ReadOnly = true;
  3115. this.textBox_Runlog1_MCU_MIN.Size = new System.Drawing.Size(60, 26);
  3116. this.textBox_Runlog1_MCU_MIN.TabIndex = 4;
  3117. //
  3118. // textBox_Runlog1_Coil_MIN
  3119. //
  3120. this.textBox_Runlog1_Coil_MIN.Location = new System.Drawing.Point(90, 608);
  3121. this.textBox_Runlog1_Coil_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3122. this.textBox_Runlog1_Coil_MIN.Name = "textBox_Runlog1_Coil_MIN";
  3123. this.textBox_Runlog1_Coil_MIN.ReadOnly = true;
  3124. this.textBox_Runlog1_Coil_MIN.Size = new System.Drawing.Size(60, 26);
  3125. this.textBox_Runlog1_Coil_MIN.TabIndex = 4;
  3126. //
  3127. // label98
  3128. //
  3129. this.label98.AutoSize = true;
  3130. this.label98.Location = new System.Drawing.Point(5, 643);
  3131. this.label98.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3132. this.label98.Name = "label98";
  3133. this.label98.Size = new System.Drawing.Size(84, 20);
  3134. this.label98.TabIndex = 5;
  3135. this.label98.Text = "MCU最高温";
  3136. //
  3137. // textBox_Runlog1_MCU_MAX
  3138. //
  3139. this.textBox_Runlog1_MCU_MAX.Location = new System.Drawing.Point(90, 640);
  3140. this.textBox_Runlog1_MCU_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3141. this.textBox_Runlog1_MCU_MAX.Name = "textBox_Runlog1_MCU_MAX";
  3142. this.textBox_Runlog1_MCU_MAX.ReadOnly = true;
  3143. this.textBox_Runlog1_MCU_MAX.Size = new System.Drawing.Size(60, 26);
  3144. this.textBox_Runlog1_MCU_MAX.TabIndex = 6;
  3145. //
  3146. // label97
  3147. //
  3148. this.label97.AutoSize = true;
  3149. this.label97.Location = new System.Drawing.Point(5, 579);
  3150. this.label97.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3151. this.label97.Name = "label97";
  3152. this.label97.Size = new System.Drawing.Size(79, 20);
  3153. this.label97.TabIndex = 5;
  3154. this.label97.Text = "绕组最高温";
  3155. //
  3156. // textBox_Runlog1_Coil_MAX
  3157. //
  3158. this.textBox_Runlog1_Coil_MAX.Location = new System.Drawing.Point(90, 575);
  3159. this.textBox_Runlog1_Coil_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3160. this.textBox_Runlog1_Coil_MAX.Name = "textBox_Runlog1_Coil_MAX";
  3161. this.textBox_Runlog1_Coil_MAX.ReadOnly = true;
  3162. this.textBox_Runlog1_Coil_MAX.Size = new System.Drawing.Size(60, 26);
  3163. this.textBox_Runlog1_Coil_MAX.TabIndex = 6;
  3164. //
  3165. // label95
  3166. //
  3167. this.label95.AutoSize = true;
  3168. this.label95.Location = new System.Drawing.Point(5, 547);
  3169. this.label95.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3170. this.label95.Name = "label95";
  3171. this.label95.Size = new System.Drawing.Size(78, 20);
  3172. this.label95.TabIndex = 2;
  3173. this.label95.Text = "PCB最低温";
  3174. //
  3175. // textBox_Runlog1_PCB_MIN
  3176. //
  3177. this.textBox_Runlog1_PCB_MIN.Location = new System.Drawing.Point(90, 543);
  3178. this.textBox_Runlog1_PCB_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3179. this.textBox_Runlog1_PCB_MIN.Name = "textBox_Runlog1_PCB_MIN";
  3180. this.textBox_Runlog1_PCB_MIN.ReadOnly = true;
  3181. this.textBox_Runlog1_PCB_MIN.Size = new System.Drawing.Size(60, 26);
  3182. this.textBox_Runlog1_PCB_MIN.TabIndex = 2;
  3183. //
  3184. // label94
  3185. //
  3186. this.label94.AutoSize = true;
  3187. this.label94.Location = new System.Drawing.Point(5, 515);
  3188. this.label94.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3189. this.label94.Name = "label94";
  3190. this.label94.Size = new System.Drawing.Size(78, 20);
  3191. this.label94.TabIndex = 2;
  3192. this.label94.Text = "PCB最高温";
  3193. //
  3194. // textBox_Runlog1_PCB_MAX
  3195. //
  3196. this.textBox_Runlog1_PCB_MAX.Location = new System.Drawing.Point(90, 511);
  3197. this.textBox_Runlog1_PCB_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3198. this.textBox_Runlog1_PCB_MAX.Name = "textBox_Runlog1_PCB_MAX";
  3199. this.textBox_Runlog1_PCB_MAX.ReadOnly = true;
  3200. this.textBox_Runlog1_PCB_MAX.Size = new System.Drawing.Size(60, 26);
  3201. this.textBox_Runlog1_PCB_MAX.TabIndex = 2;
  3202. //
  3203. // label93
  3204. //
  3205. this.label93.AutoSize = true;
  3206. this.label93.Location = new System.Drawing.Point(6, 483);
  3207. this.label93.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3208. this.label93.Name = "label93";
  3209. this.label93.Size = new System.Drawing.Size(79, 20);
  3210. this.label93.TabIndex = 2;
  3211. this.label93.Text = "PBU未授权";
  3212. //
  3213. // textBox_Runlog1_PBUFault
  3214. //
  3215. this.textBox_Runlog1_PBUFault.Location = new System.Drawing.Point(90, 479);
  3216. this.textBox_Runlog1_PBUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3217. this.textBox_Runlog1_PBUFault.Name = "textBox_Runlog1_PBUFault";
  3218. this.textBox_Runlog1_PBUFault.ReadOnly = true;
  3219. this.textBox_Runlog1_PBUFault.Size = new System.Drawing.Size(60, 26);
  3220. this.textBox_Runlog1_PBUFault.TabIndex = 2;
  3221. //
  3222. // label92
  3223. //
  3224. this.label92.AutoSize = true;
  3225. this.label92.Location = new System.Drawing.Point(6, 451);
  3226. this.label92.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3227. this.label92.Name = "label92";
  3228. this.label92.Size = new System.Drawing.Size(80, 20);
  3229. this.label92.TabIndex = 2;
  3230. this.label92.Text = "HMI未授权";
  3231. //
  3232. // textBox_Runlog1_HMIFault
  3233. //
  3234. this.textBox_Runlog1_HMIFault.Location = new System.Drawing.Point(90, 448);
  3235. this.textBox_Runlog1_HMIFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3236. this.textBox_Runlog1_HMIFault.Name = "textBox_Runlog1_HMIFault";
  3237. this.textBox_Runlog1_HMIFault.ReadOnly = true;
  3238. this.textBox_Runlog1_HMIFault.Size = new System.Drawing.Size(60, 26);
  3239. this.textBox_Runlog1_HMIFault.TabIndex = 2;
  3240. //
  3241. // label91
  3242. //
  3243. this.label91.AutoSize = true;
  3244. this.label91.Location = new System.Drawing.Point(6, 419);
  3245. this.label91.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3246. this.label91.Name = "label91";
  3247. this.label91.Size = new System.Drawing.Size(82, 20);
  3248. this.label91.TabIndex = 2;
  3249. this.label91.Text = "BMS未授权";
  3250. //
  3251. // textBox_Runlog1_BMSFault
  3252. //
  3253. this.textBox_Runlog1_BMSFault.Location = new System.Drawing.Point(90, 416);
  3254. this.textBox_Runlog1_BMSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3255. this.textBox_Runlog1_BMSFault.Name = "textBox_Runlog1_BMSFault";
  3256. this.textBox_Runlog1_BMSFault.ReadOnly = true;
  3257. this.textBox_Runlog1_BMSFault.Size = new System.Drawing.Size(60, 26);
  3258. this.textBox_Runlog1_BMSFault.TabIndex = 2;
  3259. //
  3260. // label90
  3261. //
  3262. this.label90.AutoSize = true;
  3263. this.label90.Location = new System.Drawing.Point(5, 387);
  3264. this.label90.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3265. this.label90.Name = "label90";
  3266. this.label90.Size = new System.Drawing.Size(65, 20);
  3267. this.label90.TabIndex = 2;
  3268. this.label90.Text = "NTC故障";
  3269. //
  3270. // textBox_Runlog1_NTCFault
  3271. //
  3272. this.textBox_Runlog1_NTCFault.Location = new System.Drawing.Point(90, 384);
  3273. this.textBox_Runlog1_NTCFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3274. this.textBox_Runlog1_NTCFault.Name = "textBox_Runlog1_NTCFault";
  3275. this.textBox_Runlog1_NTCFault.ReadOnly = true;
  3276. this.textBox_Runlog1_NTCFault.Size = new System.Drawing.Size(60, 26);
  3277. this.textBox_Runlog1_NTCFault.TabIndex = 2;
  3278. //
  3279. // label89
  3280. //
  3281. this.label89.AutoSize = true;
  3282. this.label89.Location = new System.Drawing.Point(5, 355);
  3283. this.label89.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3284. this.label89.Name = "label89";
  3285. this.label89.Size = new System.Drawing.Size(65, 20);
  3286. this.label89.TabIndex = 2;
  3287. this.label89.Text = "马达缺相";
  3288. //
  3289. // textBox_Runlog1_Phase
  3290. //
  3291. this.textBox_Runlog1_Phase.Location = new System.Drawing.Point(90, 352);
  3292. this.textBox_Runlog1_Phase.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3293. this.textBox_Runlog1_Phase.Name = "textBox_Runlog1_Phase";
  3294. this.textBox_Runlog1_Phase.ReadOnly = true;
  3295. this.textBox_Runlog1_Phase.Size = new System.Drawing.Size(60, 26);
  3296. this.textBox_Runlog1_Phase.TabIndex = 2;
  3297. //
  3298. // label88
  3299. //
  3300. this.label88.AutoSize = true;
  3301. this.label88.Location = new System.Drawing.Point(5, 323);
  3302. this.label88.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3303. this.label88.Name = "label88";
  3304. this.label88.Size = new System.Drawing.Size(65, 20);
  3305. this.label88.TabIndex = 2;
  3306. this.label88.Text = "霍尔故障";
  3307. //
  3308. // textBox_Runlog1_HallFault
  3309. //
  3310. this.textBox_Runlog1_HallFault.Location = new System.Drawing.Point(90, 320);
  3311. this.textBox_Runlog1_HallFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3312. this.textBox_Runlog1_HallFault.Name = "textBox_Runlog1_HallFault";
  3313. this.textBox_Runlog1_HallFault.ReadOnly = true;
  3314. this.textBox_Runlog1_HallFault.Size = new System.Drawing.Size(60, 26);
  3315. this.textBox_Runlog1_HallFault.TabIndex = 2;
  3316. //
  3317. // label87
  3318. //
  3319. this.label87.AutoSize = true;
  3320. this.label87.Location = new System.Drawing.Point(5, 291);
  3321. this.label87.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3322. this.label87.Name = "label87";
  3323. this.label87.Size = new System.Drawing.Size(64, 20);
  3324. this.label87.TabIndex = 2;
  3325. this.label87.Text = "TQS故障";
  3326. //
  3327. // textBox_Runlog1_TQSFault
  3328. //
  3329. this.textBox_Runlog1_TQSFault.Location = new System.Drawing.Point(90, 288);
  3330. this.textBox_Runlog1_TQSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3331. this.textBox_Runlog1_TQSFault.Name = "textBox_Runlog1_TQSFault";
  3332. this.textBox_Runlog1_TQSFault.ReadOnly = true;
  3333. this.textBox_Runlog1_TQSFault.Size = new System.Drawing.Size(60, 26);
  3334. this.textBox_Runlog1_TQSFault.TabIndex = 2;
  3335. //
  3336. // label86
  3337. //
  3338. this.label86.AutoSize = true;
  3339. this.label86.Location = new System.Drawing.Point(5, 259);
  3340. this.label86.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3341. this.label86.Name = "label86";
  3342. this.label86.Size = new System.Drawing.Size(62, 20);
  3343. this.label86.TabIndex = 2;
  3344. this.label86.Text = "SPS故障";
  3345. //
  3346. // textBox_Runlog1_SPSFault
  3347. //
  3348. this.textBox_Runlog1_SPSFault.Location = new System.Drawing.Point(90, 256);
  3349. this.textBox_Runlog1_SPSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3350. this.textBox_Runlog1_SPSFault.Name = "textBox_Runlog1_SPSFault";
  3351. this.textBox_Runlog1_SPSFault.ReadOnly = true;
  3352. this.textBox_Runlog1_SPSFault.Size = new System.Drawing.Size(60, 26);
  3353. this.textBox_Runlog1_SPSFault.TabIndex = 2;
  3354. //
  3355. // label85
  3356. //
  3357. this.label85.AutoSize = true;
  3358. this.label85.Location = new System.Drawing.Point(5, 227);
  3359. this.label85.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3360. this.label85.Name = "label85";
  3361. this.label85.Size = new System.Drawing.Size(65, 20);
  3362. this.label85.TabIndex = 2;
  3363. this.label85.Text = "过热保护";
  3364. //
  3365. // textBox_Runlog1_OT
  3366. //
  3367. this.textBox_Runlog1_OT.Location = new System.Drawing.Point(90, 224);
  3368. this.textBox_Runlog1_OT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3369. this.textBox_Runlog1_OT.Name = "textBox_Runlog1_OT";
  3370. this.textBox_Runlog1_OT.ReadOnly = true;
  3371. this.textBox_Runlog1_OT.Size = new System.Drawing.Size(60, 26);
  3372. this.textBox_Runlog1_OT.TabIndex = 2;
  3373. //
  3374. // label84
  3375. //
  3376. this.label84.AutoSize = true;
  3377. this.label84.Location = new System.Drawing.Point(5, 195);
  3378. this.label84.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3379. this.label84.Name = "label84";
  3380. this.label84.Size = new System.Drawing.Size(65, 20);
  3381. this.label84.TabIndex = 2;
  3382. this.label84.Text = "堵转保护";
  3383. //
  3384. // textBox_Runlog1_Lock
  3385. //
  3386. this.textBox_Runlog1_Lock.Location = new System.Drawing.Point(90, 192);
  3387. this.textBox_Runlog1_Lock.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3388. this.textBox_Runlog1_Lock.Name = "textBox_Runlog1_Lock";
  3389. this.textBox_Runlog1_Lock.ReadOnly = true;
  3390. this.textBox_Runlog1_Lock.Size = new System.Drawing.Size(60, 26);
  3391. this.textBox_Runlog1_Lock.TabIndex = 2;
  3392. //
  3393. // label83
  3394. //
  3395. this.label83.AutoSize = true;
  3396. this.label83.Location = new System.Drawing.Point(5, 163);
  3397. this.label83.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3398. this.label83.Name = "label83";
  3399. this.label83.Size = new System.Drawing.Size(65, 20);
  3400. this.label83.TabIndex = 2;
  3401. this.label83.Text = "过压保护";
  3402. //
  3403. // textBox_Runlog1_OV
  3404. //
  3405. this.textBox_Runlog1_OV.Location = new System.Drawing.Point(90, 160);
  3406. this.textBox_Runlog1_OV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3407. this.textBox_Runlog1_OV.Name = "textBox_Runlog1_OV";
  3408. this.textBox_Runlog1_OV.ReadOnly = true;
  3409. this.textBox_Runlog1_OV.Size = new System.Drawing.Size(60, 26);
  3410. this.textBox_Runlog1_OV.TabIndex = 2;
  3411. //
  3412. // label82
  3413. //
  3414. this.label82.AutoSize = true;
  3415. this.label82.Location = new System.Drawing.Point(5, 131);
  3416. this.label82.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3417. this.label82.Name = "label82";
  3418. this.label82.Size = new System.Drawing.Size(65, 20);
  3419. this.label82.TabIndex = 2;
  3420. this.label82.Text = "低压保护";
  3421. //
  3422. // textBox_Runlog1_UV
  3423. //
  3424. this.textBox_Runlog1_UV.Location = new System.Drawing.Point(90, 128);
  3425. this.textBox_Runlog1_UV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3426. this.textBox_Runlog1_UV.Name = "textBox_Runlog1_UV";
  3427. this.textBox_Runlog1_UV.ReadOnly = true;
  3428. this.textBox_Runlog1_UV.Size = new System.Drawing.Size(60, 26);
  3429. this.textBox_Runlog1_UV.TabIndex = 2;
  3430. //
  3431. // label81
  3432. //
  3433. this.label81.AutoSize = true;
  3434. this.label81.Location = new System.Drawing.Point(5, 99);
  3435. this.label81.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3436. this.label81.Name = "label81";
  3437. this.label81.Size = new System.Drawing.Size(65, 20);
  3438. this.label81.TabIndex = 2;
  3439. this.label81.Text = "过流保护";
  3440. //
  3441. // textBox_Runlog1_OC
  3442. //
  3443. this.textBox_Runlog1_OC.Location = new System.Drawing.Point(90, 96);
  3444. this.textBox_Runlog1_OC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3445. this.textBox_Runlog1_OC.Name = "textBox_Runlog1_OC";
  3446. this.textBox_Runlog1_OC.ReadOnly = true;
  3447. this.textBox_Runlog1_OC.Size = new System.Drawing.Size(60, 26);
  3448. this.textBox_Runlog1_OC.TabIndex = 2;
  3449. //
  3450. // label80
  3451. //
  3452. this.label80.AutoSize = true;
  3453. this.label80.Location = new System.Drawing.Point(5, 67);
  3454. this.label80.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3455. this.label80.Name = "label80";
  3456. this.label80.Size = new System.Drawing.Size(65, 20);
  3457. this.label80.TabIndex = 2;
  3458. this.label80.Text = "使用时间";
  3459. //
  3460. // textBox_Runlog1_RunTime
  3461. //
  3462. this.textBox_Runlog1_RunTime.Location = new System.Drawing.Point(90, 64);
  3463. this.textBox_Runlog1_RunTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3464. this.textBox_Runlog1_RunTime.Name = "textBox_Runlog1_RunTime";
  3465. this.textBox_Runlog1_RunTime.ReadOnly = true;
  3466. this.textBox_Runlog1_RunTime.Size = new System.Drawing.Size(60, 26);
  3467. this.textBox_Runlog1_RunTime.TabIndex = 2;
  3468. //
  3469. // label107
  3470. //
  3471. this.label107.AutoSize = true;
  3472. this.label107.Location = new System.Drawing.Point(152, 259);
  3473. this.label107.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3474. this.label107.Name = "label107";
  3475. this.label107.Size = new System.Drawing.Size(81, 20);
  3476. this.label107.TabIndex = 2;
  3477. this.label107.Text = "TE电路故障";
  3478. //
  3479. // textBox_Runlog2_TE_CircuitFault
  3480. //
  3481. this.textBox_Runlog2_TE_CircuitFault.Location = new System.Drawing.Point(247, 256);
  3482. this.textBox_Runlog2_TE_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3483. this.textBox_Runlog2_TE_CircuitFault.Name = "textBox_Runlog2_TE_CircuitFault";
  3484. this.textBox_Runlog2_TE_CircuitFault.ReadOnly = true;
  3485. this.textBox_Runlog2_TE_CircuitFault.Size = new System.Drawing.Size(60, 26);
  3486. this.textBox_Runlog2_TE_CircuitFault.TabIndex = 2;
  3487. //
  3488. // label106
  3489. //
  3490. this.label106.AutoSize = true;
  3491. this.label106.Location = new System.Drawing.Point(152, 227);
  3492. this.label106.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3493. this.label106.Name = "label106";
  3494. this.label106.Size = new System.Drawing.Size(92, 20);
  3495. this.label106.TabIndex = 2;
  3496. this.label106.Text = "TE_MCU故障";
  3497. //
  3498. // textBox_Runlog2_TE_MCUFault
  3499. //
  3500. this.textBox_Runlog2_TE_MCUFault.Location = new System.Drawing.Point(247, 224);
  3501. this.textBox_Runlog2_TE_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3502. this.textBox_Runlog2_TE_MCUFault.Name = "textBox_Runlog2_TE_MCUFault";
  3503. this.textBox_Runlog2_TE_MCUFault.ReadOnly = true;
  3504. this.textBox_Runlog2_TE_MCUFault.Size = new System.Drawing.Size(60, 26);
  3505. this.textBox_Runlog2_TE_MCUFault.TabIndex = 2;
  3506. //
  3507. // label105
  3508. //
  3509. this.label105.AutoSize = true;
  3510. this.label105.Location = new System.Drawing.Point(152, 195);
  3511. this.label105.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3512. this.label105.Name = "label105";
  3513. this.label105.Size = new System.Drawing.Size(65, 20);
  3514. this.label105.TabIndex = 2;
  3515. this.label105.Text = "电路故障";
  3516. //
  3517. // textBox_Runlog2_CircuitFault
  3518. //
  3519. this.textBox_Runlog2_CircuitFault.Location = new System.Drawing.Point(247, 192);
  3520. this.textBox_Runlog2_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3521. this.textBox_Runlog2_CircuitFault.Name = "textBox_Runlog2_CircuitFault";
  3522. this.textBox_Runlog2_CircuitFault.ReadOnly = true;
  3523. this.textBox_Runlog2_CircuitFault.Size = new System.Drawing.Size(60, 26);
  3524. this.textBox_Runlog2_CircuitFault.TabIndex = 2;
  3525. //
  3526. // label104
  3527. //
  3528. this.label104.AutoSize = true;
  3529. this.label104.Location = new System.Drawing.Point(152, 163);
  3530. this.label104.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3531. this.label104.Name = "label104";
  3532. this.label104.Size = new System.Drawing.Size(65, 20);
  3533. this.label104.TabIndex = 2;
  3534. this.label104.Text = "电压异常";
  3535. //
  3536. // textBox_Runlog2_VolFault
  3537. //
  3538. this.textBox_Runlog2_VolFault.Location = new System.Drawing.Point(247, 160);
  3539. this.textBox_Runlog2_VolFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3540. this.textBox_Runlog2_VolFault.Name = "textBox_Runlog2_VolFault";
  3541. this.textBox_Runlog2_VolFault.ReadOnly = true;
  3542. this.textBox_Runlog2_VolFault.Size = new System.Drawing.Size(60, 26);
  3543. this.textBox_Runlog2_VolFault.TabIndex = 2;
  3544. //
  3545. // label103
  3546. //
  3547. this.label103.AutoSize = true;
  3548. this.label103.Location = new System.Drawing.Point(152, 132);
  3549. this.label103.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3550. this.label103.Name = "label103";
  3551. this.label103.Size = new System.Drawing.Size(70, 20);
  3552. this.label103.TabIndex = 2;
  3553. this.label103.Text = "MOS短路";
  3554. //
  3555. // textBox_Runlog2_MOS_SC
  3556. //
  3557. this.textBox_Runlog2_MOS_SC.Location = new System.Drawing.Point(247, 128);
  3558. this.textBox_Runlog2_MOS_SC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3559. this.textBox_Runlog2_MOS_SC.Name = "textBox_Runlog2_MOS_SC";
  3560. this.textBox_Runlog2_MOS_SC.ReadOnly = true;
  3561. this.textBox_Runlog2_MOS_SC.Size = new System.Drawing.Size(60, 26);
  3562. this.textBox_Runlog2_MOS_SC.TabIndex = 2;
  3563. //
  3564. // label102
  3565. //
  3566. this.label102.AutoSize = true;
  3567. this.label102.Location = new System.Drawing.Point(152, 101);
  3568. this.label102.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3569. this.label102.Name = "label102";
  3570. this.label102.Size = new System.Drawing.Size(65, 20);
  3571. this.label102.TabIndex = 2;
  3572. this.label102.Text = "GAS故障";
  3573. //
  3574. // textBox_Runlog2_GasFault
  3575. //
  3576. this.textBox_Runlog2_GasFault.Location = new System.Drawing.Point(247, 96);
  3577. this.textBox_Runlog2_GasFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3578. this.textBox_Runlog2_GasFault.Name = "textBox_Runlog2_GasFault";
  3579. this.textBox_Runlog2_GasFault.ReadOnly = true;
  3580. this.textBox_Runlog2_GasFault.Size = new System.Drawing.Size(60, 26);
  3581. this.textBox_Runlog2_GasFault.TabIndex = 2;
  3582. //
  3583. // label101
  3584. //
  3585. this.label101.AutoSize = true;
  3586. this.label101.Location = new System.Drawing.Point(152, 68);
  3587. this.label101.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3588. this.label101.Name = "label101";
  3589. this.label101.Size = new System.Drawing.Size(65, 20);
  3590. this.label101.TabIndex = 2;
  3591. this.label101.Text = "CDS故障";
  3592. //
  3593. // textBox_Runlog2_CDSFault
  3594. //
  3595. this.textBox_Runlog2_CDSFault.Location = new System.Drawing.Point(247, 64);
  3596. this.textBox_Runlog2_CDSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3597. this.textBox_Runlog2_CDSFault.Name = "textBox_Runlog2_CDSFault";
  3598. this.textBox_Runlog2_CDSFault.ReadOnly = true;
  3599. this.textBox_Runlog2_CDSFault.Size = new System.Drawing.Size(60, 26);
  3600. this.textBox_Runlog2_CDSFault.TabIndex = 2;
  3601. //
  3602. // label100
  3603. //
  3604. this.label100.AutoSize = true;
  3605. this.label100.Location = new System.Drawing.Point(152, 37);
  3606. this.label100.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3607. this.label100.Name = "label100";
  3608. this.label100.Size = new System.Drawing.Size(70, 20);
  3609. this.label100.TabIndex = 2;
  3610. this.label100.Text = "MCU故障";
  3611. //
  3612. // textBox_Runlog2_MCUFault
  3613. //
  3614. this.textBox_Runlog2_MCUFault.Location = new System.Drawing.Point(247, 32);
  3615. this.textBox_Runlog2_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3616. this.textBox_Runlog2_MCUFault.Name = "textBox_Runlog2_MCUFault";
  3617. this.textBox_Runlog2_MCUFault.ReadOnly = true;
  3618. this.textBox_Runlog2_MCUFault.Size = new System.Drawing.Size(60, 26);
  3619. this.textBox_Runlog2_MCUFault.TabIndex = 2;
  3620. //
  3621. // label79
  3622. //
  3623. this.label79.AutoSize = true;
  3624. this.label79.Location = new System.Drawing.Point(5, 35);
  3625. this.label79.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3626. this.label79.Name = "label79";
  3627. this.label79.Size = new System.Drawing.Size(65, 20);
  3628. this.label79.TabIndex = 2;
  3629. this.label79.Text = "开机次数";
  3630. //
  3631. // textBox_Runlog1_PowerCount
  3632. //
  3633. this.textBox_Runlog1_PowerCount.Location = new System.Drawing.Point(90, 32);
  3634. this.textBox_Runlog1_PowerCount.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3635. this.textBox_Runlog1_PowerCount.Name = "textBox_Runlog1_PowerCount";
  3636. this.textBox_Runlog1_PowerCount.ReadOnly = true;
  3637. this.textBox_Runlog1_PowerCount.Size = new System.Drawing.Size(60, 26);
  3638. this.textBox_Runlog1_PowerCount.TabIndex = 2;
  3639. //
  3640. // label108
  3641. //
  3642. this.label108.AutoSize = true;
  3643. this.label108.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3644. this.label108.ForeColor = System.Drawing.SystemColors.ControlText;
  3645. this.label108.Location = new System.Drawing.Point(3, 717);
  3646. this.label108.Name = "label108";
  3647. this.label108.Size = new System.Drawing.Size(79, 20);
  3648. this.label108.TabIndex = 12;
  3649. this.label108.Text = "系统时钟:";
  3650. //
  3651. // label_DateTime
  3652. //
  3653. this.label_DateTime.AutoSize = true;
  3654. this.label_DateTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3655. this.label_DateTime.ForeColor = System.Drawing.SystemColors.ControlText;
  3656. this.label_DateTime.Location = new System.Drawing.Point(74, 718);
  3657. this.label_DateTime.Name = "label_DateTime";
  3658. this.label_DateTime.Size = new System.Drawing.Size(18, 20);
  3659. this.label_DateTime.TabIndex = 13;
  3660. this.label_DateTime.Text = "V";
  3661. //
  3662. // timer2
  3663. //
  3664. this.timer2.Enabled = true;
  3665. this.timer2.Interval = 200;
  3666. this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
  3667. //
  3668. // button_DataExport
  3669. //
  3670. this.button_DataExport.BackColor = System.Drawing.Color.Yellow;
  3671. this.button_DataExport.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3672. this.button_DataExport.ForeColor = System.Drawing.SystemColors.ControlText;
  3673. this.button_DataExport.Location = new System.Drawing.Point(134, 20);
  3674. this.button_DataExport.Name = "button_DataExport";
  3675. this.button_DataExport.Size = new System.Drawing.Size(96, 43);
  3676. this.button_DataExport.TabIndex = 15;
  3677. this.button_DataExport.Text = "页面存储";
  3678. this.button_DataExport.UseVisualStyleBackColor = false;
  3679. this.button_DataExport.Click += new System.EventHandler(this.button_DataExport_Click);
  3680. this.button_DataExport.MouseHover += new System.EventHandler(this.button_DataExport_MouseHover);
  3681. //
  3682. // groupBox15
  3683. //
  3684. this.groupBox15.Controls.Add(this.button_DataExport);
  3685. this.groupBox15.Controls.Add(this.checkBox_ReadTorqueData);
  3686. this.groupBox15.Controls.Add(this.checkBox_Savedata);
  3687. this.groupBox15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3688. this.groupBox15.Location = new System.Drawing.Point(7, 131);
  3689. this.groupBox15.Name = "groupBox15";
  3690. this.groupBox15.Size = new System.Drawing.Size(239, 73);
  3691. this.groupBox15.TabIndex = 16;
  3692. this.groupBox15.TabStop = false;
  3693. this.groupBox15.Text = "测试记录";
  3694. this.groupBox15.Visible = false;
  3695. //
  3696. // groupBox16
  3697. //
  3698. this.groupBox16.Controls.Add(this.trackBar_MotorSpeedSet);
  3699. this.groupBox16.Controls.Add(this.label_MotorSpeedSet);
  3700. this.groupBox16.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3701. this.groupBox16.Location = new System.Drawing.Point(753, 523);
  3702. this.groupBox16.Name = "groupBox16";
  3703. this.groupBox16.Size = new System.Drawing.Size(313, 76);
  3704. this.groupBox16.TabIndex = 17;
  3705. this.groupBox16.TabStop = false;
  3706. this.groupBox16.Text = "马达转速调节";
  3707. this.groupBox16.Visible = false;
  3708. //
  3709. // trackBar_MotorSpeedSet
  3710. //
  3711. this.trackBar_MotorSpeedSet.LargeChange = 1;
  3712. this.trackBar_MotorSpeedSet.Location = new System.Drawing.Point(6, 25);
  3713. this.trackBar_MotorSpeedSet.Maximum = 100;
  3714. this.trackBar_MotorSpeedSet.Minimum = 5;
  3715. this.trackBar_MotorSpeedSet.Name = "trackBar_MotorSpeedSet";
  3716. this.trackBar_MotorSpeedSet.Size = new System.Drawing.Size(237, 45);
  3717. this.trackBar_MotorSpeedSet.TabIndex = 0;
  3718. this.trackBar_MotorSpeedSet.Value = 100;
  3719. this.trackBar_MotorSpeedSet.Scroll += new System.EventHandler(this.trackBar_MotorSpeedSet_Scroll);
  3720. //
  3721. // label_MotorSpeedSet
  3722. //
  3723. this.label_MotorSpeedSet.AutoSize = true;
  3724. this.label_MotorSpeedSet.Location = new System.Drawing.Point(262, 33);
  3725. this.label_MotorSpeedSet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3726. this.label_MotorSpeedSet.Name = "label_MotorSpeedSet";
  3727. this.label_MotorSpeedSet.Size = new System.Drawing.Size(45, 20);
  3728. this.label_MotorSpeedSet.TabIndex = 2;
  3729. this.label_MotorSpeedSet.Text = "100%";
  3730. //
  3731. // groupBox17
  3732. //
  3733. this.groupBox17.Controls.Add(this.checkBox_Sensor3);
  3734. this.groupBox17.Controls.Add(this.checkBox_Sensor2);
  3735. this.groupBox17.Controls.Add(this.checkBox_Sensor1);
  3736. this.groupBox17.Controls.Add(this.label115);
  3737. this.groupBox17.Controls.Add(this.button_WriteK);
  3738. this.groupBox17.Controls.Add(this.button_ReadZero);
  3739. this.groupBox17.Controls.Add(this.label5);
  3740. this.groupBox17.Controls.Add(this.textBox_Sensor3_K);
  3741. this.groupBox17.Controls.Add(this.textBox_Sensor2_K);
  3742. this.groupBox17.Controls.Add(this.label119);
  3743. this.groupBox17.Controls.Add(this.label118);
  3744. this.groupBox17.Controls.Add(this.label117);
  3745. this.groupBox17.Controls.Add(this.label116);
  3746. this.groupBox17.Controls.Add(this.textBox_Sensor1_K);
  3747. this.groupBox17.Controls.Add(this.textBox_Sensor3_Zero);
  3748. this.groupBox17.Controls.Add(this.textBox_Sensor2_Zero);
  3749. this.groupBox17.Controls.Add(this.textBox_Sensor1_Zero);
  3750. this.groupBox17.Controls.Add(this.textBox_Sensor3_Std);
  3751. this.groupBox17.Controls.Add(this.textBox_Sensor2_Std);
  3752. this.groupBox17.Controls.Add(this.textBox_Sensor1_Std);
  3753. this.groupBox17.Controls.Add(this.textBox_Sensor3_Avg);
  3754. this.groupBox17.Controls.Add(this.label3);
  3755. this.groupBox17.Controls.Add(this.textBox_Sensor2_Avg);
  3756. this.groupBox17.Controls.Add(this.textBox_Sensor1_Avg);
  3757. this.groupBox17.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  3758. this.groupBox17.Location = new System.Drawing.Point(251, 207);
  3759. this.groupBox17.Name = "groupBox17";
  3760. this.groupBox17.Size = new System.Drawing.Size(497, 133);
  3761. this.groupBox17.TabIndex = 18;
  3762. this.groupBox17.TabStop = false;
  3763. this.groupBox17.Text = "传感器采集";
  3764. this.groupBox17.Visible = false;
  3765. //
  3766. // checkBox_Sensor3
  3767. //
  3768. this.checkBox_Sensor3.AutoSize = true;
  3769. this.checkBox_Sensor3.Location = new System.Drawing.Point(315, 100);
  3770. this.checkBox_Sensor3.Name = "checkBox_Sensor3";
  3771. this.checkBox_Sensor3.Size = new System.Drawing.Size(56, 24);
  3772. this.checkBox_Sensor3.TabIndex = 5;
  3773. this.checkBox_Sensor3.Text = "选择";
  3774. this.checkBox_Sensor3.UseVisualStyleBackColor = true;
  3775. //
  3776. // checkBox_Sensor2
  3777. //
  3778. this.checkBox_Sensor2.AutoSize = true;
  3779. this.checkBox_Sensor2.Location = new System.Drawing.Point(315, 71);
  3780. this.checkBox_Sensor2.Name = "checkBox_Sensor2";
  3781. this.checkBox_Sensor2.Size = new System.Drawing.Size(56, 24);
  3782. this.checkBox_Sensor2.TabIndex = 5;
  3783. this.checkBox_Sensor2.Text = "选择";
  3784. this.checkBox_Sensor2.UseVisualStyleBackColor = true;
  3785. //
  3786. // checkBox_Sensor1
  3787. //
  3788. this.checkBox_Sensor1.AutoSize = true;
  3789. this.checkBox_Sensor1.Location = new System.Drawing.Point(315, 42);
  3790. this.checkBox_Sensor1.Name = "checkBox_Sensor1";
  3791. this.checkBox_Sensor1.Size = new System.Drawing.Size(56, 24);
  3792. this.checkBox_Sensor1.TabIndex = 5;
  3793. this.checkBox_Sensor1.Text = "选择";
  3794. this.checkBox_Sensor1.UseVisualStyleBackColor = true;
  3795. //
  3796. // label115
  3797. //
  3798. this.label115.AutoSize = true;
  3799. this.label115.Location = new System.Drawing.Point(7, 101);
  3800. this.label115.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3801. this.label115.Name = "label115";
  3802. this.label115.Size = new System.Drawing.Size(59, 20);
  3803. this.label115.TabIndex = 2;
  3804. this.label115.Text = "传感器3";
  3805. //
  3806. // button_WriteK
  3807. //
  3808. this.button_WriteK.Enabled = false;
  3809. this.button_WriteK.Location = new System.Drawing.Point(385, 89);
  3810. this.button_WriteK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3811. this.button_WriteK.Name = "button_WriteK";
  3812. this.button_WriteK.Size = new System.Drawing.Size(90, 35);
  3813. this.button_WriteK.TabIndex = 4;
  3814. this.button_WriteK.Text = "写入系数";
  3815. this.button_WriteK.UseVisualStyleBackColor = true;
  3816. this.button_WriteK.Click += new System.EventHandler(this.button_WriteK_Click);
  3817. //
  3818. // button_ReadZero
  3819. //
  3820. this.button_ReadZero.Location = new System.Drawing.Point(385, 40);
  3821. this.button_ReadZero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3822. this.button_ReadZero.Name = "button_ReadZero";
  3823. this.button_ReadZero.Size = new System.Drawing.Size(90, 35);
  3824. this.button_ReadZero.TabIndex = 4;
  3825. this.button_ReadZero.Text = "查询";
  3826. this.button_ReadZero.UseVisualStyleBackColor = true;
  3827. this.button_ReadZero.Click += new System.EventHandler(this.button_ReadZero_Click);
  3828. //
  3829. // label5
  3830. //
  3831. this.label5.AutoSize = true;
  3832. this.label5.Location = new System.Drawing.Point(7, 74);
  3833. this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3834. this.label5.Name = "label5";
  3835. this.label5.Size = new System.Drawing.Size(59, 20);
  3836. this.label5.TabIndex = 2;
  3837. this.label5.Text = "传感器2";
  3838. //
  3839. // textBox_Sensor3_K
  3840. //
  3841. this.textBox_Sensor3_K.Location = new System.Drawing.Point(260, 98);
  3842. this.textBox_Sensor3_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3843. this.textBox_Sensor3_K.Name = "textBox_Sensor3_K";
  3844. this.textBox_Sensor3_K.Size = new System.Drawing.Size(50, 26);
  3845. this.textBox_Sensor3_K.TabIndex = 2;
  3846. //
  3847. // textBox_Sensor2_K
  3848. //
  3849. this.textBox_Sensor2_K.Location = new System.Drawing.Point(260, 71);
  3850. this.textBox_Sensor2_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3851. this.textBox_Sensor2_K.Name = "textBox_Sensor2_K";
  3852. this.textBox_Sensor2_K.Size = new System.Drawing.Size(50, 26);
  3853. this.textBox_Sensor2_K.TabIndex = 2;
  3854. //
  3855. // label119
  3856. //
  3857. this.label119.AutoSize = true;
  3858. this.label119.Location = new System.Drawing.Point(253, 21);
  3859. this.label119.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3860. this.label119.Name = "label119";
  3861. this.label119.Size = new System.Drawing.Size(65, 20);
  3862. this.label119.TabIndex = 2;
  3863. this.label119.Text = "校正系数";
  3864. this.label119.DoubleClick += new System.EventHandler(this.label119_DoubleClick);
  3865. this.label119.MouseHover += new System.EventHandler(this.label119_MouseHover);
  3866. //
  3867. // label118
  3868. //
  3869. this.label118.AutoSize = true;
  3870. this.label118.Location = new System.Drawing.Point(198, 21);
  3871. this.label118.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3872. this.label118.Name = "label118";
  3873. this.label118.Size = new System.Drawing.Size(51, 20);
  3874. this.label118.TabIndex = 2;
  3875. this.label118.Text = "零点值";
  3876. //
  3877. // label117
  3878. //
  3879. this.label117.AutoSize = true;
  3880. this.label117.Location = new System.Drawing.Point(138, 21);
  3881. this.label117.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3882. this.label117.Name = "label117";
  3883. this.label117.Size = new System.Drawing.Size(51, 20);
  3884. this.label117.TabIndex = 2;
  3885. this.label117.Text = "标准差";
  3886. //
  3887. // label116
  3888. //
  3889. this.label116.AutoSize = true;
  3890. this.label116.Location = new System.Drawing.Point(76, 21);
  3891. this.label116.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3892. this.label116.Name = "label116";
  3893. this.label116.Size = new System.Drawing.Size(51, 20);
  3894. this.label116.TabIndex = 2;
  3895. this.label116.Text = "平均值";
  3896. //
  3897. // textBox_Sensor1_K
  3898. //
  3899. this.textBox_Sensor1_K.Location = new System.Drawing.Point(260, 44);
  3900. this.textBox_Sensor1_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3901. this.textBox_Sensor1_K.Name = "textBox_Sensor1_K";
  3902. this.textBox_Sensor1_K.Size = new System.Drawing.Size(50, 26);
  3903. this.textBox_Sensor1_K.TabIndex = 2;
  3904. //
  3905. // textBox_Sensor3_Zero
  3906. //
  3907. this.textBox_Sensor3_Zero.Location = new System.Drawing.Point(199, 98);
  3908. this.textBox_Sensor3_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3909. this.textBox_Sensor3_Zero.Name = "textBox_Sensor3_Zero";
  3910. this.textBox_Sensor3_Zero.ReadOnly = true;
  3911. this.textBox_Sensor3_Zero.Size = new System.Drawing.Size(50, 26);
  3912. this.textBox_Sensor3_Zero.TabIndex = 2;
  3913. //
  3914. // textBox_Sensor2_Zero
  3915. //
  3916. this.textBox_Sensor2_Zero.Location = new System.Drawing.Point(199, 71);
  3917. this.textBox_Sensor2_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3918. this.textBox_Sensor2_Zero.Name = "textBox_Sensor2_Zero";
  3919. this.textBox_Sensor2_Zero.ReadOnly = true;
  3920. this.textBox_Sensor2_Zero.Size = new System.Drawing.Size(50, 26);
  3921. this.textBox_Sensor2_Zero.TabIndex = 2;
  3922. //
  3923. // textBox_Sensor1_Zero
  3924. //
  3925. this.textBox_Sensor1_Zero.Location = new System.Drawing.Point(199, 44);
  3926. this.textBox_Sensor1_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3927. this.textBox_Sensor1_Zero.Name = "textBox_Sensor1_Zero";
  3928. this.textBox_Sensor1_Zero.ReadOnly = true;
  3929. this.textBox_Sensor1_Zero.Size = new System.Drawing.Size(50, 26);
  3930. this.textBox_Sensor1_Zero.TabIndex = 2;
  3931. //
  3932. // textBox_Sensor3_Std
  3933. //
  3934. this.textBox_Sensor3_Std.Location = new System.Drawing.Point(138, 98);
  3935. this.textBox_Sensor3_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3936. this.textBox_Sensor3_Std.Name = "textBox_Sensor3_Std";
  3937. this.textBox_Sensor3_Std.ReadOnly = true;
  3938. this.textBox_Sensor3_Std.Size = new System.Drawing.Size(50, 26);
  3939. this.textBox_Sensor3_Std.TabIndex = 2;
  3940. //
  3941. // textBox_Sensor2_Std
  3942. //
  3943. this.textBox_Sensor2_Std.Location = new System.Drawing.Point(138, 71);
  3944. this.textBox_Sensor2_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3945. this.textBox_Sensor2_Std.Name = "textBox_Sensor2_Std";
  3946. this.textBox_Sensor2_Std.ReadOnly = true;
  3947. this.textBox_Sensor2_Std.Size = new System.Drawing.Size(50, 26);
  3948. this.textBox_Sensor2_Std.TabIndex = 2;
  3949. //
  3950. // textBox_Sensor1_Std
  3951. //
  3952. this.textBox_Sensor1_Std.Location = new System.Drawing.Point(138, 44);
  3953. this.textBox_Sensor1_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3954. this.textBox_Sensor1_Std.Name = "textBox_Sensor1_Std";
  3955. this.textBox_Sensor1_Std.ReadOnly = true;
  3956. this.textBox_Sensor1_Std.Size = new System.Drawing.Size(50, 26);
  3957. this.textBox_Sensor1_Std.TabIndex = 2;
  3958. //
  3959. // textBox_Sensor3_Avg
  3960. //
  3961. this.textBox_Sensor3_Avg.Location = new System.Drawing.Point(77, 98);
  3962. this.textBox_Sensor3_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3963. this.textBox_Sensor3_Avg.Name = "textBox_Sensor3_Avg";
  3964. this.textBox_Sensor3_Avg.ReadOnly = true;
  3965. this.textBox_Sensor3_Avg.Size = new System.Drawing.Size(50, 26);
  3966. this.textBox_Sensor3_Avg.TabIndex = 2;
  3967. //
  3968. // label3
  3969. //
  3970. this.label3.AutoSize = true;
  3971. this.label3.Location = new System.Drawing.Point(7, 47);
  3972. this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
  3973. this.label3.Name = "label3";
  3974. this.label3.Size = new System.Drawing.Size(59, 20);
  3975. this.label3.TabIndex = 2;
  3976. this.label3.Text = "传感器1";
  3977. //
  3978. // textBox_Sensor2_Avg
  3979. //
  3980. this.textBox_Sensor2_Avg.Location = new System.Drawing.Point(77, 71);
  3981. this.textBox_Sensor2_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3982. this.textBox_Sensor2_Avg.Name = "textBox_Sensor2_Avg";
  3983. this.textBox_Sensor2_Avg.ReadOnly = true;
  3984. this.textBox_Sensor2_Avg.Size = new System.Drawing.Size(50, 26);
  3985. this.textBox_Sensor2_Avg.TabIndex = 2;
  3986. //
  3987. // textBox_Sensor1_Avg
  3988. //
  3989. this.textBox_Sensor1_Avg.Location = new System.Drawing.Point(77, 44);
  3990. this.textBox_Sensor1_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  3991. this.textBox_Sensor1_Avg.Name = "textBox_Sensor1_Avg";
  3992. this.textBox_Sensor1_Avg.ReadOnly = true;
  3993. this.textBox_Sensor1_Avg.Size = new System.Drawing.Size(50, 26);
  3994. this.textBox_Sensor1_Avg.TabIndex = 2;
  3995. //
  3996. // label127
  3997. //
  3998. this.label127.AutoSize = true;
  3999. this.label127.Font = new System.Drawing.Font("微软雅黑", 18F);
  4000. this.label127.ForeColor = System.Drawing.Color.Red;
  4001. this.label127.Location = new System.Drawing.Point(1158, 743);
  4002. this.label127.Name = "label127";
  4003. this.label127.Size = new System.Drawing.Size(230, 31);
  4004. this.label127.TabIndex = 19;
  4005. this.label127.Text = "内部使用,严禁外传";
  4006. this.label127.DoubleClick += new System.EventHandler(this.label127_DoubleClick);
  4007. //
  4008. // label1_Welcom
  4009. //
  4010. this.label1_Welcom.AutoSize = true;
  4011. this.label1_Welcom.Font = new System.Drawing.Font("隶书", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  4012. this.label1_Welcom.ForeColor = System.Drawing.Color.Black;
  4013. this.label1_Welcom.Location = new System.Drawing.Point(450, 300);
  4014. this.label1_Welcom.Name = "label1_Welcom";
  4015. this.label1_Welcom.Size = new System.Drawing.Size(500, 96);
  4016. this.label1_Welcom.TabIndex = 18;
  4017. this.label1_Welcom.Text = "选择正确端口号,\r\n连接成功后开始使用!";
  4018. this.label1_Welcom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  4019. this.label1_Welcom.DoubleClick += new System.EventHandler(this.label1_Welcom_DoubleClick);
  4020. //
  4021. // button_ReadAll
  4022. //
  4023. this.button_ReadAll.BackColor = System.Drawing.Color.Yellow;
  4024. this.button_ReadAll.Font = new System.Drawing.Font("微软雅黑", 10.5F);
  4025. this.button_ReadAll.Location = new System.Drawing.Point(1070, 736);
  4026. this.button_ReadAll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4027. this.button_ReadAll.Name = "button_ReadAll";
  4028. this.button_ReadAll.Size = new System.Drawing.Size(80, 44);
  4029. this.button_ReadAll.TabIndex = 20;
  4030. this.button_ReadAll.Text = "一键查询";
  4031. this.button_ReadAll.UseVisualStyleBackColor = false;
  4032. this.button_ReadAll.Visible = false;
  4033. this.button_ReadAll.Click += new System.EventHandler(this.button_ReadAll_Click);
  4034. //
  4035. // Form1
  4036. //
  4037. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  4038. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  4039. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(120)))));
  4040. this.ClientSize = new System.Drawing.Size(1394, 792);
  4041. this.Controls.Add(this.button_ReadAll);
  4042. this.Controls.Add(this.label127);
  4043. this.Controls.Add(this.groupBox17);
  4044. this.Controls.Add(this.groupBox16);
  4045. this.Controls.Add(this.groupBox15);
  4046. this.Controls.Add(this.groupBox14);
  4047. this.Controls.Add(this.label_DateTime);
  4048. this.Controls.Add(this.label_BiuldTime);
  4049. this.Controls.Add(this.label77);
  4050. this.Controls.Add(this.label108);
  4051. this.Controls.Add(this.label78);
  4052. this.Controls.Add(this.groupBox13);
  4053. this.Controls.Add(this.groupBox12);
  4054. this.Controls.Add(this.groupBox4);
  4055. this.Controls.Add(this.groupBox11);
  4056. this.Controls.Add(this.groupBox10);
  4057. this.Controls.Add(this.groupBox9);
  4058. this.Controls.Add(this.groupBox8);
  4059. this.Controls.Add(this.groupBox7);
  4060. this.Controls.Add(this.groupBox6);
  4061. this.Controls.Add(this.groupBox5);
  4062. this.Controls.Add(this.groupBox3);
  4063. this.Controls.Add(this.groupBox2);
  4064. this.Controls.Add(this.groupBox1);
  4065. this.Controls.Add(this.label1_Welcom);
  4066. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  4067. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  4068. this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
  4069. this.MaximizeBox = false;
  4070. this.Name = "Form1";
  4071. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  4072. this.Text = "MOTINOVA中置电机配置软件V2.1.6(内部使用)";
  4073. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
  4074. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
  4075. this.Load += new System.EventHandler(this.Form1_Load);
  4076. this.groupBox1.ResumeLayout(false);
  4077. this.groupBox1.PerformLayout();
  4078. this.groupBox2.ResumeLayout(false);
  4079. this.groupBox2.PerformLayout();
  4080. this.groupBox3.ResumeLayout(false);
  4081. this.groupBox3.PerformLayout();
  4082. this.groupBox5.ResumeLayout(false);
  4083. this.groupBox5.PerformLayout();
  4084. this.groupBox6.ResumeLayout(false);
  4085. this.groupBox6.PerformLayout();
  4086. this.groupBox7.ResumeLayout(false);
  4087. this.groupBox7.PerformLayout();
  4088. this.groupBox8.ResumeLayout(false);
  4089. this.groupBox9.ResumeLayout(false);
  4090. this.groupBox9.PerformLayout();
  4091. this.groupBox10.ResumeLayout(false);
  4092. this.groupBox10.PerformLayout();
  4093. this.groupBox11.ResumeLayout(false);
  4094. this.groupBox11.PerformLayout();
  4095. this.groupBox4.ResumeLayout(false);
  4096. this.groupBox4.PerformLayout();
  4097. this.groupBox12.ResumeLayout(false);
  4098. this.groupBox12.PerformLayout();
  4099. this.groupBox13.ResumeLayout(false);
  4100. this.groupBox13.PerformLayout();
  4101. this.groupBox14.ResumeLayout(false);
  4102. this.groupBox14.PerformLayout();
  4103. this.groupBox15.ResumeLayout(false);
  4104. this.groupBox15.PerformLayout();
  4105. this.groupBox16.ResumeLayout(false);
  4106. this.groupBox16.PerformLayout();
  4107. ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).EndInit();
  4108. this.groupBox17.ResumeLayout(false);
  4109. this.groupBox17.PerformLayout();
  4110. this.ResumeLayout(false);
  4111. this.PerformLayout();
  4112. }
  4113. #endregion
  4114. private System.Windows.Forms.GroupBox groupBox1;
  4115. private System.Windows.Forms.ComboBox comboBox_Baudrate;
  4116. private System.Windows.Forms.ComboBox comboBox_ComIndex;
  4117. private System.Windows.Forms.Label label2;
  4118. private System.Windows.Forms.Label label1;
  4119. private System.Windows.Forms.Button button_ComOpen;
  4120. private System.IO.Ports.SerialPort serialPort1;
  4121. private System.Windows.Forms.GroupBox groupBox2;
  4122. private System.Windows.Forms.Button button_Write_Torque_Start;
  4123. private System.Windows.Forms.TextBox textBox_Torque_Start;
  4124. private System.Windows.Forms.Label label4;
  4125. private System.Windows.Forms.GroupBox groupBox3;
  4126. private System.Windows.Forms.GroupBox groupBox5;
  4127. private System.Windows.Forms.RadioButton radioButton_WorkMode_Confg;
  4128. private System.Windows.Forms.RadioButton radioButton_WorkMode_Run;
  4129. private System.Windows.Forms.GroupBox groupBox6;
  4130. private System.Windows.Forms.RadioButton radioButton_Gear_WALK;
  4131. private System.Windows.Forms.RadioButton radioButton_Gear_SMART;
  4132. private System.Windows.Forms.RadioButton radioButton_Gear_TURBO;
  4133. private System.Windows.Forms.RadioButton radioButton_Gear_SPORT;
  4134. private System.Windows.Forms.RadioButton radioButton_Gear_NORM;
  4135. private System.Windows.Forms.RadioButton radioButton_Gear_ECO;
  4136. private System.Windows.Forms.RadioButton radioButton_Gear_OFF;
  4137. private System.Windows.Forms.GroupBox groupBox7;
  4138. private System.Windows.Forms.RadioButton radioButton_Light_OFF;
  4139. private System.Windows.Forms.RadioButton radioButton_Light_ON;
  4140. private System.Windows.Forms.GroupBox groupBox8;
  4141. private System.Windows.Forms.Button button_ClearData;
  4142. private System.Windows.Forms.GroupBox groupBox9;
  4143. private System.Windows.Forms.Label label8;
  4144. private System.Windows.Forms.Label label7;
  4145. private System.Windows.Forms.TextBox textBox_FW;
  4146. private System.Windows.Forms.TextBox textBox_HW;
  4147. private System.Windows.Forms.TextBox textBox_SN;
  4148. private System.Windows.Forms.TextBox textBox_Mode;
  4149. private System.Windows.Forms.Label label6;
  4150. private System.Windows.Forms.Label label9;
  4151. private System.Windows.Forms.GroupBox groupBox10;
  4152. private System.Windows.Forms.Button button_Write_Config;
  4153. private System.Windows.Forms.Button button_Read_Config;
  4154. private System.Windows.Forms.Label label27;
  4155. private System.Windows.Forms.Label label26;
  4156. private System.Windows.Forms.TextBox textBox_Config_SPORT_K;
  4157. private System.Windows.Forms.TextBox textBox_Config_SMART_K;
  4158. private System.Windows.Forms.TextBox textBox_Config_NORM_Acc;
  4159. private System.Windows.Forms.TextBox textBox_Config_TURBO_Acc;
  4160. private System.Windows.Forms.TextBox textBox_Config_TURBO_K;
  4161. private System.Windows.Forms.TextBox textBox_Config_SPORT_Acc;
  4162. private System.Windows.Forms.TextBox textBox_Config_SMART_Acc;
  4163. private System.Windows.Forms.Label label25;
  4164. private System.Windows.Forms.TextBox textBox_Config_NORM_K;
  4165. private System.Windows.Forms.TextBox textBox_Config_ECO_Acc;
  4166. private System.Windows.Forms.Label label31;
  4167. private System.Windows.Forms.Label label30;
  4168. private System.Windows.Forms.Label label34;
  4169. private System.Windows.Forms.TextBox textBox_Config_ECO_K;
  4170. private System.Windows.Forms.Label label29;
  4171. private System.Windows.Forms.Label label33;
  4172. private System.Windows.Forms.TextBox textBox_Config_WheelSize;
  4173. private System.Windows.Forms.TextBox textBox_Config_MaxSpeed;
  4174. private System.Windows.Forms.Label label28;
  4175. private System.Windows.Forms.Label label32;
  4176. private System.Windows.Forms.TextBox textBox_Config_T_Alarm;
  4177. private System.Windows.Forms.TextBox textBox_Config_StopTime;
  4178. private System.Windows.Forms.Label label21;
  4179. private System.Windows.Forms.TextBox textBox_Config_MaxCurrent;
  4180. private System.Windows.Forms.Label label20;
  4181. private System.Windows.Forms.TextBox textBox_Config_Teeth_B;
  4182. private System.Windows.Forms.TextBox textBox_Config_T_Protect;
  4183. private System.Windows.Forms.Label label19;
  4184. private System.Windows.Forms.Label label11;
  4185. private System.Windows.Forms.Label label18;
  4186. private System.Windows.Forms.Label label13;
  4187. private System.Windows.Forms.Label label17;
  4188. private System.Windows.Forms.Label label14;
  4189. private System.Windows.Forms.Label label16;
  4190. private System.Windows.Forms.Label label15;
  4191. private System.Windows.Forms.Label label12;
  4192. private System.Windows.Forms.Label label10;
  4193. private System.Windows.Forms.TextBox textBox_Config_Teeth_F;
  4194. private System.Windows.Forms.GroupBox groupBox11;
  4195. private System.Windows.Forms.Button button_Write_MotorConfig;
  4196. private System.Windows.Forms.Button button_Read_MortoConfig;
  4197. private System.Windows.Forms.TextBox textBox_Motor_Power;
  4198. private System.Windows.Forms.TextBox textBox_Motor_R;
  4199. private System.Windows.Forms.TextBox textBox_Motor_Speed;
  4200. private System.Windows.Forms.TextBox textBox_Motor_Voltage;
  4201. private System.Windows.Forms.TextBox textBox_Motor_E;
  4202. private System.Windows.Forms.TextBox textBox_Motor_Lq;
  4203. private System.Windows.Forms.Label label45;
  4204. private System.Windows.Forms.Label label47;
  4205. private System.Windows.Forms.Label label49;
  4206. private System.Windows.Forms.Label label50;
  4207. private System.Windows.Forms.Label label51;
  4208. private System.Windows.Forms.Label label52;
  4209. private System.Windows.Forms.Label label53;
  4210. private System.Windows.Forms.TextBox textBox_Motor_Ld;
  4211. private System.Windows.Forms.Label label46;
  4212. private System.Windows.Forms.Label label56;
  4213. private System.Windows.Forms.Label label55;
  4214. private System.Windows.Forms.Label label43;
  4215. private System.Windows.Forms.Label label42;
  4216. private System.Windows.Forms.Label label40;
  4217. private System.Windows.Forms.Label label39;
  4218. private System.Windows.Forms.Label label44;
  4219. private System.Windows.Forms.Label label54;
  4220. private System.Windows.Forms.Label label37;
  4221. private System.Windows.Forms.Label label41;
  4222. private System.Windows.Forms.Label label36;
  4223. private System.Windows.Forms.Label label38;
  4224. private System.Windows.Forms.TextBox textBox_RunInfo_PowerAvg;
  4225. private System.Windows.Forms.TextBox textBox_RunInfo_T_MCU;
  4226. private System.Windows.Forms.Label label22;
  4227. private System.Windows.Forms.TextBox textBox_RunInfo_SOC;
  4228. private System.Windows.Forms.Label label35;
  4229. private System.Windows.Forms.TextBox textBox_RunInfo_Dir;
  4230. private System.Windows.Forms.TextBox textBox_RunInfo_T_PCB;
  4231. private System.Windows.Forms.TextBox textBox_RunInfo_ErrorCode;
  4232. private System.Windows.Forms.Label label23;
  4233. private System.Windows.Forms.TextBox textBox_RunInfo_Range;
  4234. private System.Windows.Forms.TextBox textBox_RunInfo_Current;
  4235. private System.Windows.Forms.TextBox textBox_RunInfo_Gear;
  4236. private System.Windows.Forms.TextBox textBox_RunInfo_T_Roil;
  4237. private System.Windows.Forms.Label label24;
  4238. private System.Windows.Forms.TextBox textBox_RunInfo_Light;
  4239. private System.Windows.Forms.TextBox textBox_RunInfo_Cadence;
  4240. private System.Windows.Forms.TextBox textBox_RunInfo_Torque;
  4241. private System.Windows.Forms.TextBox textBox_RunInfo_OutSpeed;
  4242. private System.Windows.Forms.TextBox textBox_RunInfo_Voltage;
  4243. private System.Windows.Forms.TextBox textBox_RunInfo_Power;
  4244. private System.Windows.Forms.TextBox textBox_RunInfo_BikeSpeed;
  4245. private System.Windows.Forms.Button button_Read_VerInfo;
  4246. private System.Windows.Forms.TextBox textBox_TorqueData;
  4247. private System.Windows.Forms.Label label57;
  4248. private System.Windows.Forms.Button button_Write_SN;
  4249. private System.Windows.Forms.Button button_Write_Mode;
  4250. private System.Windows.Forms.Timer timer1;
  4251. private System.Windows.Forms.Label label58;
  4252. private System.Windows.Forms.TextBox textBox_RevCnt;
  4253. private System.Windows.Forms.CheckBox checkBox_ReadTorqueData;
  4254. private System.Windows.Forms.Button button_Reset;
  4255. private System.Windows.Forms.CheckBox checkBox_AutoSend;
  4256. private System.Windows.Forms.Button button_RefreshPort;
  4257. private System.Windows.Forms.Label label59;
  4258. private System.Windows.Forms.TextBox textBox_Config_WheelAdj;
  4259. private System.Windows.Forms.TextBox textBox_Config_CadenceNum;
  4260. private System.Windows.Forms.Label label63;
  4261. private System.Windows.Forms.Label label62;
  4262. private System.Windows.Forms.TextBox textBox_Config_SpeedNum;
  4263. private System.Windows.Forms.Label label61;
  4264. private System.Windows.Forms.Label label60;
  4265. private System.Windows.Forms.GroupBox groupBox4;
  4266. private System.Windows.Forms.Label label66;
  4267. private System.Windows.Forms.Label label65;
  4268. private System.Windows.Forms.TextBox textBox_Config_Angle_Roll;
  4269. private System.Windows.Forms.Label label64;
  4270. private System.Windows.Forms.TextBox textBox_Config_Angle_Pitch;
  4271. private System.Windows.Forms.Label label70;
  4272. private System.Windows.Forms.Label label48;
  4273. private System.Windows.Forms.TextBox textBox_RunInfo_Time;
  4274. private System.Windows.Forms.TextBox textBox_RunInfo_Distance;
  4275. private System.Windows.Forms.Button button_Write_Config_Ext;
  4276. private System.Windows.Forms.Button button_Read_Config_Ext;
  4277. private System.Windows.Forms.GroupBox groupBox12;
  4278. private System.Windows.Forms.Button button_Read_RidedInfo;
  4279. private System.Windows.Forms.Label label71;
  4280. private System.Windows.Forms.Label label67;
  4281. private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Time;
  4282. private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Km;
  4283. private System.Windows.Forms.Label label68;
  4284. private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Time;
  4285. private System.Windows.Forms.Label label69;
  4286. private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Km;
  4287. private System.Windows.Forms.GroupBox groupBox13;
  4288. private System.Windows.Forms.Button button_Read_AttitudeAngle;
  4289. private System.Windows.Forms.Label label72;
  4290. private System.Windows.Forms.Label label73;
  4291. private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Rel;
  4292. private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Abs;
  4293. private System.Windows.Forms.Label label74;
  4294. private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Rel;
  4295. private System.Windows.Forms.Label label75;
  4296. private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Abs;
  4297. private System.Windows.Forms.Label label76;
  4298. private System.Windows.Forms.TextBox textBox_RunInfo_ODO_Km;
  4299. private System.Windows.Forms.Label label78;
  4300. private System.Windows.Forms.Label label_BiuldTime;
  4301. private System.Windows.Forms.CheckBox checkBox_ReadAttitudeAngleAutoSend;
  4302. private System.Windows.Forms.CheckBox checkBox_ReadRideInfo;
  4303. private System.Windows.Forms.Label label77;
  4304. private System.Windows.Forms.GroupBox groupBox14;
  4305. private System.Windows.Forms.Label label99;
  4306. private System.Windows.Forms.Button button_ReadRunLog;
  4307. private System.Windows.Forms.Label label96;
  4308. private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MIN;
  4309. private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MIN;
  4310. private System.Windows.Forms.Label label98;
  4311. private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MAX;
  4312. private System.Windows.Forms.Label label97;
  4313. private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MAX;
  4314. private System.Windows.Forms.Label label95;
  4315. private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MIN;
  4316. private System.Windows.Forms.Label label94;
  4317. private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MAX;
  4318. private System.Windows.Forms.Label label93;
  4319. private System.Windows.Forms.TextBox textBox_Runlog1_PBUFault;
  4320. private System.Windows.Forms.Label label92;
  4321. private System.Windows.Forms.TextBox textBox_Runlog1_HMIFault;
  4322. private System.Windows.Forms.Label label91;
  4323. private System.Windows.Forms.TextBox textBox_Runlog1_BMSFault;
  4324. private System.Windows.Forms.Label label90;
  4325. private System.Windows.Forms.TextBox textBox_Runlog1_NTCFault;
  4326. private System.Windows.Forms.Label label89;
  4327. private System.Windows.Forms.TextBox textBox_Runlog1_Phase;
  4328. private System.Windows.Forms.Label label88;
  4329. private System.Windows.Forms.TextBox textBox_Runlog1_HallFault;
  4330. private System.Windows.Forms.Label label87;
  4331. private System.Windows.Forms.TextBox textBox_Runlog1_TQSFault;
  4332. private System.Windows.Forms.Label label86;
  4333. private System.Windows.Forms.TextBox textBox_Runlog1_SPSFault;
  4334. private System.Windows.Forms.Label label85;
  4335. private System.Windows.Forms.TextBox textBox_Runlog1_OT;
  4336. private System.Windows.Forms.Label label84;
  4337. private System.Windows.Forms.TextBox textBox_Runlog1_Lock;
  4338. private System.Windows.Forms.Label label83;
  4339. private System.Windows.Forms.TextBox textBox_Runlog1_OV;
  4340. private System.Windows.Forms.Label label82;
  4341. private System.Windows.Forms.TextBox textBox_Runlog1_UV;
  4342. private System.Windows.Forms.Label label81;
  4343. private System.Windows.Forms.TextBox textBox_Runlog1_OC;
  4344. private System.Windows.Forms.Label label80;
  4345. private System.Windows.Forms.TextBox textBox_Runlog1_RunTime;
  4346. private System.Windows.Forms.Label label107;
  4347. private System.Windows.Forms.TextBox textBox_Runlog2_TE_CircuitFault;
  4348. private System.Windows.Forms.Label label106;
  4349. private System.Windows.Forms.TextBox textBox_Runlog2_TE_MCUFault;
  4350. private System.Windows.Forms.Label label105;
  4351. private System.Windows.Forms.TextBox textBox_Runlog2_CircuitFault;
  4352. private System.Windows.Forms.Label label104;
  4353. private System.Windows.Forms.TextBox textBox_Runlog2_VolFault;
  4354. private System.Windows.Forms.Label label103;
  4355. private System.Windows.Forms.TextBox textBox_Runlog2_MOS_SC;
  4356. private System.Windows.Forms.Label label102;
  4357. private System.Windows.Forms.TextBox textBox_Runlog2_GasFault;
  4358. private System.Windows.Forms.Label label101;
  4359. private System.Windows.Forms.TextBox textBox_Runlog2_CDSFault;
  4360. private System.Windows.Forms.Label label100;
  4361. private System.Windows.Forms.TextBox textBox_Runlog2_MCUFault;
  4362. private System.Windows.Forms.Label label79;
  4363. private System.Windows.Forms.TextBox textBox_Runlog1_PowerCount;
  4364. private System.Windows.Forms.Label label108;
  4365. private System.Windows.Forms.Label label_DateTime;
  4366. private System.Windows.Forms.Timer timer2;
  4367. private System.Windows.Forms.CheckBox checkBox_Savedata;
  4368. private System.Windows.Forms.Label label109;
  4369. private System.Windows.Forms.TextBox textBox_TE_FW;
  4370. private System.Windows.Forms.Button button_DataExport;
  4371. private System.Windows.Forms.GroupBox groupBox15;
  4372. private System.Windows.Forms.GroupBox groupBox16;
  4373. private System.Windows.Forms.TrackBar trackBar_MotorSpeedSet;
  4374. private System.Windows.Forms.Label label_MotorSpeedSet;
  4375. private System.Windows.Forms.Button button_Recovery;
  4376. private System.Windows.Forms.Button button_ReadErrorLog;
  4377. private System.Windows.Forms.TextBox textBox_Torque_Stdev;
  4378. private System.Windows.Forms.Label label110;
  4379. private System.Windows.Forms.Label label111;
  4380. private System.Windows.Forms.Label label114;
  4381. private System.Windows.Forms.Label label113;
  4382. private System.Windows.Forms.Label label112;
  4383. private System.Windows.Forms.TextBox textBox_Sensor1;
  4384. private System.Windows.Forms.TextBox textBox_Sensor2;
  4385. private System.Windows.Forms.TextBox textBox_Sensor3;
  4386. private System.Windows.Forms.Button button_ReadStartData;
  4387. private System.Windows.Forms.GroupBox groupBox17;
  4388. private System.Windows.Forms.TextBox textBox_Sensor3_K;
  4389. private System.Windows.Forms.TextBox textBox_Sensor2_K;
  4390. private System.Windows.Forms.Label label119;
  4391. private System.Windows.Forms.Label label118;
  4392. private System.Windows.Forms.Label label117;
  4393. private System.Windows.Forms.Label label116;
  4394. private System.Windows.Forms.TextBox textBox_Sensor1_K;
  4395. private System.Windows.Forms.TextBox textBox_Sensor3_Zero;
  4396. private System.Windows.Forms.TextBox textBox_Sensor2_Zero;
  4397. private System.Windows.Forms.TextBox textBox_Sensor1_Zero;
  4398. private System.Windows.Forms.TextBox textBox_Sensor3_Std;
  4399. private System.Windows.Forms.TextBox textBox_Sensor2_Std;
  4400. private System.Windows.Forms.TextBox textBox_Sensor1_Std;
  4401. private System.Windows.Forms.TextBox textBox_Sensor3_Avg;
  4402. private System.Windows.Forms.TextBox textBox_Sensor2_Avg;
  4403. private System.Windows.Forms.TextBox textBox_Sensor1_Avg;
  4404. private System.Windows.Forms.Button button_WriteK;
  4405. private System.Windows.Forms.Button button_ReadZero;
  4406. private System.Windows.Forms.Label label115;
  4407. private System.Windows.Forms.Label label5;
  4408. private System.Windows.Forms.Label label3;
  4409. private System.Windows.Forms.CheckBox checkBox_Sensor3;
  4410. private System.Windows.Forms.CheckBox checkBox_Sensor2;
  4411. private System.Windows.Forms.CheckBox checkBox_Sensor1;
  4412. private System.Windows.Forms.Label label120;
  4413. private System.Windows.Forms.TextBox textBox_Firmware_Special;
  4414. private System.Windows.Forms.Label label123;
  4415. private System.Windows.Forms.Label label122;
  4416. private System.Windows.Forms.Label label121;
  4417. private System.Windows.Forms.TextBox textBox_Config_WalkMotorSpeed;
  4418. private System.Windows.Forms.TextBox textBox_Config_WalkSpeedLimit;
  4419. private System.Windows.Forms.TextBox textBox_Config_UV_Protect;
  4420. private System.Windows.Forms.Label label126;
  4421. private System.Windows.Forms.Label label125;
  4422. private System.Windows.Forms.Label label124;
  4423. private System.Windows.Forms.Button button_LogClear;
  4424. private System.Windows.Forms.Label label127;
  4425. private System.Windows.Forms.Label label1_Welcom;
  4426. private System.Windows.Forms.ComboBox comboBox_SpeedSing;
  4427. private System.Windows.Forms.ComboBox comboBox_SerNum;
  4428. private System.Windows.Forms.ComboBox comboBox_NoWatch;
  4429. private System.Windows.Forms.ComboBox comboBox_DownDec;
  4430. private System.Windows.Forms.ComboBox comboBox_StartMode;
  4431. private System.Windows.Forms.ComboBox comboBox_Config_GasMode;
  4432. private System.Windows.Forms.ComboBox comboBox_TailLightVol;
  4433. private System.Windows.Forms.ComboBox comboBox_AttiSensor;
  4434. private System.Windows.Forms.ComboBox comboBox_FrontLigthVol;
  4435. private System.Windows.Forms.ComboBox comboBox_TailLightMode;
  4436. private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStop;
  4437. private System.Windows.Forms.Label label128;
  4438. private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStart;
  4439. private System.Windows.Forms.Label label129;
  4440. private System.Windows.Forms.TextBox textBox_Config_Period;
  4441. private System.Windows.Forms.Label label130;
  4442. private System.Windows.Forms.TextBox textBox_Config_Pulse;
  4443. private System.Windows.Forms.Label label131;
  4444. private System.Windows.Forms.TextBox textBox_Config_SpeedAlarm;
  4445. private System.Windows.Forms.Label label132;
  4446. private System.Windows.Forms.Button button_ReadAll;
  4447. }
  4448. }