123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455 |
- namespace MOTINOVA_MC_Test
- {
- partial class Form1
- {
- /// <summary>
- /// 必需的设计器变量。
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// 清理所有正在使用的资源。
- /// </summary>
- /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- this.groupBox1 = new System.Windows.Forms.GroupBox();
- this.label58 = new System.Windows.Forms.Label();
- this.button_RefreshPort = new System.Windows.Forms.Button();
- this.button_ComOpen = new System.Windows.Forms.Button();
- this.textBox_RevCnt = new System.Windows.Forms.TextBox();
- this.comboBox_Baudrate = new System.Windows.Forms.ComboBox();
- this.comboBox_ComIndex = new System.Windows.Forms.ComboBox();
- this.label2 = new System.Windows.Forms.Label();
- this.label1 = new System.Windows.Forms.Label();
- this.serialPort1 = new System.IO.Ports.SerialPort(this.components);
- this.groupBox2 = new System.Windows.Forms.GroupBox();
- this.button_ReadStartData = new System.Windows.Forms.Button();
- this.button_Write_Torque_Start = new System.Windows.Forms.Button();
- this.textBox_Torque_Stdev = new System.Windows.Forms.TextBox();
- this.textBox_TorqueData = new System.Windows.Forms.TextBox();
- this.textBox_Torque_Start = new System.Windows.Forms.TextBox();
- this.label110 = new System.Windows.Forms.Label();
- this.label57 = new System.Windows.Forms.Label();
- this.label9 = new System.Windows.Forms.Label();
- this.label111 = new System.Windows.Forms.Label();
- this.checkBox_Savedata = new System.Windows.Forms.CheckBox();
- this.checkBox_ReadTorqueData = new System.Windows.Forms.CheckBox();
- this.label4 = new System.Windows.Forms.Label();
- this.groupBox3 = new System.Windows.Forms.GroupBox();
- this.label114 = new System.Windows.Forms.Label();
- this.label46 = new System.Windows.Forms.Label();
- this.label56 = new System.Windows.Forms.Label();
- this.label55 = new System.Windows.Forms.Label();
- this.label113 = new System.Windows.Forms.Label();
- this.label43 = new System.Windows.Forms.Label();
- this.label76 = new System.Windows.Forms.Label();
- this.label42 = new System.Windows.Forms.Label();
- this.label40 = new System.Windows.Forms.Label();
- this.label39 = new System.Windows.Forms.Label();
- this.label44 = new System.Windows.Forms.Label();
- this.label70 = new System.Windows.Forms.Label();
- this.label48 = new System.Windows.Forms.Label();
- this.label54 = new System.Windows.Forms.Label();
- this.label37 = new System.Windows.Forms.Label();
- this.label41 = new System.Windows.Forms.Label();
- this.label36 = new System.Windows.Forms.Label();
- this.label38 = new System.Windows.Forms.Label();
- this.label22 = new System.Windows.Forms.Label();
- this.label112 = new System.Windows.Forms.Label();
- this.label35 = new System.Windows.Forms.Label();
- this.label23 = new System.Windows.Forms.Label();
- this.label24 = new System.Windows.Forms.Label();
- this.textBox_RunInfo_BikeSpeed = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_OutSpeed = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Power = new System.Windows.Forms.TextBox();
- this.textBox_Sensor1 = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Voltage = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Current = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Cadence = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Torque = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Dir = new System.Windows.Forms.TextBox();
- this.textBox_Sensor2 = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Gear = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Light = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_SOC = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Range = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_ODO_Km = new System.Windows.Forms.TextBox();
- this.textBox_Sensor3 = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_PowerAvg = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_PCB = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_Roil = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_T_MCU = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Distance = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_Time = new System.Windows.Forms.TextBox();
- this.textBox_RunInfo_ErrorCode = new System.Windows.Forms.TextBox();
- this.groupBox5 = new System.Windows.Forms.GroupBox();
- this.radioButton_WorkMode_Confg = new System.Windows.Forms.RadioButton();
- this.radioButton_WorkMode_Run = new System.Windows.Forms.RadioButton();
- this.groupBox6 = new System.Windows.Forms.GroupBox();
- this.checkBox_AutoSend = new System.Windows.Forms.CheckBox();
- this.radioButton_Gear_WALK = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_SMART = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_TURBO = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_SPORT = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_NORM = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_ECO = new System.Windows.Forms.RadioButton();
- this.radioButton_Gear_OFF = new System.Windows.Forms.RadioButton();
- this.groupBox7 = new System.Windows.Forms.GroupBox();
- this.radioButton_Light_OFF = new System.Windows.Forms.RadioButton();
- this.radioButton_Light_ON = new System.Windows.Forms.RadioButton();
- this.groupBox8 = new System.Windows.Forms.GroupBox();
- this.button_Reset = new System.Windows.Forms.Button();
- this.button_LogClear = new System.Windows.Forms.Button();
- this.button_Recovery = new System.Windows.Forms.Button();
- this.button_ClearData = new System.Windows.Forms.Button();
- this.groupBox9 = new System.Windows.Forms.GroupBox();
- this.button_Write_Mode = new System.Windows.Forms.Button();
- this.button_Read_VerInfo = new System.Windows.Forms.Button();
- this.button_Write_SN = new System.Windows.Forms.Button();
- this.label109 = new System.Windows.Forms.Label();
- this.label120 = new System.Windows.Forms.Label();
- this.label8 = new System.Windows.Forms.Label();
- this.label7 = new System.Windows.Forms.Label();
- this.textBox_Firmware_Special = new System.Windows.Forms.TextBox();
- this.textBox_TE_FW = new System.Windows.Forms.TextBox();
- this.textBox_FW = new System.Windows.Forms.TextBox();
- this.textBox_HW = new System.Windows.Forms.TextBox();
- this.textBox_SN = new System.Windows.Forms.TextBox();
- this.textBox_Mode = new System.Windows.Forms.TextBox();
- this.label6 = new System.Windows.Forms.Label();
- this.groupBox10 = new System.Windows.Forms.GroupBox();
- this.comboBox_SpeedSing = new System.Windows.Forms.ComboBox();
- this.comboBox_SerNum = new System.Windows.Forms.ComboBox();
- this.comboBox_NoWatch = new System.Windows.Forms.ComboBox();
- this.comboBox_DownDec = new System.Windows.Forms.ComboBox();
- this.comboBox_StartMode = new System.Windows.Forms.ComboBox();
- this.comboBox_Config_GasMode = new System.Windows.Forms.ComboBox();
- this.button_Write_Config = new System.Windows.Forms.Button();
- this.button_Read_Config = new System.Windows.Forms.Button();
- this.label27 = new System.Windows.Forms.Label();
- this.label26 = new System.Windows.Forms.Label();
- this.textBox_Config_SPORT_K = new System.Windows.Forms.TextBox();
- this.textBox_Config_SMART_K = new System.Windows.Forms.TextBox();
- this.textBox_Config_NORM_Acc = new System.Windows.Forms.TextBox();
- this.textBox_Config_TURBO_Acc = new System.Windows.Forms.TextBox();
- this.textBox_Config_TURBO_K = new System.Windows.Forms.TextBox();
- this.textBox_Config_SPORT_Acc = new System.Windows.Forms.TextBox();
- this.textBox_Config_SMART_Acc = new System.Windows.Forms.TextBox();
- this.label25 = new System.Windows.Forms.Label();
- this.textBox_Config_NORM_K = new System.Windows.Forms.TextBox();
- this.textBox_Config_ECO_Acc = new System.Windows.Forms.TextBox();
- this.label31 = new System.Windows.Forms.Label();
- this.label30 = new System.Windows.Forms.Label();
- this.label34 = new System.Windows.Forms.Label();
- this.textBox_Config_ECO_K = new System.Windows.Forms.TextBox();
- this.textBox_Config_WalkMotorSpeed = new System.Windows.Forms.TextBox();
- this.textBox_Config_WheelAdj = new System.Windows.Forms.TextBox();
- this.textBox_Config_WalkSpeedLimit = new System.Windows.Forms.TextBox();
- this.textBox_Config_UV_Protect = new System.Windows.Forms.TextBox();
- this.label29 = new System.Windows.Forms.Label();
- this.label33 = new System.Windows.Forms.Label();
- this.textBox_Config_CadenceNum = new System.Windows.Forms.TextBox();
- this.textBox_Config_WheelSize = new System.Windows.Forms.TextBox();
- this.textBox_Config_MaxSpeed = new System.Windows.Forms.TextBox();
- this.label28 = new System.Windows.Forms.Label();
- this.label32 = new System.Windows.Forms.Label();
- this.textBox_Config_T_Alarm = new System.Windows.Forms.TextBox();
- this.textBox_Config_StopTime = new System.Windows.Forms.TextBox();
- this.label126 = new System.Windows.Forms.Label();
- this.label63 = new System.Windows.Forms.Label();
- this.label62 = new System.Windows.Forms.Label();
- this.label125 = new System.Windows.Forms.Label();
- this.label124 = new System.Windows.Forms.Label();
- this.label21 = new System.Windows.Forms.Label();
- this.textBox_Config_MaxCurrent = new System.Windows.Forms.TextBox();
- this.textBox_Config_SpeedNum = new System.Windows.Forms.TextBox();
- this.label61 = new System.Windows.Forms.Label();
- this.label20 = new System.Windows.Forms.Label();
- this.textBox_Config_Teeth_B = new System.Windows.Forms.TextBox();
- this.textBox_Config_T_Protect = new System.Windows.Forms.TextBox();
- this.label60 = new System.Windows.Forms.Label();
- this.label19 = new System.Windows.Forms.Label();
- this.label11 = new System.Windows.Forms.Label();
- this.label18 = new System.Windows.Forms.Label();
- this.label13 = new System.Windows.Forms.Label();
- this.label17 = new System.Windows.Forms.Label();
- this.label14 = new System.Windows.Forms.Label();
- this.label16 = new System.Windows.Forms.Label();
- this.label15 = new System.Windows.Forms.Label();
- this.label12 = new System.Windows.Forms.Label();
- this.label59 = new System.Windows.Forms.Label();
- this.label10 = new System.Windows.Forms.Label();
- this.textBox_Config_Teeth_F = new System.Windows.Forms.TextBox();
- this.groupBox11 = new System.Windows.Forms.GroupBox();
- this.button_Write_MotorConfig = new System.Windows.Forms.Button();
- this.button_Read_MortoConfig = new System.Windows.Forms.Button();
- this.textBox_Motor_Power = new System.Windows.Forms.TextBox();
- this.textBox_Motor_R = new System.Windows.Forms.TextBox();
- this.textBox_Motor_Speed = new System.Windows.Forms.TextBox();
- this.textBox_Motor_Voltage = new System.Windows.Forms.TextBox();
- this.textBox_Motor_E = new System.Windows.Forms.TextBox();
- this.textBox_Motor_Lq = new System.Windows.Forms.TextBox();
- this.label45 = new System.Windows.Forms.Label();
- this.textBox_Motor_Ld = new System.Windows.Forms.TextBox();
- this.label53 = new System.Windows.Forms.Label();
- this.label47 = new System.Windows.Forms.Label();
- this.label51 = new System.Windows.Forms.Label();
- this.label52 = new System.Windows.Forms.Label();
- this.label49 = new System.Windows.Forms.Label();
- this.label50 = new System.Windows.Forms.Label();
- this.timer1 = new System.Windows.Forms.Timer(this.components);
- this.groupBox4 = new System.Windows.Forms.GroupBox();
- this.textBox_Config_SpeedlimitStop = new System.Windows.Forms.TextBox();
- this.label128 = new System.Windows.Forms.Label();
- this.textBox_Config_SpeedlimitStart = new System.Windows.Forms.TextBox();
- this.label129 = new System.Windows.Forms.Label();
- this.textBox_Config_Period = new System.Windows.Forms.TextBox();
- this.label130 = new System.Windows.Forms.Label();
- this.textBox_Config_Pulse = new System.Windows.Forms.TextBox();
- this.label131 = new System.Windows.Forms.Label();
- this.textBox_Config_SpeedAlarm = new System.Windows.Forms.TextBox();
- this.label132 = new System.Windows.Forms.Label();
- this.comboBox_TailLightVol = new System.Windows.Forms.ComboBox();
- this.comboBox_AttiSensor = new System.Windows.Forms.ComboBox();
- this.comboBox_FrontLigthVol = new System.Windows.Forms.ComboBox();
- this.comboBox_TailLightMode = new System.Windows.Forms.ComboBox();
- this.button_Write_Config_Ext = new System.Windows.Forms.Button();
- this.button_Read_Config_Ext = new System.Windows.Forms.Button();
- this.label123 = new System.Windows.Forms.Label();
- this.label66 = new System.Windows.Forms.Label();
- this.label122 = new System.Windows.Forms.Label();
- this.label65 = new System.Windows.Forms.Label();
- this.textBox_Config_Angle_Roll = new System.Windows.Forms.TextBox();
- this.label121 = new System.Windows.Forms.Label();
- this.label64 = new System.Windows.Forms.Label();
- this.textBox_Config_Angle_Pitch = new System.Windows.Forms.TextBox();
- this.groupBox12 = new System.Windows.Forms.GroupBox();
- this.checkBox_ReadRideInfo = new System.Windows.Forms.CheckBox();
- this.button_Read_RidedInfo = new System.Windows.Forms.Button();
- this.label71 = new System.Windows.Forms.Label();
- this.label67 = new System.Windows.Forms.Label();
- this.textBox_RideInfo_Trip_Time = new System.Windows.Forms.TextBox();
- this.textBox_RideInfo_Trip_Km = new System.Windows.Forms.TextBox();
- this.label68 = new System.Windows.Forms.Label();
- this.textBox_RideInfo_ODO_Time = new System.Windows.Forms.TextBox();
- this.label69 = new System.Windows.Forms.Label();
- this.textBox_RideInfo_ODO_Km = new System.Windows.Forms.TextBox();
- this.groupBox13 = new System.Windows.Forms.GroupBox();
- this.checkBox_ReadAttitudeAngleAutoSend = new System.Windows.Forms.CheckBox();
- this.button_Read_AttitudeAngle = new System.Windows.Forms.Button();
- this.label72 = new System.Windows.Forms.Label();
- this.label73 = new System.Windows.Forms.Label();
- this.textBox_Attitude_RollAngle_Rel = new System.Windows.Forms.TextBox();
- this.textBox_Attitude_RollAngle_Abs = new System.Windows.Forms.TextBox();
- this.label74 = new System.Windows.Forms.Label();
- this.textBox_Attitude_PitchAngle_Rel = new System.Windows.Forms.TextBox();
- this.label75 = new System.Windows.Forms.Label();
- this.textBox_Attitude_PitchAngle_Abs = new System.Windows.Forms.TextBox();
- this.label78 = new System.Windows.Forms.Label();
- this.label_BiuldTime = new System.Windows.Forms.Label();
- this.label77 = new System.Windows.Forms.Label();
- this.groupBox14 = new System.Windows.Forms.GroupBox();
- this.label99 = new System.Windows.Forms.Label();
- this.button_ReadErrorLog = new System.Windows.Forms.Button();
- this.button_ReadRunLog = new System.Windows.Forms.Button();
- this.label96 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_MCU_MIN = new System.Windows.Forms.TextBox();
- this.textBox_Runlog1_Coil_MIN = new System.Windows.Forms.TextBox();
- this.label98 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_MCU_MAX = new System.Windows.Forms.TextBox();
- this.label97 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_Coil_MAX = new System.Windows.Forms.TextBox();
- this.label95 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_PCB_MIN = new System.Windows.Forms.TextBox();
- this.label94 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_PCB_MAX = new System.Windows.Forms.TextBox();
- this.label93 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_PBUFault = new System.Windows.Forms.TextBox();
- this.label92 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_HMIFault = new System.Windows.Forms.TextBox();
- this.label91 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_BMSFault = new System.Windows.Forms.TextBox();
- this.label90 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_NTCFault = new System.Windows.Forms.TextBox();
- this.label89 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_Phase = new System.Windows.Forms.TextBox();
- this.label88 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_HallFault = new System.Windows.Forms.TextBox();
- this.label87 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_TQSFault = new System.Windows.Forms.TextBox();
- this.label86 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_SPSFault = new System.Windows.Forms.TextBox();
- this.label85 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_OT = new System.Windows.Forms.TextBox();
- this.label84 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_Lock = new System.Windows.Forms.TextBox();
- this.label83 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_OV = new System.Windows.Forms.TextBox();
- this.label82 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_UV = new System.Windows.Forms.TextBox();
- this.label81 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_OC = new System.Windows.Forms.TextBox();
- this.label80 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_RunTime = new System.Windows.Forms.TextBox();
- this.label107 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_TE_CircuitFault = new System.Windows.Forms.TextBox();
- this.label106 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_TE_MCUFault = new System.Windows.Forms.TextBox();
- this.label105 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_CircuitFault = new System.Windows.Forms.TextBox();
- this.label104 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_VolFault = new System.Windows.Forms.TextBox();
- this.label103 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_MOS_SC = new System.Windows.Forms.TextBox();
- this.label102 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_GasFault = new System.Windows.Forms.TextBox();
- this.label101 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_CDSFault = new System.Windows.Forms.TextBox();
- this.label100 = new System.Windows.Forms.Label();
- this.textBox_Runlog2_MCUFault = new System.Windows.Forms.TextBox();
- this.label79 = new System.Windows.Forms.Label();
- this.textBox_Runlog1_PowerCount = new System.Windows.Forms.TextBox();
- this.label108 = new System.Windows.Forms.Label();
- this.label_DateTime = new System.Windows.Forms.Label();
- this.timer2 = new System.Windows.Forms.Timer(this.components);
- this.button_DataExport = new System.Windows.Forms.Button();
- this.groupBox15 = new System.Windows.Forms.GroupBox();
- this.groupBox16 = new System.Windows.Forms.GroupBox();
- this.trackBar_MotorSpeedSet = new System.Windows.Forms.TrackBar();
- this.label_MotorSpeedSet = new System.Windows.Forms.Label();
- this.groupBox17 = new System.Windows.Forms.GroupBox();
- this.checkBox_Sensor3 = new System.Windows.Forms.CheckBox();
- this.checkBox_Sensor2 = new System.Windows.Forms.CheckBox();
- this.checkBox_Sensor1 = new System.Windows.Forms.CheckBox();
- this.label115 = new System.Windows.Forms.Label();
- this.button_WriteK = new System.Windows.Forms.Button();
- this.button_ReadZero = new System.Windows.Forms.Button();
- this.label5 = new System.Windows.Forms.Label();
- this.textBox_Sensor3_K = new System.Windows.Forms.TextBox();
- this.textBox_Sensor2_K = new System.Windows.Forms.TextBox();
- this.label119 = new System.Windows.Forms.Label();
- this.label118 = new System.Windows.Forms.Label();
- this.label117 = new System.Windows.Forms.Label();
- this.label116 = new System.Windows.Forms.Label();
- this.textBox_Sensor1_K = new System.Windows.Forms.TextBox();
- this.textBox_Sensor3_Zero = new System.Windows.Forms.TextBox();
- this.textBox_Sensor2_Zero = new System.Windows.Forms.TextBox();
- this.textBox_Sensor1_Zero = new System.Windows.Forms.TextBox();
- this.textBox_Sensor3_Std = new System.Windows.Forms.TextBox();
- this.textBox_Sensor2_Std = new System.Windows.Forms.TextBox();
- this.textBox_Sensor1_Std = new System.Windows.Forms.TextBox();
- this.textBox_Sensor3_Avg = new System.Windows.Forms.TextBox();
- this.label3 = new System.Windows.Forms.Label();
- this.textBox_Sensor2_Avg = new System.Windows.Forms.TextBox();
- this.textBox_Sensor1_Avg = new System.Windows.Forms.TextBox();
- this.label127 = new System.Windows.Forms.Label();
- this.label1_Welcom = new System.Windows.Forms.Label();
- this.button_ReadAll = new System.Windows.Forms.Button();
- this.groupBox1.SuspendLayout();
- this.groupBox2.SuspendLayout();
- this.groupBox3.SuspendLayout();
- this.groupBox5.SuspendLayout();
- this.groupBox6.SuspendLayout();
- this.groupBox7.SuspendLayout();
- this.groupBox8.SuspendLayout();
- this.groupBox9.SuspendLayout();
- this.groupBox10.SuspendLayout();
- this.groupBox11.SuspendLayout();
- this.groupBox4.SuspendLayout();
- this.groupBox12.SuspendLayout();
- this.groupBox13.SuspendLayout();
- this.groupBox14.SuspendLayout();
- this.groupBox15.SuspendLayout();
- this.groupBox16.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).BeginInit();
- this.groupBox17.SuspendLayout();
- this.SuspendLayout();
- //
- // groupBox1
- //
- this.groupBox1.Controls.Add(this.label58);
- this.groupBox1.Controls.Add(this.button_RefreshPort);
- this.groupBox1.Controls.Add(this.button_ComOpen);
- this.groupBox1.Controls.Add(this.textBox_RevCnt);
- this.groupBox1.Controls.Add(this.comboBox_Baudrate);
- this.groupBox1.Controls.Add(this.comboBox_ComIndex);
- this.groupBox1.Controls.Add(this.label2);
- this.groupBox1.Controls.Add(this.label1);
- this.groupBox1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox1.Location = new System.Drawing.Point(7, 12);
- this.groupBox1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox1.Name = "groupBox1";
- this.groupBox1.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox1.Size = new System.Drawing.Size(240, 119);
- this.groupBox1.TabIndex = 0;
- this.groupBox1.TabStop = false;
- this.groupBox1.Text = "串口设置";
- //
- // label58
- //
- this.label58.AutoSize = true;
- this.label58.Location = new System.Drawing.Point(10, 89);
- this.label58.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label58.Name = "label58";
- this.label58.Size = new System.Drawing.Size(37, 20);
- this.label58.TabIndex = 10;
- this.label58.Text = "计数";
- this.label58.Click += new System.EventHandler(this.label58_Click);
- //
- // button_RefreshPort
- //
- this.button_RefreshPort.Location = new System.Drawing.Point(158, 26);
- this.button_RefreshPort.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_RefreshPort.Name = "button_RefreshPort";
- this.button_RefreshPort.Size = new System.Drawing.Size(72, 28);
- this.button_RefreshPort.TabIndex = 1;
- this.button_RefreshPort.Text = "刷新";
- this.button_RefreshPort.UseVisualStyleBackColor = true;
- this.button_RefreshPort.Click += new System.EventHandler(this.button_RefreshPort_Click);
- //
- // button_ComOpen
- //
- this.button_ComOpen.Location = new System.Drawing.Point(158, 55);
- this.button_ComOpen.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ComOpen.Name = "button_ComOpen";
- this.button_ComOpen.Size = new System.Drawing.Size(72, 56);
- this.button_ComOpen.TabIndex = 1;
- this.button_ComOpen.Text = "连接";
- this.button_ComOpen.UseVisualStyleBackColor = true;
- this.button_ComOpen.Click += new System.EventHandler(this.button_ComOpen_Click);
- //
- // textBox_RevCnt
- //
- this.textBox_RevCnt.Location = new System.Drawing.Point(75, 85);
- this.textBox_RevCnt.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RevCnt.Name = "textBox_RevCnt";
- this.textBox_RevCnt.ReadOnly = true;
- this.textBox_RevCnt.Size = new System.Drawing.Size(80, 26);
- this.textBox_RevCnt.TabIndex = 2;
- this.textBox_RevCnt.Text = "0";
- //
- // comboBox_Baudrate
- //
- this.comboBox_Baudrate.FormattingEnabled = true;
- this.comboBox_Baudrate.Items.AddRange(new object[] {
- "2400",
- "4800",
- "9600",
- "19200",
- "38400",
- "57600",
- "115200"});
- this.comboBox_Baudrate.Location = new System.Drawing.Point(75, 55);
- this.comboBox_Baudrate.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.comboBox_Baudrate.Name = "comboBox_Baudrate";
- this.comboBox_Baudrate.Size = new System.Drawing.Size(80, 28);
- this.comboBox_Baudrate.TabIndex = 1;
- //
- // comboBox_ComIndex
- //
- this.comboBox_ComIndex.FormattingEnabled = true;
- this.comboBox_ComIndex.Location = new System.Drawing.Point(75, 26);
- this.comboBox_ComIndex.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.comboBox_ComIndex.Name = "comboBox_ComIndex";
- this.comboBox_ComIndex.Size = new System.Drawing.Size(80, 28);
- this.comboBox_ComIndex.TabIndex = 1;
- //
- // label2
- //
- this.label2.AutoSize = true;
- this.label2.Location = new System.Drawing.Point(10, 60);
- this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label2.Name = "label2";
- this.label2.Size = new System.Drawing.Size(51, 20);
- this.label2.TabIndex = 1;
- this.label2.Text = "波特率";
- //
- // label1
- //
- this.label1.AutoSize = true;
- this.label1.Location = new System.Drawing.Point(10, 28);
- this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label1.Name = "label1";
- this.label1.Size = new System.Drawing.Size(51, 20);
- this.label1.TabIndex = 1;
- this.label1.Text = "串口号";
- //
- // serialPort1
- //
- this.serialPort1.DataReceived += new System.IO.Ports.SerialDataReceivedEventHandler(this.serialPort1_DataReceived);
- //
- // groupBox2
- //
- this.groupBox2.Controls.Add(this.button_ReadStartData);
- this.groupBox2.Controls.Add(this.button_Write_Torque_Start);
- this.groupBox2.Controls.Add(this.textBox_Torque_Stdev);
- this.groupBox2.Controls.Add(this.textBox_TorqueData);
- this.groupBox2.Controls.Add(this.textBox_Torque_Start);
- this.groupBox2.Controls.Add(this.label110);
- this.groupBox2.Controls.Add(this.label57);
- this.groupBox2.Controls.Add(this.label9);
- this.groupBox2.Controls.Add(this.label111);
- this.groupBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox2.Location = new System.Drawing.Point(7, 207);
- this.groupBox2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox2.Name = "groupBox2";
- this.groupBox2.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox2.Size = new System.Drawing.Size(240, 133);
- this.groupBox2.TabIndex = 1;
- this.groupBox2.TabStop = false;
- this.groupBox2.Text = "力矩传感器";
- this.groupBox2.Visible = false;
- //
- // button_ReadStartData
- //
- this.button_ReadStartData.Location = new System.Drawing.Point(159, 69);
- this.button_ReadStartData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ReadStartData.Name = "button_ReadStartData";
- this.button_ReadStartData.Size = new System.Drawing.Size(68, 30);
- this.button_ReadStartData.TabIndex = 4;
- this.button_ReadStartData.Text = "查询";
- this.button_ReadStartData.UseVisualStyleBackColor = true;
- this.button_ReadStartData.Click += new System.EventHandler(this.button_ReadStartData_Click);
- //
- // button_Write_Torque_Start
- //
- this.button_Write_Torque_Start.Enabled = false;
- this.button_Write_Torque_Start.Location = new System.Drawing.Point(159, 99);
- this.button_Write_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_Torque_Start.Name = "button_Write_Torque_Start";
- this.button_Write_Torque_Start.Size = new System.Drawing.Size(68, 30);
- this.button_Write_Torque_Start.TabIndex = 4;
- this.button_Write_Torque_Start.Text = "写入";
- this.button_Write_Torque_Start.UseVisualStyleBackColor = true;
- this.button_Write_Torque_Start.Click += new System.EventHandler(this.button_Write_Torque_Start_Click);
- //
- // textBox_Torque_Stdev
- //
- this.textBox_Torque_Stdev.Location = new System.Drawing.Point(160, 42);
- this.textBox_Torque_Stdev.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Torque_Stdev.Name = "textBox_Torque_Stdev";
- this.textBox_Torque_Stdev.ReadOnly = true;
- this.textBox_Torque_Stdev.Size = new System.Drawing.Size(66, 26);
- this.textBox_Torque_Stdev.TabIndex = 2;
- this.textBox_Torque_Stdev.Text = "---";
- //
- // textBox_TorqueData
- //
- this.textBox_TorqueData.Location = new System.Drawing.Point(89, 42);
- this.textBox_TorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_TorqueData.Name = "textBox_TorqueData";
- this.textBox_TorqueData.ReadOnly = true;
- this.textBox_TorqueData.Size = new System.Drawing.Size(66, 26);
- this.textBox_TorqueData.TabIndex = 2;
- this.textBox_TorqueData.Text = "---";
- //
- // textBox_Torque_Start
- //
- this.textBox_Torque_Start.Location = new System.Drawing.Point(89, 87);
- this.textBox_Torque_Start.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Torque_Start.Name = "textBox_Torque_Start";
- this.textBox_Torque_Start.Size = new System.Drawing.Size(66, 26);
- this.textBox_Torque_Start.TabIndex = 2;
- this.textBox_Torque_Start.Text = "---";
- //
- // label110
- //
- this.label110.AutoSize = true;
- this.label110.Location = new System.Drawing.Point(166, 18);
- this.label110.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label110.Name = "label110";
- this.label110.Size = new System.Drawing.Size(51, 20);
- this.label110.TabIndex = 2;
- this.label110.Text = "标准差";
- //
- // label57
- //
- this.label57.AutoSize = true;
- this.label57.Location = new System.Drawing.Point(96, 18);
- this.label57.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label57.Name = "label57";
- this.label57.Size = new System.Drawing.Size(51, 20);
- this.label57.TabIndex = 2;
- this.label57.Text = "平均值";
- //
- // label9
- //
- this.label9.AutoSize = true;
- this.label9.Location = new System.Drawing.Point(7, 90);
- this.label9.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label9.Name = "label9";
- this.label9.Size = new System.Drawing.Size(51, 20);
- this.label9.TabIndex = 2;
- this.label9.Text = "启动值";
- this.label9.DoubleClick += new System.EventHandler(this.label9_DoubleClick);
- this.label9.MouseHover += new System.EventHandler(this.label9_MouseHover);
- //
- // label111
- //
- this.label111.AutoSize = true;
- this.label111.Location = new System.Drawing.Point(6, 44);
- this.label111.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label111.Name = "label111";
- this.label111.Size = new System.Drawing.Size(79, 20);
- this.label111.TabIndex = 2;
- this.label111.Text = "力矩传感器";
- //
- // checkBox_Savedata
- //
- this.checkBox_Savedata.AutoSize = true;
- this.checkBox_Savedata.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.checkBox_Savedata.ForeColor = System.Drawing.Color.Red;
- this.checkBox_Savedata.Location = new System.Drawing.Point(11, 45);
- this.checkBox_Savedata.Name = "checkBox_Savedata";
- this.checkBox_Savedata.Size = new System.Drawing.Size(112, 24);
- this.checkBox_Savedata.TabIndex = 6;
- this.checkBox_Savedata.Text = "运行信息记录";
- this.checkBox_Savedata.UseVisualStyleBackColor = true;
- this.checkBox_Savedata.CheckedChanged += new System.EventHandler(this.checkBox_Savedata_CheckedChanged);
- //
- // checkBox_ReadTorqueData
- //
- this.checkBox_ReadTorqueData.AutoSize = true;
- this.checkBox_ReadTorqueData.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.checkBox_ReadTorqueData.ForeColor = System.Drawing.Color.Red;
- this.checkBox_ReadTorqueData.Location = new System.Drawing.Point(11, 20);
- this.checkBox_ReadTorqueData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.checkBox_ReadTorqueData.Name = "checkBox_ReadTorqueData";
- this.checkBox_ReadTorqueData.Size = new System.Drawing.Size(84, 24);
- this.checkBox_ReadTorqueData.TabIndex = 5;
- this.checkBox_ReadTorqueData.Text = "曲线采集";
- this.checkBox_ReadTorqueData.UseVisualStyleBackColor = true;
- this.checkBox_ReadTorqueData.CheckedChanged += new System.EventHandler(this.checkBox_ReadTorqueData_CheckedChanged);
- //
- // label4
- //
- this.label4.AutoSize = true;
- this.label4.Location = new System.Drawing.Point(7, 25);
- this.label4.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label4.Name = "label4";
- this.label4.Size = new System.Drawing.Size(37, 20);
- this.label4.TabIndex = 2;
- this.label4.Text = "型号";
- //
- // groupBox3
- //
- this.groupBox3.Controls.Add(this.label114);
- this.groupBox3.Controls.Add(this.label46);
- this.groupBox3.Controls.Add(this.label56);
- this.groupBox3.Controls.Add(this.label55);
- this.groupBox3.Controls.Add(this.label113);
- this.groupBox3.Controls.Add(this.label43);
- this.groupBox3.Controls.Add(this.label76);
- this.groupBox3.Controls.Add(this.label42);
- this.groupBox3.Controls.Add(this.label40);
- this.groupBox3.Controls.Add(this.label39);
- this.groupBox3.Controls.Add(this.label44);
- this.groupBox3.Controls.Add(this.label70);
- this.groupBox3.Controls.Add(this.label48);
- this.groupBox3.Controls.Add(this.label54);
- this.groupBox3.Controls.Add(this.label37);
- this.groupBox3.Controls.Add(this.label41);
- this.groupBox3.Controls.Add(this.label36);
- this.groupBox3.Controls.Add(this.label38);
- this.groupBox3.Controls.Add(this.label22);
- this.groupBox3.Controls.Add(this.label112);
- this.groupBox3.Controls.Add(this.label35);
- this.groupBox3.Controls.Add(this.label23);
- this.groupBox3.Controls.Add(this.label24);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_BikeSpeed);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_OutSpeed);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Power);
- this.groupBox3.Controls.Add(this.textBox_Sensor1);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Voltage);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Current);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Cadence);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Torque);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Dir);
- this.groupBox3.Controls.Add(this.textBox_Sensor2);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Gear);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Light);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_SOC);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Range);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_ODO_Km);
- this.groupBox3.Controls.Add(this.textBox_Sensor3);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_PowerAvg);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_T_PCB);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_T_Roil);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_T_MCU);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Distance);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_Time);
- this.groupBox3.Controls.Add(this.textBox_RunInfo_ErrorCode);
- this.groupBox3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox3.Location = new System.Drawing.Point(251, 13);
- this.groupBox3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox3.Name = "groupBox3";
- this.groupBox3.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox3.Size = new System.Drawing.Size(640, 191);
- this.groupBox3.TabIndex = 2;
- this.groupBox3.TabStop = false;
- this.groupBox3.Text = "运行信息";
- this.groupBox3.Visible = false;
- //
- // label114
- //
- this.label114.AutoSize = true;
- this.label114.Location = new System.Drawing.Point(304, 164);
- this.label114.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label114.Name = "label114";
- this.label114.Size = new System.Drawing.Size(59, 20);
- this.label114.TabIndex = 2;
- this.label114.Text = "传感器3";
- //
- // label46
- //
- this.label46.AutoSize = true;
- this.label46.Location = new System.Drawing.Point(304, 137);
- this.label46.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label46.Name = "label46";
- this.label46.Size = new System.Drawing.Size(64, 20);
- this.label46.TabIndex = 2;
- this.label46.Text = "PCB温度";
- //
- // label56
- //
- this.label56.AutoSize = true;
- this.label56.Location = new System.Drawing.Point(467, 29);
- this.label56.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label56.Name = "label56";
- this.label56.Size = new System.Drawing.Size(65, 20);
- this.label56.TabIndex = 2;
- this.label56.Text = "绕组温度";
- //
- // label55
- //
- this.label55.AutoSize = true;
- this.label55.Location = new System.Drawing.Point(467, 137);
- this.label55.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label55.Name = "label55";
- this.label55.Size = new System.Drawing.Size(51, 20);
- this.label55.TabIndex = 2;
- this.label55.Text = "故障码";
- //
- // label113
- //
- this.label113.AutoSize = true;
- this.label113.Location = new System.Drawing.Point(161, 164);
- this.label113.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label113.Name = "label113";
- this.label113.Size = new System.Drawing.Size(59, 20);
- this.label113.TabIndex = 2;
- this.label113.Text = "传感器2";
- //
- // label43
- //
- this.label43.AutoSize = true;
- this.label43.Location = new System.Drawing.Point(161, 137);
- this.label43.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label43.Name = "label43";
- this.label43.Size = new System.Drawing.Size(65, 20);
- this.label43.TabIndex = 2;
- this.label43.Text = "大灯状态";
- //
- // label76
- //
- this.label76.AutoSize = true;
- this.label76.Location = new System.Drawing.Point(303, 83);
- this.label76.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label76.Name = "label76";
- this.label76.Size = new System.Drawing.Size(70, 20);
- this.label76.TabIndex = 2;
- this.label76.Text = "ODO里程";
- //
- // label42
- //
- this.label42.AutoSize = true;
- this.label42.Location = new System.Drawing.Point(303, 56);
- this.label42.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label42.Name = "label42";
- this.label42.Size = new System.Drawing.Size(65, 20);
- this.label42.TabIndex = 2;
- this.label42.Text = "续航里程";
- //
- // label40
- //
- this.label40.AutoSize = true;
- this.label40.Location = new System.Drawing.Point(161, 56);
- this.label40.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label40.Name = "label40";
- this.label40.Size = new System.Drawing.Size(65, 20);
- this.label40.TabIndex = 2;
- this.label40.Text = "踩踏力矩";
- //
- // label39
- //
- this.label39.AutoSize = true;
- this.label39.Location = new System.Drawing.Point(161, 110);
- this.label39.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label39.Name = "label39";
- this.label39.Size = new System.Drawing.Size(65, 20);
- this.label39.TabIndex = 2;
- this.label39.Text = "助力档位";
- //
- // label44
- //
- this.label44.AutoSize = true;
- this.label44.Location = new System.Drawing.Point(303, 110);
- this.label44.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label44.Name = "label44";
- this.label44.Size = new System.Drawing.Size(65, 20);
- this.label44.TabIndex = 2;
- this.label44.Text = "平均功耗";
- //
- // label70
- //
- this.label70.AutoSize = true;
- this.label70.Location = new System.Drawing.Point(467, 110);
- this.label70.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label70.Name = "label70";
- this.label70.Size = new System.Drawing.Size(65, 20);
- this.label70.TabIndex = 2;
- this.label70.Text = "单次时间";
- //
- // label48
- //
- this.label48.AutoSize = true;
- this.label48.Location = new System.Drawing.Point(467, 83);
- this.label48.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label48.Name = "label48";
- this.label48.Size = new System.Drawing.Size(65, 20);
- this.label48.TabIndex = 2;
- this.label48.Text = "单次里程";
- //
- // label54
- //
- this.label54.AutoSize = true;
- this.label54.Location = new System.Drawing.Point(467, 56);
- this.label54.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label54.Name = "label54";
- this.label54.Size = new System.Drawing.Size(70, 20);
- this.label54.TabIndex = 2;
- this.label54.Text = "MCU温度";
- //
- // label37
- //
- this.label37.AutoSize = true;
- this.label37.Location = new System.Drawing.Point(7, 110);
- this.label37.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label37.Name = "label37";
- this.label37.Size = new System.Drawing.Size(65, 20);
- this.label37.TabIndex = 2;
- this.label37.Text = "母线电压";
- //
- // label41
- //
- this.label41.AutoSize = true;
- this.label41.Location = new System.Drawing.Point(303, 29);
- this.label41.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label41.Name = "label41";
- this.label41.Size = new System.Drawing.Size(65, 20);
- this.label41.TabIndex = 2;
- this.label41.Text = "剩余电量";
- //
- // label36
- //
- this.label36.AutoSize = true;
- this.label36.Location = new System.Drawing.Point(161, 29);
- this.label36.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label36.Name = "label36";
- this.label36.Size = new System.Drawing.Size(37, 20);
- this.label36.TabIndex = 2;
- this.label36.Text = "踏频";
- //
- // label38
- //
- this.label38.AutoSize = true;
- this.label38.Location = new System.Drawing.Point(161, 83);
- this.label38.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label38.Name = "label38";
- this.label38.Size = new System.Drawing.Size(65, 20);
- this.label38.TabIndex = 2;
- this.label38.Text = "踩踏方向";
- //
- // label22
- //
- this.label22.AutoSize = true;
- this.label22.Location = new System.Drawing.Point(7, 29);
- this.label22.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label22.Name = "label22";
- this.label22.Size = new System.Drawing.Size(37, 20);
- this.label22.TabIndex = 2;
- this.label22.Text = "车速";
- //
- // label112
- //
- this.label112.AutoSize = true;
- this.label112.Location = new System.Drawing.Point(7, 164);
- this.label112.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label112.Name = "label112";
- this.label112.Size = new System.Drawing.Size(59, 20);
- this.label112.TabIndex = 2;
- this.label112.Text = "传感器1";
- //
- // label35
- //
- this.label35.AutoSize = true;
- this.label35.Location = new System.Drawing.Point(7, 137);
- this.label35.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label35.Name = "label35";
- this.label35.Size = new System.Drawing.Size(65, 20);
- this.label35.TabIndex = 2;
- this.label35.Text = "母线电流";
- //
- // label23
- //
- this.label23.AutoSize = true;
- this.label23.Location = new System.Drawing.Point(7, 83);
- this.label23.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label23.Name = "label23";
- this.label23.Size = new System.Drawing.Size(51, 20);
- this.label23.TabIndex = 2;
- this.label23.Text = "电功率";
- //
- // label24
- //
- this.label24.AutoSize = true;
- this.label24.Location = new System.Drawing.Point(7, 56);
- this.label24.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label24.Name = "label24";
- this.label24.Size = new System.Drawing.Size(65, 20);
- this.label24.TabIndex = 2;
- this.label24.Text = "输出转速";
- //
- // textBox_RunInfo_BikeSpeed
- //
- this.textBox_RunInfo_BikeSpeed.Location = new System.Drawing.Point(77, 25);
- this.textBox_RunInfo_BikeSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_BikeSpeed.Name = "textBox_RunInfo_BikeSpeed";
- this.textBox_RunInfo_BikeSpeed.ReadOnly = true;
- this.textBox_RunInfo_BikeSpeed.Size = new System.Drawing.Size(81, 26);
- this.textBox_RunInfo_BikeSpeed.TabIndex = 17;
- //
- // textBox_RunInfo_OutSpeed
- //
- this.textBox_RunInfo_OutSpeed.Location = new System.Drawing.Point(77, 52);
- this.textBox_RunInfo_OutSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_OutSpeed.Name = "textBox_RunInfo_OutSpeed";
- this.textBox_RunInfo_OutSpeed.ReadOnly = true;
- this.textBox_RunInfo_OutSpeed.Size = new System.Drawing.Size(81, 26);
- this.textBox_RunInfo_OutSpeed.TabIndex = 21;
- //
- // textBox_RunInfo_Power
- //
- this.textBox_RunInfo_Power.Location = new System.Drawing.Point(77, 79);
- this.textBox_RunInfo_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Power.Name = "textBox_RunInfo_Power";
- this.textBox_RunInfo_Power.ReadOnly = true;
- this.textBox_RunInfo_Power.Size = new System.Drawing.Size(81, 26);
- this.textBox_RunInfo_Power.TabIndex = 25;
- //
- // textBox_Sensor1
- //
- this.textBox_Sensor1.Location = new System.Drawing.Point(77, 160);
- this.textBox_Sensor1.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor1.Name = "textBox_Sensor1";
- this.textBox_Sensor1.ReadOnly = true;
- this.textBox_Sensor1.Size = new System.Drawing.Size(81, 26);
- this.textBox_Sensor1.TabIndex = 37;
- //
- // textBox_RunInfo_Voltage
- //
- this.textBox_RunInfo_Voltage.Location = new System.Drawing.Point(77, 106);
- this.textBox_RunInfo_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Voltage.Name = "textBox_RunInfo_Voltage";
- this.textBox_RunInfo_Voltage.ReadOnly = true;
- this.textBox_RunInfo_Voltage.Size = new System.Drawing.Size(81, 26);
- this.textBox_RunInfo_Voltage.TabIndex = 29;
- //
- // textBox_RunInfo_Current
- //
- this.textBox_RunInfo_Current.Location = new System.Drawing.Point(77, 133);
- this.textBox_RunInfo_Current.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Current.Name = "textBox_RunInfo_Current";
- this.textBox_RunInfo_Current.ReadOnly = true;
- this.textBox_RunInfo_Current.Size = new System.Drawing.Size(81, 26);
- this.textBox_RunInfo_Current.TabIndex = 33;
- //
- // textBox_RunInfo_Cadence
- //
- this.textBox_RunInfo_Cadence.Location = new System.Drawing.Point(230, 25);
- this.textBox_RunInfo_Cadence.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Cadence.Name = "textBox_RunInfo_Cadence";
- this.textBox_RunInfo_Cadence.ReadOnly = true;
- this.textBox_RunInfo_Cadence.Size = new System.Drawing.Size(70, 26);
- this.textBox_RunInfo_Cadence.TabIndex = 18;
- //
- // textBox_RunInfo_Torque
- //
- this.textBox_RunInfo_Torque.Location = new System.Drawing.Point(230, 52);
- this.textBox_RunInfo_Torque.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Torque.Name = "textBox_RunInfo_Torque";
- this.textBox_RunInfo_Torque.ReadOnly = true;
- this.textBox_RunInfo_Torque.Size = new System.Drawing.Size(70, 26);
- this.textBox_RunInfo_Torque.TabIndex = 22;
- //
- // textBox_RunInfo_Dir
- //
- this.textBox_RunInfo_Dir.Location = new System.Drawing.Point(230, 79);
- this.textBox_RunInfo_Dir.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Dir.Name = "textBox_RunInfo_Dir";
- this.textBox_RunInfo_Dir.ReadOnly = true;
- this.textBox_RunInfo_Dir.Size = new System.Drawing.Size(70, 26);
- this.textBox_RunInfo_Dir.TabIndex = 26;
- //
- // textBox_Sensor2
- //
- this.textBox_Sensor2.Location = new System.Drawing.Point(230, 160);
- this.textBox_Sensor2.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor2.Name = "textBox_Sensor2";
- this.textBox_Sensor2.ReadOnly = true;
- this.textBox_Sensor2.Size = new System.Drawing.Size(70, 26);
- this.textBox_Sensor2.TabIndex = 38;
- //
- // textBox_RunInfo_Gear
- //
- this.textBox_RunInfo_Gear.Location = new System.Drawing.Point(230, 106);
- this.textBox_RunInfo_Gear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Gear.Name = "textBox_RunInfo_Gear";
- this.textBox_RunInfo_Gear.ReadOnly = true;
- this.textBox_RunInfo_Gear.Size = new System.Drawing.Size(70, 26);
- this.textBox_RunInfo_Gear.TabIndex = 30;
- //
- // textBox_RunInfo_Light
- //
- this.textBox_RunInfo_Light.Location = new System.Drawing.Point(230, 133);
- this.textBox_RunInfo_Light.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Light.Name = "textBox_RunInfo_Light";
- this.textBox_RunInfo_Light.ReadOnly = true;
- this.textBox_RunInfo_Light.Size = new System.Drawing.Size(70, 26);
- this.textBox_RunInfo_Light.TabIndex = 34;
- //
- // textBox_RunInfo_SOC
- //
- this.textBox_RunInfo_SOC.Location = new System.Drawing.Point(374, 25);
- this.textBox_RunInfo_SOC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_SOC.Name = "textBox_RunInfo_SOC";
- this.textBox_RunInfo_SOC.ReadOnly = true;
- this.textBox_RunInfo_SOC.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_SOC.TabIndex = 19;
- //
- // textBox_RunInfo_Range
- //
- this.textBox_RunInfo_Range.Location = new System.Drawing.Point(374, 52);
- this.textBox_RunInfo_Range.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Range.Name = "textBox_RunInfo_Range";
- this.textBox_RunInfo_Range.ReadOnly = true;
- this.textBox_RunInfo_Range.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_Range.TabIndex = 23;
- //
- // textBox_RunInfo_ODO_Km
- //
- this.textBox_RunInfo_ODO_Km.Location = new System.Drawing.Point(374, 79);
- this.textBox_RunInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_ODO_Km.Name = "textBox_RunInfo_ODO_Km";
- this.textBox_RunInfo_ODO_Km.ReadOnly = true;
- this.textBox_RunInfo_ODO_Km.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_ODO_Km.TabIndex = 27;
- //
- // textBox_Sensor3
- //
- this.textBox_Sensor3.Location = new System.Drawing.Point(374, 160);
- this.textBox_Sensor3.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor3.Name = "textBox_Sensor3";
- this.textBox_Sensor3.ReadOnly = true;
- this.textBox_Sensor3.Size = new System.Drawing.Size(90, 26);
- this.textBox_Sensor3.TabIndex = 39;
- //
- // textBox_RunInfo_PowerAvg
- //
- this.textBox_RunInfo_PowerAvg.Location = new System.Drawing.Point(374, 106);
- this.textBox_RunInfo_PowerAvg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_PowerAvg.Name = "textBox_RunInfo_PowerAvg";
- this.textBox_RunInfo_PowerAvg.ReadOnly = true;
- this.textBox_RunInfo_PowerAvg.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_PowerAvg.TabIndex = 31;
- //
- // textBox_RunInfo_T_PCB
- //
- this.textBox_RunInfo_T_PCB.Location = new System.Drawing.Point(374, 133);
- this.textBox_RunInfo_T_PCB.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_T_PCB.Name = "textBox_RunInfo_T_PCB";
- this.textBox_RunInfo_T_PCB.ReadOnly = true;
- this.textBox_RunInfo_T_PCB.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_T_PCB.TabIndex = 35;
- //
- // textBox_RunInfo_T_Roil
- //
- this.textBox_RunInfo_T_Roil.Location = new System.Drawing.Point(541, 25);
- this.textBox_RunInfo_T_Roil.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_T_Roil.Name = "textBox_RunInfo_T_Roil";
- this.textBox_RunInfo_T_Roil.ReadOnly = true;
- this.textBox_RunInfo_T_Roil.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_T_Roil.TabIndex = 20;
- //
- // textBox_RunInfo_T_MCU
- //
- this.textBox_RunInfo_T_MCU.Location = new System.Drawing.Point(541, 52);
- this.textBox_RunInfo_T_MCU.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_T_MCU.Name = "textBox_RunInfo_T_MCU";
- this.textBox_RunInfo_T_MCU.ReadOnly = true;
- this.textBox_RunInfo_T_MCU.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_T_MCU.TabIndex = 24;
- //
- // textBox_RunInfo_Distance
- //
- this.textBox_RunInfo_Distance.Location = new System.Drawing.Point(541, 79);
- this.textBox_RunInfo_Distance.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Distance.Name = "textBox_RunInfo_Distance";
- this.textBox_RunInfo_Distance.ReadOnly = true;
- this.textBox_RunInfo_Distance.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_Distance.TabIndex = 28;
- //
- // textBox_RunInfo_Time
- //
- this.textBox_RunInfo_Time.Location = new System.Drawing.Point(541, 106);
- this.textBox_RunInfo_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_Time.Name = "textBox_RunInfo_Time";
- this.textBox_RunInfo_Time.ReadOnly = true;
- this.textBox_RunInfo_Time.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_Time.TabIndex = 32;
- //
- // textBox_RunInfo_ErrorCode
- //
- this.textBox_RunInfo_ErrorCode.Location = new System.Drawing.Point(541, 133);
- this.textBox_RunInfo_ErrorCode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RunInfo_ErrorCode.Name = "textBox_RunInfo_ErrorCode";
- this.textBox_RunInfo_ErrorCode.ReadOnly = true;
- this.textBox_RunInfo_ErrorCode.Size = new System.Drawing.Size(90, 26);
- this.textBox_RunInfo_ErrorCode.TabIndex = 36;
- this.textBox_RunInfo_ErrorCode.MouseHover += new System.EventHandler(this.textBox_RunInfo_ErrorCode_MouseHover);
- //
- // groupBox5
- //
- this.groupBox5.Controls.Add(this.radioButton_WorkMode_Confg);
- this.groupBox5.Controls.Add(this.radioButton_WorkMode_Run);
- this.groupBox5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox5.Location = new System.Drawing.Point(6, 344);
- this.groupBox5.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox5.Name = "groupBox5";
- this.groupBox5.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox5.Size = new System.Drawing.Size(240, 76);
- this.groupBox5.TabIndex = 4;
- this.groupBox5.TabStop = false;
- this.groupBox5.Text = "工作模式";
- this.groupBox5.Visible = false;
- //
- // radioButton_WorkMode_Confg
- //
- this.radioButton_WorkMode_Confg.AutoSize = true;
- this.radioButton_WorkMode_Confg.Location = new System.Drawing.Point(134, 33);
- this.radioButton_WorkMode_Confg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_WorkMode_Confg.Name = "radioButton_WorkMode_Confg";
- this.radioButton_WorkMode_Confg.Size = new System.Drawing.Size(83, 24);
- this.radioButton_WorkMode_Confg.TabIndex = 5;
- this.radioButton_WorkMode_Confg.Text = "配置模式";
- this.radioButton_WorkMode_Confg.UseVisualStyleBackColor = true;
- this.radioButton_WorkMode_Confg.Click += new System.EventHandler(this.radioButton_WorkMode_Confg_Click);
- //
- // radioButton_WorkMode_Run
- //
- this.radioButton_WorkMode_Run.AutoSize = true;
- this.radioButton_WorkMode_Run.Checked = true;
- this.radioButton_WorkMode_Run.Location = new System.Drawing.Point(18, 33);
- this.radioButton_WorkMode_Run.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_WorkMode_Run.Name = "radioButton_WorkMode_Run";
- this.radioButton_WorkMode_Run.Size = new System.Drawing.Size(83, 24);
- this.radioButton_WorkMode_Run.TabIndex = 5;
- this.radioButton_WorkMode_Run.TabStop = true;
- this.radioButton_WorkMode_Run.Text = "运行模式";
- this.radioButton_WorkMode_Run.UseVisualStyleBackColor = true;
- this.radioButton_WorkMode_Run.Click += new System.EventHandler(this.radioButton_WorkMode_Run_Click);
- //
- // groupBox6
- //
- this.groupBox6.Controls.Add(this.checkBox_AutoSend);
- this.groupBox6.Controls.Add(this.radioButton_Gear_WALK);
- this.groupBox6.Controls.Add(this.radioButton_Gear_SMART);
- this.groupBox6.Controls.Add(this.radioButton_Gear_TURBO);
- this.groupBox6.Controls.Add(this.radioButton_Gear_SPORT);
- this.groupBox6.Controls.Add(this.radioButton_Gear_NORM);
- this.groupBox6.Controls.Add(this.radioButton_Gear_ECO);
- this.groupBox6.Controls.Add(this.radioButton_Gear_OFF);
- this.groupBox6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox6.Location = new System.Drawing.Point(6, 422);
- this.groupBox6.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox6.Name = "groupBox6";
- this.groupBox6.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox6.Size = new System.Drawing.Size(240, 150);
- this.groupBox6.TabIndex = 5;
- this.groupBox6.TabStop = false;
- this.groupBox6.Text = "助力档位";
- this.groupBox6.Visible = false;
- //
- // checkBox_AutoSend
- //
- this.checkBox_AutoSend.AutoSize = true;
- this.checkBox_AutoSend.Location = new System.Drawing.Point(134, 121);
- this.checkBox_AutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.checkBox_AutoSend.Name = "checkBox_AutoSend";
- this.checkBox_AutoSend.Size = new System.Drawing.Size(56, 24);
- this.checkBox_AutoSend.TabIndex = 7;
- this.checkBox_AutoSend.Text = "自动";
- this.checkBox_AutoSend.UseVisualStyleBackColor = true;
- this.checkBox_AutoSend.CheckedChanged += new System.EventHandler(this.checkBox_AutoSend_CheckedChanged);
- //
- // radioButton_Gear_WALK
- //
- this.radioButton_Gear_WALK.AutoSize = true;
- this.radioButton_Gear_WALK.Location = new System.Drawing.Point(134, 90);
- this.radioButton_Gear_WALK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_WALK.Name = "radioButton_Gear_WALK";
- this.radioButton_Gear_WALK.Size = new System.Drawing.Size(67, 24);
- this.radioButton_Gear_WALK.TabIndex = 6;
- this.radioButton_Gear_WALK.Text = "WALK";
- this.radioButton_Gear_WALK.UseVisualStyleBackColor = true;
- this.radioButton_Gear_WALK.Click += new System.EventHandler(this.radioButton_Gear_WALK_Click);
- //
- // radioButton_Gear_SMART
- //
- this.radioButton_Gear_SMART.AutoSize = true;
- this.radioButton_Gear_SMART.Location = new System.Drawing.Point(134, 56);
- this.radioButton_Gear_SMART.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_SMART.Name = "radioButton_Gear_SMART";
- this.radioButton_Gear_SMART.Size = new System.Drawing.Size(76, 24);
- this.radioButton_Gear_SMART.TabIndex = 6;
- this.radioButton_Gear_SMART.Text = "SMART";
- this.radioButton_Gear_SMART.UseVisualStyleBackColor = true;
- this.radioButton_Gear_SMART.Click += new System.EventHandler(this.radioButton_Gear_SMART_Click);
- //
- // radioButton_Gear_TURBO
- //
- this.radioButton_Gear_TURBO.AutoSize = true;
- this.radioButton_Gear_TURBO.Location = new System.Drawing.Point(134, 24);
- this.radioButton_Gear_TURBO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_TURBO.Name = "radioButton_Gear_TURBO";
- this.radioButton_Gear_TURBO.Size = new System.Drawing.Size(74, 24);
- this.radioButton_Gear_TURBO.TabIndex = 6;
- this.radioButton_Gear_TURBO.Text = "TURBO";
- this.radioButton_Gear_TURBO.UseVisualStyleBackColor = true;
- this.radioButton_Gear_TURBO.Click += new System.EventHandler(this.radioButton_Gear_TURBO_Click);
- //
- // radioButton_Gear_SPORT
- //
- this.radioButton_Gear_SPORT.AutoSize = true;
- this.radioButton_Gear_SPORT.Location = new System.Drawing.Point(18, 120);
- this.radioButton_Gear_SPORT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_SPORT.Name = "radioButton_Gear_SPORT";
- this.radioButton_Gear_SPORT.Size = new System.Drawing.Size(72, 24);
- this.radioButton_Gear_SPORT.TabIndex = 6;
- this.radioButton_Gear_SPORT.Text = "SPORT";
- this.radioButton_Gear_SPORT.UseVisualStyleBackColor = true;
- this.radioButton_Gear_SPORT.Click += new System.EventHandler(this.radioButton_Gear_SPORT_Click);
- //
- // radioButton_Gear_NORM
- //
- this.radioButton_Gear_NORM.AutoSize = true;
- this.radioButton_Gear_NORM.Location = new System.Drawing.Point(18, 90);
- this.radioButton_Gear_NORM.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_NORM.Name = "radioButton_Gear_NORM";
- this.radioButton_Gear_NORM.Size = new System.Drawing.Size(72, 24);
- this.radioButton_Gear_NORM.TabIndex = 6;
- this.radioButton_Gear_NORM.Text = "NORM";
- this.radioButton_Gear_NORM.UseVisualStyleBackColor = true;
- this.radioButton_Gear_NORM.Click += new System.EventHandler(this.radioButton_Gear_NORM_Click);
- //
- // radioButton_Gear_ECO
- //
- this.radioButton_Gear_ECO.AutoSize = true;
- this.radioButton_Gear_ECO.Location = new System.Drawing.Point(18, 56);
- this.radioButton_Gear_ECO.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_ECO.Name = "radioButton_Gear_ECO";
- this.radioButton_Gear_ECO.Size = new System.Drawing.Size(55, 24);
- this.radioButton_Gear_ECO.TabIndex = 6;
- this.radioButton_Gear_ECO.Text = "ECO";
- this.radioButton_Gear_ECO.UseVisualStyleBackColor = true;
- this.radioButton_Gear_ECO.Click += new System.EventHandler(this.radioButton_Gear_ECO_Click);
- //
- // radioButton_Gear_OFF
- //
- this.radioButton_Gear_OFF.AutoSize = true;
- this.radioButton_Gear_OFF.Checked = true;
- this.radioButton_Gear_OFF.Location = new System.Drawing.Point(18, 24);
- this.radioButton_Gear_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Gear_OFF.Name = "radioButton_Gear_OFF";
- this.radioButton_Gear_OFF.Size = new System.Drawing.Size(52, 24);
- this.radioButton_Gear_OFF.TabIndex = 6;
- this.radioButton_Gear_OFF.TabStop = true;
- this.radioButton_Gear_OFF.Text = "OFF";
- this.radioButton_Gear_OFF.UseVisualStyleBackColor = true;
- this.radioButton_Gear_OFF.Click += new System.EventHandler(this.radioButton_Gear_OFF_Click);
- //
- // groupBox7
- //
- this.groupBox7.Controls.Add(this.radioButton_Light_OFF);
- this.groupBox7.Controls.Add(this.radioButton_Light_ON);
- this.groupBox7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox7.Location = new System.Drawing.Point(7, 575);
- this.groupBox7.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox7.Name = "groupBox7";
- this.groupBox7.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox7.Size = new System.Drawing.Size(240, 56);
- this.groupBox7.TabIndex = 6;
- this.groupBox7.TabStop = false;
- this.groupBox7.Text = "大灯开关";
- this.groupBox7.Visible = false;
- //
- // radioButton_Light_OFF
- //
- this.radioButton_Light_OFF.AutoSize = true;
- this.radioButton_Light_OFF.Checked = true;
- this.radioButton_Light_OFF.Location = new System.Drawing.Point(17, 26);
- this.radioButton_Light_OFF.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Light_OFF.Name = "radioButton_Light_OFF";
- this.radioButton_Light_OFF.Size = new System.Drawing.Size(52, 24);
- this.radioButton_Light_OFF.TabIndex = 6;
- this.radioButton_Light_OFF.TabStop = true;
- this.radioButton_Light_OFF.Text = "OFF";
- this.radioButton_Light_OFF.UseVisualStyleBackColor = true;
- this.radioButton_Light_OFF.Click += new System.EventHandler(this.radioButton_Light_OFF_Click);
- //
- // radioButton_Light_ON
- //
- this.radioButton_Light_ON.AutoSize = true;
- this.radioButton_Light_ON.Location = new System.Drawing.Point(131, 26);
- this.radioButton_Light_ON.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.radioButton_Light_ON.Name = "radioButton_Light_ON";
- this.radioButton_Light_ON.Size = new System.Drawing.Size(49, 24);
- this.radioButton_Light_ON.TabIndex = 6;
- this.radioButton_Light_ON.Text = "ON";
- this.radioButton_Light_ON.UseVisualStyleBackColor = true;
- this.radioButton_Light_ON.Click += new System.EventHandler(this.radioButton_Light_ON_Click);
- //
- // groupBox8
- //
- this.groupBox8.Controls.Add(this.button_Reset);
- this.groupBox8.Controls.Add(this.button_LogClear);
- this.groupBox8.Controls.Add(this.button_Recovery);
- this.groupBox8.Controls.Add(this.button_ClearData);
- this.groupBox8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox8.Location = new System.Drawing.Point(7, 635);
- this.groupBox8.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox8.Name = "groupBox8";
- this.groupBox8.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox8.Size = new System.Drawing.Size(240, 79);
- this.groupBox8.TabIndex = 7;
- this.groupBox8.TabStop = false;
- this.groupBox8.Text = "系统控制";
- this.groupBox8.Visible = false;
- //
- // button_Reset
- //
- this.button_Reset.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.button_Reset.Location = new System.Drawing.Point(175, 21);
- this.button_Reset.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Reset.Name = "button_Reset";
- this.button_Reset.Size = new System.Drawing.Size(50, 50);
- this.button_Reset.TabIndex = 2;
- this.button_Reset.Text = "重启";
- this.button_Reset.UseVisualStyleBackColor = false;
- this.button_Reset.Click += new System.EventHandler(this.button_Reset_Click);
- //
- // button_LogClear
- //
- this.button_LogClear.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(0)))));
- this.button_LogClear.Location = new System.Drawing.Point(121, 21);
- this.button_LogClear.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_LogClear.Name = "button_LogClear";
- this.button_LogClear.Size = new System.Drawing.Size(50, 50);
- this.button_LogClear.TabIndex = 2;
- this.button_LogClear.Text = "记录清除";
- this.button_LogClear.UseVisualStyleBackColor = false;
- this.button_LogClear.Click += new System.EventHandler(this.button_LogClear_Click);
- this.button_LogClear.MouseHover += new System.EventHandler(this.button_LogClear_MouseHover);
- //
- // button_Recovery
- //
- this.button_Recovery.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
- this.button_Recovery.Enabled = false;
- this.button_Recovery.Location = new System.Drawing.Point(67, 21);
- this.button_Recovery.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Recovery.Name = "button_Recovery";
- this.button_Recovery.Size = new System.Drawing.Size(50, 50);
- this.button_Recovery.TabIndex = 2;
- this.button_Recovery.Text = "参数还原";
- this.button_Recovery.UseVisualStyleBackColor = false;
- this.button_Recovery.Click += new System.EventHandler(this.button_Recovery_Click);
- this.button_Recovery.MouseHover += new System.EventHandler(this.button_Recovery_MouseHover);
- //
- // button_ClearData
- //
- this.button_ClearData.BackColor = System.Drawing.Color.Red;
- this.button_ClearData.Enabled = false;
- this.button_ClearData.Location = new System.Drawing.Point(13, 21);
- this.button_ClearData.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ClearData.Name = "button_ClearData";
- this.button_ClearData.Size = new System.Drawing.Size(50, 50);
- this.button_ClearData.TabIndex = 2;
- this.button_ClearData.Text = "系统清除";
- this.button_ClearData.UseVisualStyleBackColor = false;
- this.button_ClearData.Click += new System.EventHandler(this.button_ClearData_Click);
- this.button_ClearData.MouseHover += new System.EventHandler(this.button_ClearData_MouseHover);
- //
- // groupBox9
- //
- this.groupBox9.Controls.Add(this.button_Write_Mode);
- this.groupBox9.Controls.Add(this.button_Read_VerInfo);
- this.groupBox9.Controls.Add(this.button_Write_SN);
- this.groupBox9.Controls.Add(this.label109);
- this.groupBox9.Controls.Add(this.label120);
- this.groupBox9.Controls.Add(this.label8);
- this.groupBox9.Controls.Add(this.label7);
- this.groupBox9.Controls.Add(this.textBox_Firmware_Special);
- this.groupBox9.Controls.Add(this.textBox_TE_FW);
- this.groupBox9.Controls.Add(this.textBox_FW);
- this.groupBox9.Controls.Add(this.textBox_HW);
- this.groupBox9.Controls.Add(this.textBox_SN);
- this.groupBox9.Controls.Add(this.textBox_Mode);
- this.groupBox9.Controls.Add(this.label6);
- this.groupBox9.Controls.Add(this.label4);
- this.groupBox9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox9.Location = new System.Drawing.Point(753, 603);
- this.groupBox9.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox9.Name = "groupBox9";
- this.groupBox9.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox9.Size = new System.Drawing.Size(313, 183);
- this.groupBox9.TabIndex = 8;
- this.groupBox9.TabStop = false;
- this.groupBox9.Text = "版本信息 ";
- this.groupBox9.Visible = false;
- //
- // button_Write_Mode
- //
- this.button_Write_Mode.Enabled = false;
- this.button_Write_Mode.Location = new System.Drawing.Point(249, 24);
- this.button_Write_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_Mode.Name = "button_Write_Mode";
- this.button_Write_Mode.Size = new System.Drawing.Size(58, 30);
- this.button_Write_Mode.TabIndex = 4;
- this.button_Write_Mode.Text = "写入";
- this.button_Write_Mode.UseVisualStyleBackColor = true;
- this.button_Write_Mode.Click += new System.EventHandler(this.button_Write_Mode_Click);
- //
- // button_Read_VerInfo
- //
- this.button_Read_VerInfo.Location = new System.Drawing.Point(249, 108);
- this.button_Read_VerInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_VerInfo.Name = "button_Read_VerInfo";
- this.button_Read_VerInfo.Size = new System.Drawing.Size(58, 59);
- this.button_Read_VerInfo.TabIndex = 2;
- this.button_Read_VerInfo.Text = "查询";
- this.button_Read_VerInfo.UseVisualStyleBackColor = true;
- this.button_Read_VerInfo.Click += new System.EventHandler(this.button_Read_VerInfo_Click);
- //
- // button_Write_SN
- //
- this.button_Write_SN.Enabled = false;
- this.button_Write_SN.Location = new System.Drawing.Point(249, 54);
- this.button_Write_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_SN.Name = "button_Write_SN";
- this.button_Write_SN.Size = new System.Drawing.Size(58, 30);
- this.button_Write_SN.TabIndex = 5;
- this.button_Write_SN.Text = "写入";
- this.button_Write_SN.UseVisualStyleBackColor = true;
- this.button_Write_SN.Click += new System.EventHandler(this.button_Write_SN_Click);
- //
- // label109
- //
- this.label109.AutoSize = true;
- this.label109.Location = new System.Drawing.Point(7, 154);
- this.label109.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label109.Name = "label109";
- this.label109.Size = new System.Drawing.Size(25, 20);
- this.label109.TabIndex = 2;
- this.label109.Text = "TE";
- //
- // label120
- //
- this.label120.AutoSize = true;
- this.label120.Location = new System.Drawing.Point(7, 128);
- this.label120.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label120.Name = "label120";
- this.label120.Size = new System.Drawing.Size(37, 20);
- this.label120.TabIndex = 2;
- this.label120.Text = "描述";
- //
- // label8
- //
- this.label8.AutoSize = true;
- this.label8.Location = new System.Drawing.Point(7, 103);
- this.label8.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label8.Name = "label8";
- this.label8.Size = new System.Drawing.Size(37, 20);
- this.label8.TabIndex = 2;
- this.label8.Text = "软件";
- //
- // label7
- //
- this.label7.AutoSize = true;
- this.label7.Location = new System.Drawing.Point(7, 77);
- this.label7.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label7.Name = "label7";
- this.label7.Size = new System.Drawing.Size(37, 20);
- this.label7.TabIndex = 2;
- this.label7.Text = "硬件";
- //
- // textBox_Firmware_Special
- //
- this.textBox_Firmware_Special.Location = new System.Drawing.Point(63, 125);
- this.textBox_Firmware_Special.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Firmware_Special.Name = "textBox_Firmware_Special";
- this.textBox_Firmware_Special.ReadOnly = true;
- this.textBox_Firmware_Special.Size = new System.Drawing.Size(180, 26);
- this.textBox_Firmware_Special.TabIndex = 2;
- this.textBox_Firmware_Special.Text = "---";
- //
- // textBox_TE_FW
- //
- this.textBox_TE_FW.Location = new System.Drawing.Point(63, 151);
- this.textBox_TE_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_TE_FW.Name = "textBox_TE_FW";
- this.textBox_TE_FW.ReadOnly = true;
- this.textBox_TE_FW.Size = new System.Drawing.Size(180, 26);
- this.textBox_TE_FW.TabIndex = 2;
- this.textBox_TE_FW.Text = "---";
- //
- // textBox_FW
- //
- this.textBox_FW.Location = new System.Drawing.Point(63, 100);
- this.textBox_FW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_FW.Name = "textBox_FW";
- this.textBox_FW.ReadOnly = true;
- this.textBox_FW.Size = new System.Drawing.Size(180, 26);
- this.textBox_FW.TabIndex = 2;
- this.textBox_FW.Text = "---";
- //
- // textBox_HW
- //
- this.textBox_HW.Location = new System.Drawing.Point(63, 74);
- this.textBox_HW.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_HW.Name = "textBox_HW";
- this.textBox_HW.ReadOnly = true;
- this.textBox_HW.Size = new System.Drawing.Size(180, 26);
- this.textBox_HW.TabIndex = 2;
- this.textBox_HW.Text = "---";
- //
- // textBox_SN
- //
- this.textBox_SN.Location = new System.Drawing.Point(63, 48);
- this.textBox_SN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_SN.Name = "textBox_SN";
- this.textBox_SN.Size = new System.Drawing.Size(180, 26);
- this.textBox_SN.TabIndex = 2;
- this.textBox_SN.Text = "---";
- //
- // textBox_Mode
- //
- this.textBox_Mode.Location = new System.Drawing.Point(63, 22);
- this.textBox_Mode.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Mode.Name = "textBox_Mode";
- this.textBox_Mode.Size = new System.Drawing.Size(180, 26);
- this.textBox_Mode.TabIndex = 2;
- this.textBox_Mode.Text = "---";
- //
- // label6
- //
- this.label6.AutoSize = true;
- this.label6.Location = new System.Drawing.Point(7, 51);
- this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label6.Name = "label6";
- this.label6.Size = new System.Drawing.Size(37, 20);
- this.label6.TabIndex = 2;
- this.label6.Text = "序列";
- //
- // groupBox10
- //
- this.groupBox10.Controls.Add(this.comboBox_SpeedSing);
- this.groupBox10.Controls.Add(this.comboBox_SerNum);
- this.groupBox10.Controls.Add(this.comboBox_NoWatch);
- this.groupBox10.Controls.Add(this.comboBox_DownDec);
- this.groupBox10.Controls.Add(this.comboBox_StartMode);
- this.groupBox10.Controls.Add(this.comboBox_Config_GasMode);
- this.groupBox10.Controls.Add(this.button_Write_Config);
- this.groupBox10.Controls.Add(this.button_Read_Config);
- this.groupBox10.Controls.Add(this.label27);
- this.groupBox10.Controls.Add(this.label26);
- this.groupBox10.Controls.Add(this.textBox_Config_SPORT_K);
- this.groupBox10.Controls.Add(this.textBox_Config_SMART_K);
- this.groupBox10.Controls.Add(this.textBox_Config_NORM_Acc);
- this.groupBox10.Controls.Add(this.textBox_Config_TURBO_Acc);
- this.groupBox10.Controls.Add(this.textBox_Config_TURBO_K);
- this.groupBox10.Controls.Add(this.textBox_Config_SPORT_Acc);
- this.groupBox10.Controls.Add(this.textBox_Config_SMART_Acc);
- this.groupBox10.Controls.Add(this.label25);
- this.groupBox10.Controls.Add(this.textBox_Config_NORM_K);
- this.groupBox10.Controls.Add(this.textBox_Config_ECO_Acc);
- this.groupBox10.Controls.Add(this.label31);
- this.groupBox10.Controls.Add(this.label30);
- this.groupBox10.Controls.Add(this.label34);
- this.groupBox10.Controls.Add(this.textBox_Config_ECO_K);
- this.groupBox10.Controls.Add(this.textBox_Config_WalkMotorSpeed);
- this.groupBox10.Controls.Add(this.textBox_Config_WheelAdj);
- this.groupBox10.Controls.Add(this.textBox_Config_WalkSpeedLimit);
- this.groupBox10.Controls.Add(this.textBox_Config_UV_Protect);
- this.groupBox10.Controls.Add(this.label29);
- this.groupBox10.Controls.Add(this.label33);
- this.groupBox10.Controls.Add(this.textBox_Config_CadenceNum);
- this.groupBox10.Controls.Add(this.textBox_Config_WheelSize);
- this.groupBox10.Controls.Add(this.textBox_Config_MaxSpeed);
- this.groupBox10.Controls.Add(this.label28);
- this.groupBox10.Controls.Add(this.label32);
- this.groupBox10.Controls.Add(this.textBox_Config_T_Alarm);
- this.groupBox10.Controls.Add(this.textBox_Config_StopTime);
- this.groupBox10.Controls.Add(this.label126);
- this.groupBox10.Controls.Add(this.label63);
- this.groupBox10.Controls.Add(this.label62);
- this.groupBox10.Controls.Add(this.label125);
- this.groupBox10.Controls.Add(this.label124);
- this.groupBox10.Controls.Add(this.label21);
- this.groupBox10.Controls.Add(this.textBox_Config_MaxCurrent);
- this.groupBox10.Controls.Add(this.textBox_Config_SpeedNum);
- this.groupBox10.Controls.Add(this.label61);
- this.groupBox10.Controls.Add(this.label20);
- this.groupBox10.Controls.Add(this.textBox_Config_Teeth_B);
- this.groupBox10.Controls.Add(this.textBox_Config_T_Protect);
- this.groupBox10.Controls.Add(this.label60);
- this.groupBox10.Controls.Add(this.label19);
- this.groupBox10.Controls.Add(this.label11);
- this.groupBox10.Controls.Add(this.label18);
- this.groupBox10.Controls.Add(this.label13);
- this.groupBox10.Controls.Add(this.label17);
- this.groupBox10.Controls.Add(this.label14);
- this.groupBox10.Controls.Add(this.label16);
- this.groupBox10.Controls.Add(this.label15);
- this.groupBox10.Controls.Add(this.label12);
- this.groupBox10.Controls.Add(this.label59);
- this.groupBox10.Controls.Add(this.label10);
- this.groupBox10.Controls.Add(this.textBox_Config_Teeth_F);
- this.groupBox10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox10.Location = new System.Drawing.Point(251, 343);
- this.groupBox10.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox10.Name = "groupBox10";
- this.groupBox10.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox10.Size = new System.Drawing.Size(325, 442);
- this.groupBox10.TabIndex = 9;
- this.groupBox10.TabStop = false;
- this.groupBox10.Text = "用户参数1";
- this.groupBox10.Visible = false;
- //
- // comboBox_SpeedSing
- //
- this.comboBox_SpeedSing.FormattingEnabled = true;
- this.comboBox_SpeedSing.Items.AddRange(new object[] {
- "传感器",
- "踏频",
- "通信"});
- this.comboBox_SpeedSing.Location = new System.Drawing.Point(251, 336);
- this.comboBox_SpeedSing.Name = "comboBox_SpeedSing";
- this.comboBox_SpeedSing.Size = new System.Drawing.Size(70, 28);
- this.comboBox_SpeedSing.TabIndex = 7;
- //
- // comboBox_SerNum
- //
- this.comboBox_SerNum.FormattingEnabled = true;
- this.comboBox_SerNum.Items.AddRange(new object[] {
- "0",
- "1",
- "2",
- "3",
- "4",
- "5",
- "6",
- "7",
- "8",
- "9",
- "10",
- "11",
- "12",
- "13",
- "14",
- "15"});
- this.comboBox_SerNum.Location = new System.Drawing.Point(80, 336);
- this.comboBox_SerNum.Name = "comboBox_SerNum";
- this.comboBox_SerNum.Size = new System.Drawing.Size(70, 28);
- this.comboBox_SerNum.TabIndex = 6;
- //
- // comboBox_NoWatch
- //
- this.comboBox_NoWatch.FormattingEnabled = true;
- this.comboBox_NoWatch.Items.AddRange(new object[] {
- "有",
- "无"});
- this.comboBox_NoWatch.Location = new System.Drawing.Point(80, 282);
- this.comboBox_NoWatch.Name = "comboBox_NoWatch";
- this.comboBox_NoWatch.Size = new System.Drawing.Size(70, 28);
- this.comboBox_NoWatch.TabIndex = 5;
- //
- // comboBox_DownDec
- //
- this.comboBox_DownDec.FormattingEnabled = true;
- this.comboBox_DownDec.Items.AddRange(new object[] {
- "超慢",
- "慢",
- "正常",
- "快",
- "超快"});
- this.comboBox_DownDec.Location = new System.Drawing.Point(80, 124);
- this.comboBox_DownDec.Name = "comboBox_DownDec";
- this.comboBox_DownDec.Size = new System.Drawing.Size(70, 28);
- this.comboBox_DownDec.TabIndex = 4;
- //
- // comboBox_StartMode
- //
- this.comboBox_StartMode.FormattingEnabled = true;
- this.comboBox_StartMode.Items.AddRange(new object[] {
- "柔和",
- "正常",
- "强劲"});
- this.comboBox_StartMode.Location = new System.Drawing.Point(80, 44);
- this.comboBox_StartMode.Name = "comboBox_StartMode";
- this.comboBox_StartMode.Size = new System.Drawing.Size(70, 28);
- this.comboBox_StartMode.TabIndex = 4;
- //
- // comboBox_Config_GasMode
- //
- this.comboBox_Config_GasMode.FormattingEnabled = true;
- this.comboBox_Config_GasMode.Items.AddRange(new object[] {
- "不支持",
- "支持"});
- this.comboBox_Config_GasMode.Location = new System.Drawing.Point(80, 16);
- this.comboBox_Config_GasMode.Name = "comboBox_Config_GasMode";
- this.comboBox_Config_GasMode.Size = new System.Drawing.Size(70, 28);
- this.comboBox_Config_GasMode.TabIndex = 4;
- //
- // button_Write_Config
- //
- this.button_Write_Config.Enabled = false;
- this.button_Write_Config.Location = new System.Drawing.Point(157, 414);
- this.button_Write_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_Config.Name = "button_Write_Config";
- this.button_Write_Config.Size = new System.Drawing.Size(67, 26);
- this.button_Write_Config.TabIndex = 2;
- this.button_Write_Config.Text = "写入";
- this.button_Write_Config.UseVisualStyleBackColor = true;
- this.button_Write_Config.Click += new System.EventHandler(this.button_Write_Config_Click);
- //
- // button_Read_Config
- //
- this.button_Read_Config.Location = new System.Drawing.Point(11, 414);
- this.button_Read_Config.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_Config.Name = "button_Read_Config";
- this.button_Read_Config.Size = new System.Drawing.Size(67, 26);
- this.button_Read_Config.TabIndex = 2;
- this.button_Read_Config.Text = "查询";
- this.button_Read_Config.UseVisualStyleBackColor = true;
- this.button_Read_Config.Click += new System.EventHandler(this.button_Read_Config_Click);
- //
- // label27
- //
- this.label27.AutoSize = true;
- this.label27.Location = new System.Drawing.Point(153, 75);
- this.label27.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label27.Name = "label27";
- this.label27.Size = new System.Drawing.Size(82, 20);
- this.label27.TabIndex = 3;
- this.label27.Text = "NORM增益";
- //
- // label26
- //
- this.label26.AutoSize = true;
- this.label26.Location = new System.Drawing.Point(153, 48);
- this.label26.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label26.Name = "label26";
- this.label26.Size = new System.Drawing.Size(65, 20);
- this.label26.TabIndex = 2;
- this.label26.Text = "ECO加速";
- //
- // textBox_Config_SPORT_K
- //
- this.textBox_Config_SPORT_K.Location = new System.Drawing.Point(251, 125);
- this.textBox_Config_SPORT_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SPORT_K.Name = "textBox_Config_SPORT_K";
- this.textBox_Config_SPORT_K.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SPORT_K.TabIndex = 2;
- //
- // textBox_Config_SMART_K
- //
- this.textBox_Config_SMART_K.Location = new System.Drawing.Point(251, 230);
- this.textBox_Config_SMART_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SMART_K.Name = "textBox_Config_SMART_K";
- this.textBox_Config_SMART_K.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SMART_K.TabIndex = 2;
- //
- // textBox_Config_NORM_Acc
- //
- this.textBox_Config_NORM_Acc.Location = new System.Drawing.Point(251, 98);
- this.textBox_Config_NORM_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_NORM_Acc.Name = "textBox_Config_NORM_Acc";
- this.textBox_Config_NORM_Acc.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_NORM_Acc.TabIndex = 2;
- //
- // textBox_Config_TURBO_Acc
- //
- this.textBox_Config_TURBO_Acc.Location = new System.Drawing.Point(251, 204);
- this.textBox_Config_TURBO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_TURBO_Acc.Name = "textBox_Config_TURBO_Acc";
- this.textBox_Config_TURBO_Acc.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_TURBO_Acc.TabIndex = 2;
- //
- // textBox_Config_TURBO_K
- //
- this.textBox_Config_TURBO_K.Location = new System.Drawing.Point(251, 178);
- this.textBox_Config_TURBO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_TURBO_K.Name = "textBox_Config_TURBO_K";
- this.textBox_Config_TURBO_K.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_TURBO_K.TabIndex = 2;
- //
- // textBox_Config_SPORT_Acc
- //
- this.textBox_Config_SPORT_Acc.Location = new System.Drawing.Point(251, 152);
- this.textBox_Config_SPORT_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SPORT_Acc.Name = "textBox_Config_SPORT_Acc";
- this.textBox_Config_SPORT_Acc.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SPORT_Acc.TabIndex = 2;
- //
- // textBox_Config_SMART_Acc
- //
- this.textBox_Config_SMART_Acc.Location = new System.Drawing.Point(251, 256);
- this.textBox_Config_SMART_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SMART_Acc.Name = "textBox_Config_SMART_Acc";
- this.textBox_Config_SMART_Acc.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SMART_Acc.TabIndex = 2;
- //
- // label25
- //
- this.label25.AutoSize = true;
- this.label25.Location = new System.Drawing.Point(153, 20);
- this.label25.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label25.Name = "label25";
- this.label25.Size = new System.Drawing.Size(65, 20);
- this.label25.TabIndex = 2;
- this.label25.Text = "ECO增益";
- //
- // textBox_Config_NORM_K
- //
- this.textBox_Config_NORM_K.Location = new System.Drawing.Point(251, 72);
- this.textBox_Config_NORM_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_NORM_K.Name = "textBox_Config_NORM_K";
- this.textBox_Config_NORM_K.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_NORM_K.TabIndex = 2;
- //
- // textBox_Config_ECO_Acc
- //
- this.textBox_Config_ECO_Acc.Location = new System.Drawing.Point(251, 45);
- this.textBox_Config_ECO_Acc.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_ECO_Acc.Name = "textBox_Config_ECO_Acc";
- this.textBox_Config_ECO_Acc.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_ECO_Acc.TabIndex = 2;
- //
- // label31
- //
- this.label31.AutoSize = true;
- this.label31.Location = new System.Drawing.Point(153, 181);
- this.label31.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label31.Name = "label31";
- this.label31.Size = new System.Drawing.Size(84, 20);
- this.label31.TabIndex = 2;
- this.label31.Text = "TURBO增益";
- //
- // label30
- //
- this.label30.AutoSize = true;
- this.label30.Location = new System.Drawing.Point(153, 155);
- this.label30.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label30.Name = "label30";
- this.label30.Size = new System.Drawing.Size(82, 20);
- this.label30.TabIndex = 2;
- this.label30.Text = "SPORT加速";
- //
- // label34
- //
- this.label34.AutoSize = true;
- this.label34.Location = new System.Drawing.Point(153, 259);
- this.label34.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label34.Name = "label34";
- this.label34.Size = new System.Drawing.Size(86, 20);
- this.label34.TabIndex = 2;
- this.label34.Text = "SMART加速";
- //
- // textBox_Config_ECO_K
- //
- this.textBox_Config_ECO_K.Location = new System.Drawing.Point(251, 17);
- this.textBox_Config_ECO_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_ECO_K.Name = "textBox_Config_ECO_K";
- this.textBox_Config_ECO_K.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_ECO_K.TabIndex = 2;
- //
- // textBox_Config_WalkMotorSpeed
- //
- this.textBox_Config_WalkMotorSpeed.Location = new System.Drawing.Point(251, 390);
- this.textBox_Config_WalkMotorSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_WalkMotorSpeed.Name = "textBox_Config_WalkMotorSpeed";
- this.textBox_Config_WalkMotorSpeed.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_WalkMotorSpeed.TabIndex = 2;
- //
- // textBox_Config_WheelAdj
- //
- this.textBox_Config_WheelAdj.Location = new System.Drawing.Point(251, 364);
- this.textBox_Config_WheelAdj.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_WheelAdj.Name = "textBox_Config_WheelAdj";
- this.textBox_Config_WheelAdj.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_WheelAdj.TabIndex = 2;
- //
- // textBox_Config_WalkSpeedLimit
- //
- this.textBox_Config_WalkSpeedLimit.Location = new System.Drawing.Point(80, 390);
- this.textBox_Config_WalkSpeedLimit.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_WalkSpeedLimit.Name = "textBox_Config_WalkSpeedLimit";
- this.textBox_Config_WalkSpeedLimit.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_WalkSpeedLimit.TabIndex = 2;
- //
- // textBox_Config_UV_Protect
- //
- this.textBox_Config_UV_Protect.Location = new System.Drawing.Point(80, 364);
- this.textBox_Config_UV_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_UV_Protect.Name = "textBox_Config_UV_Protect";
- this.textBox_Config_UV_Protect.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_UV_Protect.TabIndex = 2;
- //
- // label29
- //
- this.label29.AutoSize = true;
- this.label29.Location = new System.Drawing.Point(153, 128);
- this.label29.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label29.Name = "label29";
- this.label29.Size = new System.Drawing.Size(82, 20);
- this.label29.TabIndex = 2;
- this.label29.Text = "SPORT增益";
- //
- // label33
- //
- this.label33.AutoSize = true;
- this.label33.Location = new System.Drawing.Point(153, 233);
- this.label33.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label33.Name = "label33";
- this.label33.Size = new System.Drawing.Size(86, 20);
- this.label33.TabIndex = 2;
- this.label33.Text = "SMART增益";
- //
- // textBox_Config_CadenceNum
- //
- this.textBox_Config_CadenceNum.Location = new System.Drawing.Point(251, 310);
- this.textBox_Config_CadenceNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_CadenceNum.Name = "textBox_Config_CadenceNum";
- this.textBox_Config_CadenceNum.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_CadenceNum.TabIndex = 2;
- //
- // textBox_Config_WheelSize
- //
- this.textBox_Config_WheelSize.Location = new System.Drawing.Point(80, 310);
- this.textBox_Config_WheelSize.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_WheelSize.Name = "textBox_Config_WheelSize";
- this.textBox_Config_WheelSize.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_WheelSize.TabIndex = 2;
- //
- // textBox_Config_MaxSpeed
- //
- this.textBox_Config_MaxSpeed.Location = new System.Drawing.Point(80, 98);
- this.textBox_Config_MaxSpeed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_MaxSpeed.Name = "textBox_Config_MaxSpeed";
- this.textBox_Config_MaxSpeed.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_MaxSpeed.TabIndex = 2;
- //
- // label28
- //
- this.label28.AutoSize = true;
- this.label28.Location = new System.Drawing.Point(153, 101);
- this.label28.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label28.Name = "label28";
- this.label28.Size = new System.Drawing.Size(82, 20);
- this.label28.TabIndex = 2;
- this.label28.Text = "NORM加速";
- //
- // label32
- //
- this.label32.AutoSize = true;
- this.label32.Location = new System.Drawing.Point(153, 207);
- this.label32.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label32.Name = "label32";
- this.label32.Size = new System.Drawing.Size(84, 20);
- this.label32.TabIndex = 2;
- this.label32.Text = "TURBO加速";
- //
- // textBox_Config_T_Alarm
- //
- this.textBox_Config_T_Alarm.Location = new System.Drawing.Point(80, 230);
- this.textBox_Config_T_Alarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_T_Alarm.Name = "textBox_Config_T_Alarm";
- this.textBox_Config_T_Alarm.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_T_Alarm.TabIndex = 2;
- //
- // textBox_Config_StopTime
- //
- this.textBox_Config_StopTime.Location = new System.Drawing.Point(80, 72);
- this.textBox_Config_StopTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_StopTime.Name = "textBox_Config_StopTime";
- this.textBox_Config_StopTime.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_StopTime.TabIndex = 2;
- //
- // label126
- //
- this.label126.AutoSize = true;
- this.label126.Location = new System.Drawing.Point(153, 393);
- this.label126.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label126.Name = "label126";
- this.label126.Size = new System.Drawing.Size(65, 20);
- this.label126.TabIndex = 2;
- this.label126.Text = "推行转速";
- //
- // label63
- //
- this.label63.AutoSize = true;
- this.label63.Location = new System.Drawing.Point(153, 367);
- this.label63.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label63.Name = "label63";
- this.label63.Size = new System.Drawing.Size(79, 20);
- this.label63.TabIndex = 2;
- this.label63.Text = "轮胎微调值";
- //
- // label62
- //
- this.label62.AutoSize = true;
- this.label62.Location = new System.Drawing.Point(153, 340);
- this.label62.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label62.Name = "label62";
- this.label62.Size = new System.Drawing.Size(93, 20);
- this.label62.TabIndex = 2;
- this.label62.Text = "无速度传感器";
- //
- // label125
- //
- this.label125.AutoSize = true;
- this.label125.Location = new System.Drawing.Point(9, 393);
- this.label125.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label125.Name = "label125";
- this.label125.Size = new System.Drawing.Size(65, 20);
- this.label125.TabIndex = 2;
- this.label125.Text = "推行限速";
- //
- // label124
- //
- this.label124.AutoSize = true;
- this.label124.Location = new System.Drawing.Point(9, 367);
- this.label124.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label124.Name = "label124";
- this.label124.Size = new System.Drawing.Size(65, 20);
- this.label124.TabIndex = 2;
- this.label124.Text = "低压保护";
- //
- // label21
- //
- this.label21.AutoSize = true;
- this.label21.Location = new System.Drawing.Point(9, 340);
- this.label21.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label21.Name = "label21";
- this.label21.Size = new System.Drawing.Size(65, 20);
- this.label21.TabIndex = 2;
- this.label21.Text = "电机系列";
- //
- // textBox_Config_MaxCurrent
- //
- this.textBox_Config_MaxCurrent.Location = new System.Drawing.Point(80, 204);
- this.textBox_Config_MaxCurrent.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_MaxCurrent.Name = "textBox_Config_MaxCurrent";
- this.textBox_Config_MaxCurrent.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_MaxCurrent.TabIndex = 2;
- //
- // textBox_Config_SpeedNum
- //
- this.textBox_Config_SpeedNum.Location = new System.Drawing.Point(251, 283);
- this.textBox_Config_SpeedNum.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SpeedNum.Name = "textBox_Config_SpeedNum";
- this.textBox_Config_SpeedNum.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SpeedNum.TabIndex = 2;
- //
- // label61
- //
- this.label61.AutoSize = true;
- this.label61.Location = new System.Drawing.Point(153, 313);
- this.label61.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label61.Name = "label61";
- this.label61.Size = new System.Drawing.Size(93, 20);
- this.label61.TabIndex = 2;
- this.label61.Text = "踏频启动个数";
- //
- // label20
- //
- this.label20.AutoSize = true;
- this.label20.Location = new System.Drawing.Point(9, 313);
- this.label20.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label20.Name = "label20";
- this.label20.Size = new System.Drawing.Size(65, 20);
- this.label20.TabIndex = 2;
- this.label20.Text = "轮胎周长";
- //
- // textBox_Config_Teeth_B
- //
- this.textBox_Config_Teeth_B.Location = new System.Drawing.Point(80, 178);
- this.textBox_Config_Teeth_B.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Teeth_B.Name = "textBox_Config_Teeth_B";
- this.textBox_Config_Teeth_B.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Teeth_B.TabIndex = 2;
- //
- // textBox_Config_T_Protect
- //
- this.textBox_Config_T_Protect.Location = new System.Drawing.Point(80, 256);
- this.textBox_Config_T_Protect.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_T_Protect.Name = "textBox_Config_T_Protect";
- this.textBox_Config_T_Protect.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_T_Protect.TabIndex = 2;
- //
- // label60
- //
- this.label60.AutoSize = true;
- this.label60.Location = new System.Drawing.Point(153, 286);
- this.label60.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label60.Name = "label60";
- this.label60.Size = new System.Drawing.Size(93, 20);
- this.label60.TabIndex = 2;
- this.label60.Text = "速度信号个数";
- //
- // label19
- //
- this.label19.AutoSize = true;
- this.label19.Location = new System.Drawing.Point(9, 286);
- this.label19.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label19.Name = "label19";
- this.label19.Size = new System.Drawing.Size(51, 20);
- this.label19.TabIndex = 2;
- this.label19.Text = "无码表";
- //
- // label11
- //
- this.label11.AutoSize = true;
- this.label11.Location = new System.Drawing.Point(9, 75);
- this.label11.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label11.Name = "label11";
- this.label11.Size = new System.Drawing.Size(65, 20);
- this.label11.TabIndex = 2;
- this.label11.Text = "停机时间";
- //
- // label18
- //
- this.label18.AutoSize = true;
- this.label18.Location = new System.Drawing.Point(9, 259);
- this.label18.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label18.Name = "label18";
- this.label18.Size = new System.Drawing.Size(65, 20);
- this.label18.TabIndex = 2;
- this.label18.Text = "温度保护";
- //
- // label13
- //
- this.label13.AutoSize = true;
- this.label13.Location = new System.Drawing.Point(9, 128);
- this.label13.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label13.Name = "label13";
- this.label13.Size = new System.Drawing.Size(65, 20);
- this.label13.TabIndex = 2;
- this.label13.Text = "下降速度";
- //
- // label17
- //
- this.label17.AutoSize = true;
- this.label17.Location = new System.Drawing.Point(9, 233);
- this.label17.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label17.Name = "label17";
- this.label17.Size = new System.Drawing.Size(65, 20);
- this.label17.TabIndex = 2;
- this.label17.Text = "温度预警";
- //
- // label14
- //
- this.label14.AutoSize = true;
- this.label14.Location = new System.Drawing.Point(9, 155);
- this.label14.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label14.Name = "label14";
- this.label14.Size = new System.Drawing.Size(65, 20);
- this.label14.TabIndex = 2;
- this.label14.Text = "前飞齿数";
- //
- // label16
- //
- this.label16.AutoSize = true;
- this.label16.Location = new System.Drawing.Point(9, 207);
- this.label16.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label16.Name = "label16";
- this.label16.Size = new System.Drawing.Size(51, 20);
- this.label16.TabIndex = 2;
- this.label16.Text = "限流值";
- //
- // label15
- //
- this.label15.AutoSize = true;
- this.label15.Location = new System.Drawing.Point(9, 181);
- this.label15.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label15.Name = "label15";
- this.label15.Size = new System.Drawing.Size(65, 20);
- this.label15.TabIndex = 2;
- this.label15.Text = "后飞齿数";
- //
- // label12
- //
- this.label12.AutoSize = true;
- this.label12.Location = new System.Drawing.Point(9, 101);
- this.label12.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label12.Name = "label12";
- this.label12.Size = new System.Drawing.Size(51, 20);
- this.label12.TabIndex = 2;
- this.label12.Text = "限速值";
- //
- // label59
- //
- this.label59.AutoSize = true;
- this.label59.Location = new System.Drawing.Point(9, 20);
- this.label59.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label59.Name = "label59";
- this.label59.Size = new System.Drawing.Size(65, 20);
- this.label59.TabIndex = 2;
- this.label59.Text = "指拨模式";
- //
- // label10
- //
- this.label10.AutoSize = true;
- this.label10.Location = new System.Drawing.Point(9, 48);
- this.label10.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label10.Name = "label10";
- this.label10.Size = new System.Drawing.Size(65, 20);
- this.label10.TabIndex = 2;
- this.label10.Text = "启动模式";
- //
- // textBox_Config_Teeth_F
- //
- this.textBox_Config_Teeth_F.Location = new System.Drawing.Point(80, 152);
- this.textBox_Config_Teeth_F.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Teeth_F.Name = "textBox_Config_Teeth_F";
- this.textBox_Config_Teeth_F.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Teeth_F.TabIndex = 2;
- //
- // groupBox11
- //
- this.groupBox11.Controls.Add(this.button_Write_MotorConfig);
- this.groupBox11.Controls.Add(this.button_Read_MortoConfig);
- this.groupBox11.Controls.Add(this.textBox_Motor_Power);
- this.groupBox11.Controls.Add(this.textBox_Motor_R);
- this.groupBox11.Controls.Add(this.textBox_Motor_Speed);
- this.groupBox11.Controls.Add(this.textBox_Motor_Voltage);
- this.groupBox11.Controls.Add(this.textBox_Motor_E);
- this.groupBox11.Controls.Add(this.textBox_Motor_Lq);
- this.groupBox11.Controls.Add(this.label45);
- this.groupBox11.Controls.Add(this.textBox_Motor_Ld);
- this.groupBox11.Controls.Add(this.label53);
- this.groupBox11.Controls.Add(this.label47);
- this.groupBox11.Controls.Add(this.label51);
- this.groupBox11.Controls.Add(this.label52);
- this.groupBox11.Controls.Add(this.label49);
- this.groupBox11.Controls.Add(this.label50);
- this.groupBox11.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox11.Location = new System.Drawing.Point(753, 343);
- this.groupBox11.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox11.Name = "groupBox11";
- this.groupBox11.Padding = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.groupBox11.Size = new System.Drawing.Size(313, 176);
- this.groupBox11.TabIndex = 9;
- this.groupBox11.TabStop = false;
- this.groupBox11.Text = "马达参数";
- this.groupBox11.Visible = false;
- //
- // button_Write_MotorConfig
- //
- this.button_Write_MotorConfig.Enabled = false;
- this.button_Write_MotorConfig.Location = new System.Drawing.Point(241, 124);
- this.button_Write_MotorConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_MotorConfig.Name = "button_Write_MotorConfig";
- this.button_Write_MotorConfig.Size = new System.Drawing.Size(60, 35);
- this.button_Write_MotorConfig.TabIndex = 2;
- this.button_Write_MotorConfig.Text = "写入";
- this.button_Write_MotorConfig.UseVisualStyleBackColor = true;
- this.button_Write_MotorConfig.Click += new System.EventHandler(this.button_Write_MotorConfig_Click);
- //
- // button_Read_MortoConfig
- //
- this.button_Read_MortoConfig.Location = new System.Drawing.Point(167, 125);
- this.button_Read_MortoConfig.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_MortoConfig.Name = "button_Read_MortoConfig";
- this.button_Read_MortoConfig.Size = new System.Drawing.Size(60, 35);
- this.button_Read_MortoConfig.TabIndex = 2;
- this.button_Read_MortoConfig.Text = "查询";
- this.button_Read_MortoConfig.UseVisualStyleBackColor = true;
- this.button_Read_MortoConfig.Click += new System.EventHandler(this.button_Read_MortoConfig_Click);
- //
- // textBox_Motor_Power
- //
- this.textBox_Motor_Power.Location = new System.Drawing.Point(82, 28);
- this.textBox_Motor_Power.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_Power.Name = "textBox_Motor_Power";
- this.textBox_Motor_Power.Size = new System.Drawing.Size(70, 26);
- this.textBox_Motor_Power.TabIndex = 2;
- //
- // textBox_Motor_R
- //
- this.textBox_Motor_R.Location = new System.Drawing.Point(246, 28);
- this.textBox_Motor_R.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_R.Name = "textBox_Motor_R";
- this.textBox_Motor_R.Size = new System.Drawing.Size(55, 26);
- this.textBox_Motor_R.TabIndex = 2;
- //
- // textBox_Motor_Speed
- //
- this.textBox_Motor_Speed.Location = new System.Drawing.Point(82, 57);
- this.textBox_Motor_Speed.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_Speed.Name = "textBox_Motor_Speed";
- this.textBox_Motor_Speed.Size = new System.Drawing.Size(70, 26);
- this.textBox_Motor_Speed.TabIndex = 2;
- //
- // textBox_Motor_Voltage
- //
- this.textBox_Motor_Voltage.Location = new System.Drawing.Point(246, 86);
- this.textBox_Motor_Voltage.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_Voltage.Name = "textBox_Motor_Voltage";
- this.textBox_Motor_Voltage.Size = new System.Drawing.Size(55, 26);
- this.textBox_Motor_Voltage.TabIndex = 2;
- //
- // textBox_Motor_E
- //
- this.textBox_Motor_E.Location = new System.Drawing.Point(82, 116);
- this.textBox_Motor_E.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_E.Name = "textBox_Motor_E";
- this.textBox_Motor_E.Size = new System.Drawing.Size(70, 26);
- this.textBox_Motor_E.TabIndex = 2;
- //
- // textBox_Motor_Lq
- //
- this.textBox_Motor_Lq.Location = new System.Drawing.Point(246, 57);
- this.textBox_Motor_Lq.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_Lq.Name = "textBox_Motor_Lq";
- this.textBox_Motor_Lq.Size = new System.Drawing.Size(55, 26);
- this.textBox_Motor_Lq.TabIndex = 2;
- //
- // label45
- //
- this.label45.AutoSize = true;
- this.label45.Location = new System.Drawing.Point(9, 59);
- this.label45.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label45.Name = "label45";
- this.label45.Size = new System.Drawing.Size(65, 20);
- this.label45.TabIndex = 2;
- this.label45.Text = "额定转速";
- //
- // textBox_Motor_Ld
- //
- this.textBox_Motor_Ld.Location = new System.Drawing.Point(82, 86);
- this.textBox_Motor_Ld.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Motor_Ld.Name = "textBox_Motor_Ld";
- this.textBox_Motor_Ld.Size = new System.Drawing.Size(70, 26);
- this.textBox_Motor_Ld.TabIndex = 2;
- //
- // label53
- //
- this.label53.AutoSize = true;
- this.label53.Location = new System.Drawing.Point(9, 32);
- this.label53.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label53.Name = "label53";
- this.label53.Size = new System.Drawing.Size(65, 20);
- this.label53.TabIndex = 2;
- this.label53.Text = "额定功率";
- //
- // label47
- //
- this.label47.AutoSize = true;
- this.label47.Location = new System.Drawing.Point(169, 59);
- this.label47.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label47.Name = "label47";
- this.label47.Size = new System.Drawing.Size(53, 20);
- this.label47.TabIndex = 2;
- this.label47.Text = "定子Lq";
- //
- // label51
- //
- this.label51.AutoSize = true;
- this.label51.Location = new System.Drawing.Point(9, 118);
- this.label51.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label51.Name = "label51";
- this.label51.Size = new System.Drawing.Size(65, 20);
- this.label51.TabIndex = 2;
- this.label51.Text = "反电动势";
- //
- // label52
- //
- this.label52.AutoSize = true;
- this.label52.Location = new System.Drawing.Point(169, 32);
- this.label52.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label52.Name = "label52";
- this.label52.Size = new System.Drawing.Size(65, 20);
- this.label52.TabIndex = 2;
- this.label52.Text = "定子电阻";
- //
- // label49
- //
- this.label49.AutoSize = true;
- this.label49.Location = new System.Drawing.Point(9, 88);
- this.label49.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label49.Name = "label49";
- this.label49.Size = new System.Drawing.Size(53, 20);
- this.label49.TabIndex = 2;
- this.label49.Text = "定子Ld";
- //
- // label50
- //
- this.label50.AutoSize = true;
- this.label50.Location = new System.Drawing.Point(169, 88);
- this.label50.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label50.Name = "label50";
- this.label50.Size = new System.Drawing.Size(65, 20);
- this.label50.TabIndex = 2;
- this.label50.Text = "额定电压";
- //
- // timer1
- //
- this.timer1.Enabled = true;
- this.timer1.Interval = 20;
- this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
- //
- // groupBox4
- //
- this.groupBox4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(120)))));
- this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStop);
- this.groupBox4.Controls.Add(this.label128);
- this.groupBox4.Controls.Add(this.textBox_Config_SpeedlimitStart);
- this.groupBox4.Controls.Add(this.label129);
- this.groupBox4.Controls.Add(this.textBox_Config_Period);
- this.groupBox4.Controls.Add(this.label130);
- this.groupBox4.Controls.Add(this.textBox_Config_Pulse);
- this.groupBox4.Controls.Add(this.label131);
- this.groupBox4.Controls.Add(this.textBox_Config_SpeedAlarm);
- this.groupBox4.Controls.Add(this.label132);
- this.groupBox4.Controls.Add(this.comboBox_TailLightVol);
- this.groupBox4.Controls.Add(this.comboBox_AttiSensor);
- this.groupBox4.Controls.Add(this.comboBox_FrontLigthVol);
- this.groupBox4.Controls.Add(this.comboBox_TailLightMode);
- this.groupBox4.Controls.Add(this.button_Write_Config_Ext);
- this.groupBox4.Controls.Add(this.button_Read_Config_Ext);
- this.groupBox4.Controls.Add(this.label123);
- this.groupBox4.Controls.Add(this.label66);
- this.groupBox4.Controls.Add(this.label122);
- this.groupBox4.Controls.Add(this.label65);
- this.groupBox4.Controls.Add(this.textBox_Config_Angle_Roll);
- this.groupBox4.Controls.Add(this.label121);
- this.groupBox4.Controls.Add(this.label64);
- this.groupBox4.Controls.Add(this.textBox_Config_Angle_Pitch);
- this.groupBox4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox4.Location = new System.Drawing.Point(580, 343);
- this.groupBox4.Name = "groupBox4";
- this.groupBox4.Size = new System.Drawing.Size(168, 443);
- this.groupBox4.TabIndex = 10;
- this.groupBox4.TabStop = false;
- this.groupBox4.Text = "用户参数2";
- this.groupBox4.Visible = false;
- //
- // textBox_Config_SpeedlimitStop
- //
- this.textBox_Config_SpeedlimitStop.Location = new System.Drawing.Point(94, 290);
- this.textBox_Config_SpeedlimitStop.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SpeedlimitStop.Name = "textBox_Config_SpeedlimitStop";
- this.textBox_Config_SpeedlimitStop.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SpeedlimitStop.TabIndex = 27;
- //
- // label128
- //
- this.label128.AutoSize = true;
- this.label128.Location = new System.Drawing.Point(9, 293);
- this.label128.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label128.Name = "label128";
- this.label128.Size = new System.Drawing.Size(65, 20);
- this.label128.TabIndex = 26;
- this.label128.Text = "结束限速";
- //
- // textBox_Config_SpeedlimitStart
- //
- this.textBox_Config_SpeedlimitStart.Location = new System.Drawing.Point(94, 264);
- this.textBox_Config_SpeedlimitStart.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SpeedlimitStart.Name = "textBox_Config_SpeedlimitStart";
- this.textBox_Config_SpeedlimitStart.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SpeedlimitStart.TabIndex = 25;
- //
- // label129
- //
- this.label129.AutoSize = true;
- this.label129.Location = new System.Drawing.Point(9, 267);
- this.label129.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label129.Name = "label129";
- this.label129.Size = new System.Drawing.Size(65, 20);
- this.label129.TabIndex = 24;
- this.label129.Text = "起始限速";
- //
- // textBox_Config_Period
- //
- this.textBox_Config_Period.Location = new System.Drawing.Point(94, 238);
- this.textBox_Config_Period.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Period.Name = "textBox_Config_Period";
- this.textBox_Config_Period.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Period.TabIndex = 23;
- //
- // label130
- //
- this.label130.AutoSize = true;
- this.label130.Location = new System.Drawing.Point(9, 241);
- this.label130.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label130.Name = "label130";
- this.label130.Size = new System.Drawing.Size(65, 20);
- this.label130.TabIndex = 22;
- this.label130.Text = "尾灯周期";
- //
- // textBox_Config_Pulse
- //
- this.textBox_Config_Pulse.Location = new System.Drawing.Point(94, 212);
- this.textBox_Config_Pulse.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Pulse.Name = "textBox_Config_Pulse";
- this.textBox_Config_Pulse.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Pulse.TabIndex = 21;
- //
- // label131
- //
- this.label131.AutoSize = true;
- this.label131.Location = new System.Drawing.Point(9, 215);
- this.label131.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label131.Name = "label131";
- this.label131.Size = new System.Drawing.Size(65, 20);
- this.label131.TabIndex = 20;
- this.label131.Text = "尾灯脉宽";
- //
- // textBox_Config_SpeedAlarm
- //
- this.textBox_Config_SpeedAlarm.Location = new System.Drawing.Point(94, 186);
- this.textBox_Config_SpeedAlarm.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_SpeedAlarm.Name = "textBox_Config_SpeedAlarm";
- this.textBox_Config_SpeedAlarm.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_SpeedAlarm.TabIndex = 19;
- //
- // label132
- //
- this.label132.AutoSize = true;
- this.label132.Location = new System.Drawing.Point(9, 189);
- this.label132.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label132.Name = "label132";
- this.label132.Size = new System.Drawing.Size(65, 20);
- this.label132.TabIndex = 18;
- this.label132.Text = "报警阈值";
- //
- // comboBox_TailLightVol
- //
- this.comboBox_TailLightVol.FormattingEnabled = true;
- this.comboBox_TailLightVol.Items.AddRange(new object[] {
- "6V",
- "12V",
- "随电池",
- "硬件"});
- this.comboBox_TailLightVol.Location = new System.Drawing.Point(94, 158);
- this.comboBox_TailLightVol.Name = "comboBox_TailLightVol";
- this.comboBox_TailLightVol.Size = new System.Drawing.Size(70, 28);
- this.comboBox_TailLightVol.TabIndex = 12;
- //
- // comboBox_AttiSensor
- //
- this.comboBox_AttiSensor.FormattingEnabled = true;
- this.comboBox_AttiSensor.Items.AddRange(new object[] {
- "不支持",
- "支持"});
- this.comboBox_AttiSensor.Location = new System.Drawing.Point(94, 74);
- this.comboBox_AttiSensor.Name = "comboBox_AttiSensor";
- this.comboBox_AttiSensor.Size = new System.Drawing.Size(70, 28);
- this.comboBox_AttiSensor.TabIndex = 11;
- //
- // comboBox_FrontLigthVol
- //
- this.comboBox_FrontLigthVol.FormattingEnabled = true;
- this.comboBox_FrontLigthVol.Items.AddRange(new object[] {
- "6V",
- "12V",
- "随电池",
- "硬件"});
- this.comboBox_FrontLigthVol.Location = new System.Drawing.Point(94, 130);
- this.comboBox_FrontLigthVol.Name = "comboBox_FrontLigthVol";
- this.comboBox_FrontLigthVol.Size = new System.Drawing.Size(70, 28);
- this.comboBox_FrontLigthVol.TabIndex = 9;
- //
- // comboBox_TailLightMode
- //
- this.comboBox_TailLightMode.FormattingEnabled = true;
- this.comboBox_TailLightMode.Items.AddRange(new object[] {
- "模式1",
- "模式2",
- "模式3",
- "模式4",
- "模式5",
- "模式6"});
- this.comboBox_TailLightMode.Location = new System.Drawing.Point(94, 102);
- this.comboBox_TailLightMode.Name = "comboBox_TailLightMode";
- this.comboBox_TailLightMode.Size = new System.Drawing.Size(70, 28);
- this.comboBox_TailLightMode.TabIndex = 8;
- //
- // button_Write_Config_Ext
- //
- this.button_Write_Config_Ext.Enabled = false;
- this.button_Write_Config_Ext.Location = new System.Drawing.Point(99, 414);
- this.button_Write_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Write_Config_Ext.Name = "button_Write_Config_Ext";
- this.button_Write_Config_Ext.Size = new System.Drawing.Size(67, 26);
- this.button_Write_Config_Ext.TabIndex = 2;
- this.button_Write_Config_Ext.Text = "写入";
- this.button_Write_Config_Ext.UseVisualStyleBackColor = true;
- this.button_Write_Config_Ext.Click += new System.EventHandler(this.button_Write_Config_Ext_Click);
- //
- // button_Read_Config_Ext
- //
- this.button_Read_Config_Ext.Location = new System.Drawing.Point(10, 414);
- this.button_Read_Config_Ext.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_Config_Ext.Name = "button_Read_Config_Ext";
- this.button_Read_Config_Ext.Size = new System.Drawing.Size(67, 26);
- this.button_Read_Config_Ext.TabIndex = 2;
- this.button_Read_Config_Ext.Text = "查询";
- this.button_Read_Config_Ext.UseVisualStyleBackColor = true;
- this.button_Read_Config_Ext.Click += new System.EventHandler(this.button_Read_Config_Ext_Click);
- //
- // label123
- //
- this.label123.AutoSize = true;
- this.label123.Location = new System.Drawing.Point(9, 162);
- this.label123.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label123.Name = "label123";
- this.label123.Size = new System.Drawing.Size(65, 20);
- this.label123.TabIndex = 2;
- this.label123.Text = "尾灯电压";
- //
- // label66
- //
- this.label66.AutoSize = true;
- this.label66.Location = new System.Drawing.Point(9, 77);
- this.label66.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label66.Name = "label66";
- this.label66.Size = new System.Drawing.Size(79, 20);
- this.label66.TabIndex = 2;
- this.label66.Text = "姿态传感器";
- //
- // label122
- //
- this.label122.AutoSize = true;
- this.label122.Location = new System.Drawing.Point(9, 134);
- this.label122.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label122.Name = "label122";
- this.label122.Size = new System.Drawing.Size(65, 20);
- this.label122.TabIndex = 2;
- this.label122.Text = "前灯电压";
- //
- // label65
- //
- this.label65.AutoSize = true;
- this.label65.Location = new System.Drawing.Point(9, 51);
- this.label65.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label65.Name = "label65";
- this.label65.Size = new System.Drawing.Size(79, 20);
- this.label65.TabIndex = 2;
- this.label65.Text = "横滚角零偏";
- //
- // textBox_Config_Angle_Roll
- //
- this.textBox_Config_Angle_Roll.Location = new System.Drawing.Point(94, 48);
- this.textBox_Config_Angle_Roll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Angle_Roll.Name = "textBox_Config_Angle_Roll";
- this.textBox_Config_Angle_Roll.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Angle_Roll.TabIndex = 2;
- //
- // label121
- //
- this.label121.AutoSize = true;
- this.label121.Location = new System.Drawing.Point(9, 106);
- this.label121.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label121.Name = "label121";
- this.label121.Size = new System.Drawing.Size(65, 20);
- this.label121.TabIndex = 2;
- this.label121.Text = "尾灯模式";
- //
- // label64
- //
- this.label64.AutoSize = true;
- this.label64.Location = new System.Drawing.Point(9, 25);
- this.label64.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label64.Name = "label64";
- this.label64.Size = new System.Drawing.Size(79, 20);
- this.label64.TabIndex = 2;
- this.label64.Text = "俯仰角零偏";
- //
- // textBox_Config_Angle_Pitch
- //
- this.textBox_Config_Angle_Pitch.Location = new System.Drawing.Point(94, 22);
- this.textBox_Config_Angle_Pitch.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Config_Angle_Pitch.Name = "textBox_Config_Angle_Pitch";
- this.textBox_Config_Angle_Pitch.Size = new System.Drawing.Size(70, 26);
- this.textBox_Config_Angle_Pitch.TabIndex = 2;
- //
- // groupBox12
- //
- this.groupBox12.Controls.Add(this.checkBox_ReadRideInfo);
- this.groupBox12.Controls.Add(this.button_Read_RidedInfo);
- this.groupBox12.Controls.Add(this.label71);
- this.groupBox12.Controls.Add(this.label67);
- this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Time);
- this.groupBox12.Controls.Add(this.textBox_RideInfo_Trip_Km);
- this.groupBox12.Controls.Add(this.label68);
- this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Time);
- this.groupBox12.Controls.Add(this.label69);
- this.groupBox12.Controls.Add(this.textBox_RideInfo_ODO_Km);
- this.groupBox12.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox12.Location = new System.Drawing.Point(896, 13);
- this.groupBox12.Name = "groupBox12";
- this.groupBox12.Size = new System.Drawing.Size(170, 191);
- this.groupBox12.TabIndex = 11;
- this.groupBox12.TabStop = false;
- this.groupBox12.Text = "骑行信息";
- this.groupBox12.Visible = false;
- //
- // checkBox_ReadRideInfo
- //
- this.checkBox_ReadRideInfo.AutoSize = true;
- this.checkBox_ReadRideInfo.Location = new System.Drawing.Point(102, 155);
- this.checkBox_ReadRideInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.checkBox_ReadRideInfo.Name = "checkBox_ReadRideInfo";
- this.checkBox_ReadRideInfo.Size = new System.Drawing.Size(56, 24);
- this.checkBox_ReadRideInfo.TabIndex = 8;
- this.checkBox_ReadRideInfo.Text = "自动";
- this.checkBox_ReadRideInfo.UseVisualStyleBackColor = true;
- //
- // button_Read_RidedInfo
- //
- this.button_Read_RidedInfo.Location = new System.Drawing.Point(17, 151);
- this.button_Read_RidedInfo.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_RidedInfo.Name = "button_Read_RidedInfo";
- this.button_Read_RidedInfo.Size = new System.Drawing.Size(67, 35);
- this.button_Read_RidedInfo.TabIndex = 2;
- this.button_Read_RidedInfo.Text = "查询";
- this.button_Read_RidedInfo.UseVisualStyleBackColor = true;
- this.button_Read_RidedInfo.Click += new System.EventHandler(this.button_Read_RidedInfo_Click);
- //
- // label71
- //
- this.label71.AutoSize = true;
- this.label71.Location = new System.Drawing.Point(6, 118);
- this.label71.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label71.Name = "label71";
- this.label71.Size = new System.Drawing.Size(67, 20);
- this.label71.TabIndex = 2;
- this.label71.Text = "TRIP时间";
- //
- // label67
- //
- this.label67.AutoSize = true;
- this.label67.Location = new System.Drawing.Point(6, 88);
- this.label67.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label67.Name = "label67";
- this.label67.Size = new System.Drawing.Size(67, 20);
- this.label67.TabIndex = 2;
- this.label67.Text = "TRIP里程";
- //
- // textBox_RideInfo_Trip_Time
- //
- this.textBox_RideInfo_Trip_Time.Location = new System.Drawing.Point(79, 114);
- this.textBox_RideInfo_Trip_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RideInfo_Trip_Time.Name = "textBox_RideInfo_Trip_Time";
- this.textBox_RideInfo_Trip_Time.ReadOnly = true;
- this.textBox_RideInfo_Trip_Time.Size = new System.Drawing.Size(85, 26);
- this.textBox_RideInfo_Trip_Time.TabIndex = 2;
- //
- // textBox_RideInfo_Trip_Km
- //
- this.textBox_RideInfo_Trip_Km.Location = new System.Drawing.Point(79, 84);
- this.textBox_RideInfo_Trip_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RideInfo_Trip_Km.Name = "textBox_RideInfo_Trip_Km";
- this.textBox_RideInfo_Trip_Km.ReadOnly = true;
- this.textBox_RideInfo_Trip_Km.Size = new System.Drawing.Size(85, 26);
- this.textBox_RideInfo_Trip_Km.TabIndex = 2;
- //
- // label68
- //
- this.label68.AutoSize = true;
- this.label68.Location = new System.Drawing.Point(6, 59);
- this.label68.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label68.Name = "label68";
- this.label68.Size = new System.Drawing.Size(70, 20);
- this.label68.TabIndex = 2;
- this.label68.Text = "ODO时间";
- //
- // textBox_RideInfo_ODO_Time
- //
- this.textBox_RideInfo_ODO_Time.Location = new System.Drawing.Point(79, 55);
- this.textBox_RideInfo_ODO_Time.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RideInfo_ODO_Time.Name = "textBox_RideInfo_ODO_Time";
- this.textBox_RideInfo_ODO_Time.ReadOnly = true;
- this.textBox_RideInfo_ODO_Time.Size = new System.Drawing.Size(85, 26);
- this.textBox_RideInfo_ODO_Time.TabIndex = 2;
- //
- // label69
- //
- this.label69.AutoSize = true;
- this.label69.Location = new System.Drawing.Point(6, 30);
- this.label69.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label69.Name = "label69";
- this.label69.Size = new System.Drawing.Size(70, 20);
- this.label69.TabIndex = 2;
- this.label69.Text = "ODO里程";
- //
- // textBox_RideInfo_ODO_Km
- //
- this.textBox_RideInfo_ODO_Km.Location = new System.Drawing.Point(79, 26);
- this.textBox_RideInfo_ODO_Km.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_RideInfo_ODO_Km.Name = "textBox_RideInfo_ODO_Km";
- this.textBox_RideInfo_ODO_Km.ReadOnly = true;
- this.textBox_RideInfo_ODO_Km.Size = new System.Drawing.Size(85, 26);
- this.textBox_RideInfo_ODO_Km.TabIndex = 2;
- //
- // groupBox13
- //
- this.groupBox13.Controls.Add(this.checkBox_ReadAttitudeAngleAutoSend);
- this.groupBox13.Controls.Add(this.button_Read_AttitudeAngle);
- this.groupBox13.Controls.Add(this.label72);
- this.groupBox13.Controls.Add(this.label73);
- this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Rel);
- this.groupBox13.Controls.Add(this.textBox_Attitude_RollAngle_Abs);
- this.groupBox13.Controls.Add(this.label74);
- this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Rel);
- this.groupBox13.Controls.Add(this.label75);
- this.groupBox13.Controls.Add(this.textBox_Attitude_PitchAngle_Abs);
- this.groupBox13.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox13.Location = new System.Drawing.Point(753, 206);
- this.groupBox13.Name = "groupBox13";
- this.groupBox13.Size = new System.Drawing.Size(313, 133);
- this.groupBox13.TabIndex = 11;
- this.groupBox13.TabStop = false;
- this.groupBox13.Text = "姿态信息";
- this.groupBox13.Visible = false;
- //
- // checkBox_ReadAttitudeAngleAutoSend
- //
- this.checkBox_ReadAttitudeAngleAutoSend.AutoSize = true;
- this.checkBox_ReadAttitudeAngleAutoSend.Location = new System.Drawing.Point(243, 93);
- this.checkBox_ReadAttitudeAngleAutoSend.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.checkBox_ReadAttitudeAngleAutoSend.Name = "checkBox_ReadAttitudeAngleAutoSend";
- this.checkBox_ReadAttitudeAngleAutoSend.Size = new System.Drawing.Size(56, 24);
- this.checkBox_ReadAttitudeAngleAutoSend.TabIndex = 8;
- this.checkBox_ReadAttitudeAngleAutoSend.Text = "自动";
- this.checkBox_ReadAttitudeAngleAutoSend.UseVisualStyleBackColor = true;
- //
- // button_Read_AttitudeAngle
- //
- this.button_Read_AttitudeAngle.Location = new System.Drawing.Point(242, 40);
- this.button_Read_AttitudeAngle.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_Read_AttitudeAngle.Name = "button_Read_AttitudeAngle";
- this.button_Read_AttitudeAngle.Size = new System.Drawing.Size(55, 35);
- this.button_Read_AttitudeAngle.TabIndex = 2;
- this.button_Read_AttitudeAngle.Text = "查询";
- this.button_Read_AttitudeAngle.UseVisualStyleBackColor = true;
- this.button_Read_AttitudeAngle.Click += new System.EventHandler(this.button_Read_AttitudeAngle_Click);
- //
- // label72
- //
- this.label72.AutoSize = true;
- this.label72.Location = new System.Drawing.Point(121, 94);
- this.label72.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label72.Name = "label72";
- this.label72.Size = new System.Drawing.Size(65, 20);
- this.label72.TabIndex = 2;
- this.label72.Text = "横滚相对";
- //
- // label73
- //
- this.label73.AutoSize = true;
- this.label73.Location = new System.Drawing.Point(121, 47);
- this.label73.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label73.Name = "label73";
- this.label73.Size = new System.Drawing.Size(69, 20);
- this.label73.TabIndex = 2;
- this.label73.Text = "横滚绝对 ";
- //
- // textBox_Attitude_RollAngle_Rel
- //
- this.textBox_Attitude_RollAngle_Rel.Location = new System.Drawing.Point(194, 91);
- this.textBox_Attitude_RollAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Attitude_RollAngle_Rel.Name = "textBox_Attitude_RollAngle_Rel";
- this.textBox_Attitude_RollAngle_Rel.ReadOnly = true;
- this.textBox_Attitude_RollAngle_Rel.Size = new System.Drawing.Size(45, 26);
- this.textBox_Attitude_RollAngle_Rel.TabIndex = 2;
- //
- // textBox_Attitude_RollAngle_Abs
- //
- this.textBox_Attitude_RollAngle_Abs.Location = new System.Drawing.Point(194, 44);
- this.textBox_Attitude_RollAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Attitude_RollAngle_Abs.Name = "textBox_Attitude_RollAngle_Abs";
- this.textBox_Attitude_RollAngle_Abs.ReadOnly = true;
- this.textBox_Attitude_RollAngle_Abs.Size = new System.Drawing.Size(45, 26);
- this.textBox_Attitude_RollAngle_Abs.TabIndex = 2;
- //
- // label74
- //
- this.label74.AutoSize = true;
- this.label74.Location = new System.Drawing.Point(6, 93);
- this.label74.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label74.Name = "label74";
- this.label74.Size = new System.Drawing.Size(65, 20);
- this.label74.TabIndex = 2;
- this.label74.Text = "俯仰相对";
- //
- // textBox_Attitude_PitchAngle_Rel
- //
- this.textBox_Attitude_PitchAngle_Rel.Location = new System.Drawing.Point(74, 90);
- this.textBox_Attitude_PitchAngle_Rel.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Attitude_PitchAngle_Rel.Name = "textBox_Attitude_PitchAngle_Rel";
- this.textBox_Attitude_PitchAngle_Rel.ReadOnly = true;
- this.textBox_Attitude_PitchAngle_Rel.Size = new System.Drawing.Size(45, 26);
- this.textBox_Attitude_PitchAngle_Rel.TabIndex = 2;
- //
- // label75
- //
- this.label75.AutoSize = true;
- this.label75.Location = new System.Drawing.Point(6, 47);
- this.label75.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label75.Name = "label75";
- this.label75.Size = new System.Drawing.Size(65, 20);
- this.label75.TabIndex = 2;
- this.label75.Text = "俯仰绝对";
- //
- // textBox_Attitude_PitchAngle_Abs
- //
- this.textBox_Attitude_PitchAngle_Abs.Location = new System.Drawing.Point(74, 44);
- this.textBox_Attitude_PitchAngle_Abs.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Attitude_PitchAngle_Abs.Name = "textBox_Attitude_PitchAngle_Abs";
- this.textBox_Attitude_PitchAngle_Abs.ReadOnly = true;
- this.textBox_Attitude_PitchAngle_Abs.Size = new System.Drawing.Size(45, 26);
- this.textBox_Attitude_PitchAngle_Abs.TabIndex = 2;
- //
- // label78
- //
- this.label78.AutoSize = true;
- this.label78.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label78.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label78.Location = new System.Drawing.Point(3, 740);
- this.label78.Name = "label78";
- this.label78.Size = new System.Drawing.Size(79, 20);
- this.label78.TabIndex = 12;
- this.label78.Text = "编译时间:";
- //
- // label_BiuldTime
- //
- this.label_BiuldTime.AutoSize = true;
- this.label_BiuldTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_BiuldTime.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label_BiuldTime.Location = new System.Drawing.Point(73, 741);
- this.label_BiuldTime.Name = "label_BiuldTime";
- this.label_BiuldTime.Size = new System.Drawing.Size(18, 20);
- this.label_BiuldTime.TabIndex = 13;
- this.label_BiuldTime.Text = "V";
- //
- // label77
- //
- this.label77.AutoSize = true;
- this.label77.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label77.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label77.Location = new System.Drawing.Point(3, 763);
- this.label77.Name = "label77";
- this.label77.Size = new System.Drawing.Size(247, 20);
- this.label77.TabIndex = 12;
- this.label77.Text = "版权所有:武汉天腾动力科技有限公司";
- //
- // groupBox14
- //
- this.groupBox14.Controls.Add(this.label99);
- this.groupBox14.Controls.Add(this.button_ReadErrorLog);
- this.groupBox14.Controls.Add(this.button_ReadRunLog);
- this.groupBox14.Controls.Add(this.label96);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MIN);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MIN);
- this.groupBox14.Controls.Add(this.label98);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_MCU_MAX);
- this.groupBox14.Controls.Add(this.label97);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_Coil_MAX);
- this.groupBox14.Controls.Add(this.label95);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MIN);
- this.groupBox14.Controls.Add(this.label94);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_PCB_MAX);
- this.groupBox14.Controls.Add(this.label93);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_PBUFault);
- this.groupBox14.Controls.Add(this.label92);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_HMIFault);
- this.groupBox14.Controls.Add(this.label91);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_BMSFault);
- this.groupBox14.Controls.Add(this.label90);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_NTCFault);
- this.groupBox14.Controls.Add(this.label89);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_Phase);
- this.groupBox14.Controls.Add(this.label88);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_HallFault);
- this.groupBox14.Controls.Add(this.label87);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_TQSFault);
- this.groupBox14.Controls.Add(this.label86);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_SPSFault);
- this.groupBox14.Controls.Add(this.label85);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_OT);
- this.groupBox14.Controls.Add(this.label84);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_Lock);
- this.groupBox14.Controls.Add(this.label83);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_OV);
- this.groupBox14.Controls.Add(this.label82);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_UV);
- this.groupBox14.Controls.Add(this.label81);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_OC);
- this.groupBox14.Controls.Add(this.label80);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_RunTime);
- this.groupBox14.Controls.Add(this.label107);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_CircuitFault);
- this.groupBox14.Controls.Add(this.label106);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_TE_MCUFault);
- this.groupBox14.Controls.Add(this.label105);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_CircuitFault);
- this.groupBox14.Controls.Add(this.label104);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_VolFault);
- this.groupBox14.Controls.Add(this.label103);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_MOS_SC);
- this.groupBox14.Controls.Add(this.label102);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_GasFault);
- this.groupBox14.Controls.Add(this.label101);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_CDSFault);
- this.groupBox14.Controls.Add(this.label100);
- this.groupBox14.Controls.Add(this.textBox_Runlog2_MCUFault);
- this.groupBox14.Controls.Add(this.label79);
- this.groupBox14.Controls.Add(this.textBox_Runlog1_PowerCount);
- this.groupBox14.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox14.Location = new System.Drawing.Point(1070, 13);
- this.groupBox14.Name = "groupBox14";
- this.groupBox14.Size = new System.Drawing.Size(318, 709);
- this.groupBox14.TabIndex = 14;
- this.groupBox14.TabStop = false;
- this.groupBox14.Text = "历史信息";
- this.groupBox14.Visible = false;
- //
- // label99
- //
- this.label99.AutoSize = true;
- this.label99.Location = new System.Drawing.Point(5, 675);
- this.label99.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label99.Name = "label99";
- this.label99.Size = new System.Drawing.Size(84, 20);
- this.label99.TabIndex = 3;
- this.label99.Text = "MCU最低温";
- //
- // button_ReadErrorLog
- //
- this.button_ReadErrorLog.Location = new System.Drawing.Point(185, 663);
- this.button_ReadErrorLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ReadErrorLog.Name = "button_ReadErrorLog";
- this.button_ReadErrorLog.Size = new System.Drawing.Size(80, 35);
- this.button_ReadErrorLog.TabIndex = 2;
- this.button_ReadErrorLog.Text = "记录导出";
- this.button_ReadErrorLog.UseVisualStyleBackColor = true;
- this.button_ReadErrorLog.Click += new System.EventHandler(this.button_ReadErrorLog_Click);
- this.button_ReadErrorLog.MouseHover += new System.EventHandler(this.button_ReadErrorLog_MouseHover);
- //
- // button_ReadRunLog
- //
- this.button_ReadRunLog.Location = new System.Drawing.Point(185, 620);
- this.button_ReadRunLog.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ReadRunLog.Name = "button_ReadRunLog";
- this.button_ReadRunLog.Size = new System.Drawing.Size(80, 35);
- this.button_ReadRunLog.TabIndex = 2;
- this.button_ReadRunLog.Text = "查询";
- this.button_ReadRunLog.UseVisualStyleBackColor = true;
- this.button_ReadRunLog.Click += new System.EventHandler(this.button_ReadRunLog_Click);
- //
- // label96
- //
- this.label96.AutoSize = true;
- this.label96.Location = new System.Drawing.Point(5, 611);
- this.label96.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label96.Name = "label96";
- this.label96.Size = new System.Drawing.Size(79, 20);
- this.label96.TabIndex = 3;
- this.label96.Text = "绕组最低温";
- //
- // textBox_Runlog1_MCU_MIN
- //
- this.textBox_Runlog1_MCU_MIN.Location = new System.Drawing.Point(90, 672);
- this.textBox_Runlog1_MCU_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_MCU_MIN.Name = "textBox_Runlog1_MCU_MIN";
- this.textBox_Runlog1_MCU_MIN.ReadOnly = true;
- this.textBox_Runlog1_MCU_MIN.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_MCU_MIN.TabIndex = 4;
- //
- // textBox_Runlog1_Coil_MIN
- //
- this.textBox_Runlog1_Coil_MIN.Location = new System.Drawing.Point(90, 608);
- this.textBox_Runlog1_Coil_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_Coil_MIN.Name = "textBox_Runlog1_Coil_MIN";
- this.textBox_Runlog1_Coil_MIN.ReadOnly = true;
- this.textBox_Runlog1_Coil_MIN.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_Coil_MIN.TabIndex = 4;
- //
- // label98
- //
- this.label98.AutoSize = true;
- this.label98.Location = new System.Drawing.Point(5, 643);
- this.label98.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label98.Name = "label98";
- this.label98.Size = new System.Drawing.Size(84, 20);
- this.label98.TabIndex = 5;
- this.label98.Text = "MCU最高温";
- //
- // textBox_Runlog1_MCU_MAX
- //
- this.textBox_Runlog1_MCU_MAX.Location = new System.Drawing.Point(90, 640);
- this.textBox_Runlog1_MCU_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_MCU_MAX.Name = "textBox_Runlog1_MCU_MAX";
- this.textBox_Runlog1_MCU_MAX.ReadOnly = true;
- this.textBox_Runlog1_MCU_MAX.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_MCU_MAX.TabIndex = 6;
- //
- // label97
- //
- this.label97.AutoSize = true;
- this.label97.Location = new System.Drawing.Point(5, 579);
- this.label97.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label97.Name = "label97";
- this.label97.Size = new System.Drawing.Size(79, 20);
- this.label97.TabIndex = 5;
- this.label97.Text = "绕组最高温";
- //
- // textBox_Runlog1_Coil_MAX
- //
- this.textBox_Runlog1_Coil_MAX.Location = new System.Drawing.Point(90, 575);
- this.textBox_Runlog1_Coil_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_Coil_MAX.Name = "textBox_Runlog1_Coil_MAX";
- this.textBox_Runlog1_Coil_MAX.ReadOnly = true;
- this.textBox_Runlog1_Coil_MAX.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_Coil_MAX.TabIndex = 6;
- //
- // label95
- //
- this.label95.AutoSize = true;
- this.label95.Location = new System.Drawing.Point(5, 547);
- this.label95.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label95.Name = "label95";
- this.label95.Size = new System.Drawing.Size(78, 20);
- this.label95.TabIndex = 2;
- this.label95.Text = "PCB最低温";
- //
- // textBox_Runlog1_PCB_MIN
- //
- this.textBox_Runlog1_PCB_MIN.Location = new System.Drawing.Point(90, 543);
- this.textBox_Runlog1_PCB_MIN.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_PCB_MIN.Name = "textBox_Runlog1_PCB_MIN";
- this.textBox_Runlog1_PCB_MIN.ReadOnly = true;
- this.textBox_Runlog1_PCB_MIN.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_PCB_MIN.TabIndex = 2;
- //
- // label94
- //
- this.label94.AutoSize = true;
- this.label94.Location = new System.Drawing.Point(5, 515);
- this.label94.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label94.Name = "label94";
- this.label94.Size = new System.Drawing.Size(78, 20);
- this.label94.TabIndex = 2;
- this.label94.Text = "PCB最高温";
- //
- // textBox_Runlog1_PCB_MAX
- //
- this.textBox_Runlog1_PCB_MAX.Location = new System.Drawing.Point(90, 511);
- this.textBox_Runlog1_PCB_MAX.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_PCB_MAX.Name = "textBox_Runlog1_PCB_MAX";
- this.textBox_Runlog1_PCB_MAX.ReadOnly = true;
- this.textBox_Runlog1_PCB_MAX.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_PCB_MAX.TabIndex = 2;
- //
- // label93
- //
- this.label93.AutoSize = true;
- this.label93.Location = new System.Drawing.Point(6, 483);
- this.label93.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label93.Name = "label93";
- this.label93.Size = new System.Drawing.Size(79, 20);
- this.label93.TabIndex = 2;
- this.label93.Text = "PBU未授权";
- //
- // textBox_Runlog1_PBUFault
- //
- this.textBox_Runlog1_PBUFault.Location = new System.Drawing.Point(90, 479);
- this.textBox_Runlog1_PBUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_PBUFault.Name = "textBox_Runlog1_PBUFault";
- this.textBox_Runlog1_PBUFault.ReadOnly = true;
- this.textBox_Runlog1_PBUFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_PBUFault.TabIndex = 2;
- //
- // label92
- //
- this.label92.AutoSize = true;
- this.label92.Location = new System.Drawing.Point(6, 451);
- this.label92.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label92.Name = "label92";
- this.label92.Size = new System.Drawing.Size(80, 20);
- this.label92.TabIndex = 2;
- this.label92.Text = "HMI未授权";
- //
- // textBox_Runlog1_HMIFault
- //
- this.textBox_Runlog1_HMIFault.Location = new System.Drawing.Point(90, 448);
- this.textBox_Runlog1_HMIFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_HMIFault.Name = "textBox_Runlog1_HMIFault";
- this.textBox_Runlog1_HMIFault.ReadOnly = true;
- this.textBox_Runlog1_HMIFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_HMIFault.TabIndex = 2;
- //
- // label91
- //
- this.label91.AutoSize = true;
- this.label91.Location = new System.Drawing.Point(6, 419);
- this.label91.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label91.Name = "label91";
- this.label91.Size = new System.Drawing.Size(82, 20);
- this.label91.TabIndex = 2;
- this.label91.Text = "BMS未授权";
- //
- // textBox_Runlog1_BMSFault
- //
- this.textBox_Runlog1_BMSFault.Location = new System.Drawing.Point(90, 416);
- this.textBox_Runlog1_BMSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_BMSFault.Name = "textBox_Runlog1_BMSFault";
- this.textBox_Runlog1_BMSFault.ReadOnly = true;
- this.textBox_Runlog1_BMSFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_BMSFault.TabIndex = 2;
- //
- // label90
- //
- this.label90.AutoSize = true;
- this.label90.Location = new System.Drawing.Point(5, 387);
- this.label90.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label90.Name = "label90";
- this.label90.Size = new System.Drawing.Size(65, 20);
- this.label90.TabIndex = 2;
- this.label90.Text = "NTC故障";
- //
- // textBox_Runlog1_NTCFault
- //
- this.textBox_Runlog1_NTCFault.Location = new System.Drawing.Point(90, 384);
- this.textBox_Runlog1_NTCFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_NTCFault.Name = "textBox_Runlog1_NTCFault";
- this.textBox_Runlog1_NTCFault.ReadOnly = true;
- this.textBox_Runlog1_NTCFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_NTCFault.TabIndex = 2;
- //
- // label89
- //
- this.label89.AutoSize = true;
- this.label89.Location = new System.Drawing.Point(5, 355);
- this.label89.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label89.Name = "label89";
- this.label89.Size = new System.Drawing.Size(65, 20);
- this.label89.TabIndex = 2;
- this.label89.Text = "马达缺相";
- //
- // textBox_Runlog1_Phase
- //
- this.textBox_Runlog1_Phase.Location = new System.Drawing.Point(90, 352);
- this.textBox_Runlog1_Phase.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_Phase.Name = "textBox_Runlog1_Phase";
- this.textBox_Runlog1_Phase.ReadOnly = true;
- this.textBox_Runlog1_Phase.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_Phase.TabIndex = 2;
- //
- // label88
- //
- this.label88.AutoSize = true;
- this.label88.Location = new System.Drawing.Point(5, 323);
- this.label88.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label88.Name = "label88";
- this.label88.Size = new System.Drawing.Size(65, 20);
- this.label88.TabIndex = 2;
- this.label88.Text = "霍尔故障";
- //
- // textBox_Runlog1_HallFault
- //
- this.textBox_Runlog1_HallFault.Location = new System.Drawing.Point(90, 320);
- this.textBox_Runlog1_HallFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_HallFault.Name = "textBox_Runlog1_HallFault";
- this.textBox_Runlog1_HallFault.ReadOnly = true;
- this.textBox_Runlog1_HallFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_HallFault.TabIndex = 2;
- //
- // label87
- //
- this.label87.AutoSize = true;
- this.label87.Location = new System.Drawing.Point(5, 291);
- this.label87.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label87.Name = "label87";
- this.label87.Size = new System.Drawing.Size(64, 20);
- this.label87.TabIndex = 2;
- this.label87.Text = "TQS故障";
- //
- // textBox_Runlog1_TQSFault
- //
- this.textBox_Runlog1_TQSFault.Location = new System.Drawing.Point(90, 288);
- this.textBox_Runlog1_TQSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_TQSFault.Name = "textBox_Runlog1_TQSFault";
- this.textBox_Runlog1_TQSFault.ReadOnly = true;
- this.textBox_Runlog1_TQSFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_TQSFault.TabIndex = 2;
- //
- // label86
- //
- this.label86.AutoSize = true;
- this.label86.Location = new System.Drawing.Point(5, 259);
- this.label86.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label86.Name = "label86";
- this.label86.Size = new System.Drawing.Size(62, 20);
- this.label86.TabIndex = 2;
- this.label86.Text = "SPS故障";
- //
- // textBox_Runlog1_SPSFault
- //
- this.textBox_Runlog1_SPSFault.Location = new System.Drawing.Point(90, 256);
- this.textBox_Runlog1_SPSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_SPSFault.Name = "textBox_Runlog1_SPSFault";
- this.textBox_Runlog1_SPSFault.ReadOnly = true;
- this.textBox_Runlog1_SPSFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_SPSFault.TabIndex = 2;
- //
- // label85
- //
- this.label85.AutoSize = true;
- this.label85.Location = new System.Drawing.Point(5, 227);
- this.label85.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label85.Name = "label85";
- this.label85.Size = new System.Drawing.Size(65, 20);
- this.label85.TabIndex = 2;
- this.label85.Text = "过热保护";
- //
- // textBox_Runlog1_OT
- //
- this.textBox_Runlog1_OT.Location = new System.Drawing.Point(90, 224);
- this.textBox_Runlog1_OT.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_OT.Name = "textBox_Runlog1_OT";
- this.textBox_Runlog1_OT.ReadOnly = true;
- this.textBox_Runlog1_OT.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_OT.TabIndex = 2;
- //
- // label84
- //
- this.label84.AutoSize = true;
- this.label84.Location = new System.Drawing.Point(5, 195);
- this.label84.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label84.Name = "label84";
- this.label84.Size = new System.Drawing.Size(65, 20);
- this.label84.TabIndex = 2;
- this.label84.Text = "堵转保护";
- //
- // textBox_Runlog1_Lock
- //
- this.textBox_Runlog1_Lock.Location = new System.Drawing.Point(90, 192);
- this.textBox_Runlog1_Lock.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_Lock.Name = "textBox_Runlog1_Lock";
- this.textBox_Runlog1_Lock.ReadOnly = true;
- this.textBox_Runlog1_Lock.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_Lock.TabIndex = 2;
- //
- // label83
- //
- this.label83.AutoSize = true;
- this.label83.Location = new System.Drawing.Point(5, 163);
- this.label83.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label83.Name = "label83";
- this.label83.Size = new System.Drawing.Size(65, 20);
- this.label83.TabIndex = 2;
- this.label83.Text = "过压保护";
- //
- // textBox_Runlog1_OV
- //
- this.textBox_Runlog1_OV.Location = new System.Drawing.Point(90, 160);
- this.textBox_Runlog1_OV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_OV.Name = "textBox_Runlog1_OV";
- this.textBox_Runlog1_OV.ReadOnly = true;
- this.textBox_Runlog1_OV.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_OV.TabIndex = 2;
- //
- // label82
- //
- this.label82.AutoSize = true;
- this.label82.Location = new System.Drawing.Point(5, 131);
- this.label82.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label82.Name = "label82";
- this.label82.Size = new System.Drawing.Size(65, 20);
- this.label82.TabIndex = 2;
- this.label82.Text = "低压保护";
- //
- // textBox_Runlog1_UV
- //
- this.textBox_Runlog1_UV.Location = new System.Drawing.Point(90, 128);
- this.textBox_Runlog1_UV.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_UV.Name = "textBox_Runlog1_UV";
- this.textBox_Runlog1_UV.ReadOnly = true;
- this.textBox_Runlog1_UV.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_UV.TabIndex = 2;
- //
- // label81
- //
- this.label81.AutoSize = true;
- this.label81.Location = new System.Drawing.Point(5, 99);
- this.label81.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label81.Name = "label81";
- this.label81.Size = new System.Drawing.Size(65, 20);
- this.label81.TabIndex = 2;
- this.label81.Text = "过流保护";
- //
- // textBox_Runlog1_OC
- //
- this.textBox_Runlog1_OC.Location = new System.Drawing.Point(90, 96);
- this.textBox_Runlog1_OC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_OC.Name = "textBox_Runlog1_OC";
- this.textBox_Runlog1_OC.ReadOnly = true;
- this.textBox_Runlog1_OC.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_OC.TabIndex = 2;
- //
- // label80
- //
- this.label80.AutoSize = true;
- this.label80.Location = new System.Drawing.Point(5, 67);
- this.label80.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label80.Name = "label80";
- this.label80.Size = new System.Drawing.Size(65, 20);
- this.label80.TabIndex = 2;
- this.label80.Text = "使用时间";
- //
- // textBox_Runlog1_RunTime
- //
- this.textBox_Runlog1_RunTime.Location = new System.Drawing.Point(90, 64);
- this.textBox_Runlog1_RunTime.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_RunTime.Name = "textBox_Runlog1_RunTime";
- this.textBox_Runlog1_RunTime.ReadOnly = true;
- this.textBox_Runlog1_RunTime.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_RunTime.TabIndex = 2;
- //
- // label107
- //
- this.label107.AutoSize = true;
- this.label107.Location = new System.Drawing.Point(152, 259);
- this.label107.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label107.Name = "label107";
- this.label107.Size = new System.Drawing.Size(81, 20);
- this.label107.TabIndex = 2;
- this.label107.Text = "TE电路故障";
- //
- // textBox_Runlog2_TE_CircuitFault
- //
- this.textBox_Runlog2_TE_CircuitFault.Location = new System.Drawing.Point(247, 256);
- this.textBox_Runlog2_TE_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_TE_CircuitFault.Name = "textBox_Runlog2_TE_CircuitFault";
- this.textBox_Runlog2_TE_CircuitFault.ReadOnly = true;
- this.textBox_Runlog2_TE_CircuitFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_TE_CircuitFault.TabIndex = 2;
- //
- // label106
- //
- this.label106.AutoSize = true;
- this.label106.Location = new System.Drawing.Point(152, 227);
- this.label106.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label106.Name = "label106";
- this.label106.Size = new System.Drawing.Size(92, 20);
- this.label106.TabIndex = 2;
- this.label106.Text = "TE_MCU故障";
- //
- // textBox_Runlog2_TE_MCUFault
- //
- this.textBox_Runlog2_TE_MCUFault.Location = new System.Drawing.Point(247, 224);
- this.textBox_Runlog2_TE_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_TE_MCUFault.Name = "textBox_Runlog2_TE_MCUFault";
- this.textBox_Runlog2_TE_MCUFault.ReadOnly = true;
- this.textBox_Runlog2_TE_MCUFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_TE_MCUFault.TabIndex = 2;
- //
- // label105
- //
- this.label105.AutoSize = true;
- this.label105.Location = new System.Drawing.Point(152, 195);
- this.label105.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label105.Name = "label105";
- this.label105.Size = new System.Drawing.Size(65, 20);
- this.label105.TabIndex = 2;
- this.label105.Text = "电路故障";
- //
- // textBox_Runlog2_CircuitFault
- //
- this.textBox_Runlog2_CircuitFault.Location = new System.Drawing.Point(247, 192);
- this.textBox_Runlog2_CircuitFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_CircuitFault.Name = "textBox_Runlog2_CircuitFault";
- this.textBox_Runlog2_CircuitFault.ReadOnly = true;
- this.textBox_Runlog2_CircuitFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_CircuitFault.TabIndex = 2;
- //
- // label104
- //
- this.label104.AutoSize = true;
- this.label104.Location = new System.Drawing.Point(152, 163);
- this.label104.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label104.Name = "label104";
- this.label104.Size = new System.Drawing.Size(65, 20);
- this.label104.TabIndex = 2;
- this.label104.Text = "电压异常";
- //
- // textBox_Runlog2_VolFault
- //
- this.textBox_Runlog2_VolFault.Location = new System.Drawing.Point(247, 160);
- this.textBox_Runlog2_VolFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_VolFault.Name = "textBox_Runlog2_VolFault";
- this.textBox_Runlog2_VolFault.ReadOnly = true;
- this.textBox_Runlog2_VolFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_VolFault.TabIndex = 2;
- //
- // label103
- //
- this.label103.AutoSize = true;
- this.label103.Location = new System.Drawing.Point(152, 132);
- this.label103.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label103.Name = "label103";
- this.label103.Size = new System.Drawing.Size(70, 20);
- this.label103.TabIndex = 2;
- this.label103.Text = "MOS短路";
- //
- // textBox_Runlog2_MOS_SC
- //
- this.textBox_Runlog2_MOS_SC.Location = new System.Drawing.Point(247, 128);
- this.textBox_Runlog2_MOS_SC.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_MOS_SC.Name = "textBox_Runlog2_MOS_SC";
- this.textBox_Runlog2_MOS_SC.ReadOnly = true;
- this.textBox_Runlog2_MOS_SC.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_MOS_SC.TabIndex = 2;
- //
- // label102
- //
- this.label102.AutoSize = true;
- this.label102.Location = new System.Drawing.Point(152, 101);
- this.label102.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label102.Name = "label102";
- this.label102.Size = new System.Drawing.Size(65, 20);
- this.label102.TabIndex = 2;
- this.label102.Text = "GAS故障";
- //
- // textBox_Runlog2_GasFault
- //
- this.textBox_Runlog2_GasFault.Location = new System.Drawing.Point(247, 96);
- this.textBox_Runlog2_GasFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_GasFault.Name = "textBox_Runlog2_GasFault";
- this.textBox_Runlog2_GasFault.ReadOnly = true;
- this.textBox_Runlog2_GasFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_GasFault.TabIndex = 2;
- //
- // label101
- //
- this.label101.AutoSize = true;
- this.label101.Location = new System.Drawing.Point(152, 68);
- this.label101.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label101.Name = "label101";
- this.label101.Size = new System.Drawing.Size(65, 20);
- this.label101.TabIndex = 2;
- this.label101.Text = "CDS故障";
- //
- // textBox_Runlog2_CDSFault
- //
- this.textBox_Runlog2_CDSFault.Location = new System.Drawing.Point(247, 64);
- this.textBox_Runlog2_CDSFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_CDSFault.Name = "textBox_Runlog2_CDSFault";
- this.textBox_Runlog2_CDSFault.ReadOnly = true;
- this.textBox_Runlog2_CDSFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_CDSFault.TabIndex = 2;
- //
- // label100
- //
- this.label100.AutoSize = true;
- this.label100.Location = new System.Drawing.Point(152, 37);
- this.label100.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label100.Name = "label100";
- this.label100.Size = new System.Drawing.Size(70, 20);
- this.label100.TabIndex = 2;
- this.label100.Text = "MCU故障";
- //
- // textBox_Runlog2_MCUFault
- //
- this.textBox_Runlog2_MCUFault.Location = new System.Drawing.Point(247, 32);
- this.textBox_Runlog2_MCUFault.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog2_MCUFault.Name = "textBox_Runlog2_MCUFault";
- this.textBox_Runlog2_MCUFault.ReadOnly = true;
- this.textBox_Runlog2_MCUFault.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog2_MCUFault.TabIndex = 2;
- //
- // label79
- //
- this.label79.AutoSize = true;
- this.label79.Location = new System.Drawing.Point(5, 35);
- this.label79.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label79.Name = "label79";
- this.label79.Size = new System.Drawing.Size(65, 20);
- this.label79.TabIndex = 2;
- this.label79.Text = "开机次数";
- //
- // textBox_Runlog1_PowerCount
- //
- this.textBox_Runlog1_PowerCount.Location = new System.Drawing.Point(90, 32);
- this.textBox_Runlog1_PowerCount.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Runlog1_PowerCount.Name = "textBox_Runlog1_PowerCount";
- this.textBox_Runlog1_PowerCount.ReadOnly = true;
- this.textBox_Runlog1_PowerCount.Size = new System.Drawing.Size(60, 26);
- this.textBox_Runlog1_PowerCount.TabIndex = 2;
- //
- // label108
- //
- this.label108.AutoSize = true;
- this.label108.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label108.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label108.Location = new System.Drawing.Point(3, 717);
- this.label108.Name = "label108";
- this.label108.Size = new System.Drawing.Size(79, 20);
- this.label108.TabIndex = 12;
- this.label108.Text = "系统时钟:";
- //
- // label_DateTime
- //
- this.label_DateTime.AutoSize = true;
- this.label_DateTime.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label_DateTime.ForeColor = System.Drawing.SystemColors.ControlText;
- this.label_DateTime.Location = new System.Drawing.Point(74, 718);
- this.label_DateTime.Name = "label_DateTime";
- this.label_DateTime.Size = new System.Drawing.Size(18, 20);
- this.label_DateTime.TabIndex = 13;
- this.label_DateTime.Text = "V";
- //
- // timer2
- //
- this.timer2.Enabled = true;
- this.timer2.Interval = 200;
- this.timer2.Tick += new System.EventHandler(this.timer2_Tick);
- //
- // button_DataExport
- //
- this.button_DataExport.BackColor = System.Drawing.Color.Yellow;
- this.button_DataExport.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.button_DataExport.ForeColor = System.Drawing.SystemColors.ControlText;
- this.button_DataExport.Location = new System.Drawing.Point(134, 20);
- this.button_DataExport.Name = "button_DataExport";
- this.button_DataExport.Size = new System.Drawing.Size(96, 43);
- this.button_DataExport.TabIndex = 15;
- this.button_DataExport.Text = "页面存储";
- this.button_DataExport.UseVisualStyleBackColor = false;
- this.button_DataExport.Click += new System.EventHandler(this.button_DataExport_Click);
- this.button_DataExport.MouseHover += new System.EventHandler(this.button_DataExport_MouseHover);
- //
- // groupBox15
- //
- this.groupBox15.Controls.Add(this.button_DataExport);
- this.groupBox15.Controls.Add(this.checkBox_ReadTorqueData);
- this.groupBox15.Controls.Add(this.checkBox_Savedata);
- this.groupBox15.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox15.Location = new System.Drawing.Point(7, 131);
- this.groupBox15.Name = "groupBox15";
- this.groupBox15.Size = new System.Drawing.Size(239, 73);
- this.groupBox15.TabIndex = 16;
- this.groupBox15.TabStop = false;
- this.groupBox15.Text = "测试记录";
- this.groupBox15.Visible = false;
- //
- // groupBox16
- //
- this.groupBox16.Controls.Add(this.trackBar_MotorSpeedSet);
- this.groupBox16.Controls.Add(this.label_MotorSpeedSet);
- this.groupBox16.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox16.Location = new System.Drawing.Point(753, 523);
- this.groupBox16.Name = "groupBox16";
- this.groupBox16.Size = new System.Drawing.Size(313, 76);
- this.groupBox16.TabIndex = 17;
- this.groupBox16.TabStop = false;
- this.groupBox16.Text = "马达转速调节";
- this.groupBox16.Visible = false;
- //
- // trackBar_MotorSpeedSet
- //
- this.trackBar_MotorSpeedSet.LargeChange = 1;
- this.trackBar_MotorSpeedSet.Location = new System.Drawing.Point(6, 25);
- this.trackBar_MotorSpeedSet.Maximum = 100;
- this.trackBar_MotorSpeedSet.Minimum = 5;
- this.trackBar_MotorSpeedSet.Name = "trackBar_MotorSpeedSet";
- this.trackBar_MotorSpeedSet.Size = new System.Drawing.Size(237, 45);
- this.trackBar_MotorSpeedSet.TabIndex = 0;
- this.trackBar_MotorSpeedSet.Value = 100;
- this.trackBar_MotorSpeedSet.Scroll += new System.EventHandler(this.trackBar_MotorSpeedSet_Scroll);
- //
- // label_MotorSpeedSet
- //
- this.label_MotorSpeedSet.AutoSize = true;
- this.label_MotorSpeedSet.Location = new System.Drawing.Point(262, 33);
- this.label_MotorSpeedSet.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label_MotorSpeedSet.Name = "label_MotorSpeedSet";
- this.label_MotorSpeedSet.Size = new System.Drawing.Size(45, 20);
- this.label_MotorSpeedSet.TabIndex = 2;
- this.label_MotorSpeedSet.Text = "100%";
- //
- // groupBox17
- //
- this.groupBox17.Controls.Add(this.checkBox_Sensor3);
- this.groupBox17.Controls.Add(this.checkBox_Sensor2);
- this.groupBox17.Controls.Add(this.checkBox_Sensor1);
- this.groupBox17.Controls.Add(this.label115);
- this.groupBox17.Controls.Add(this.button_WriteK);
- this.groupBox17.Controls.Add(this.button_ReadZero);
- this.groupBox17.Controls.Add(this.label5);
- this.groupBox17.Controls.Add(this.textBox_Sensor3_K);
- this.groupBox17.Controls.Add(this.textBox_Sensor2_K);
- this.groupBox17.Controls.Add(this.label119);
- this.groupBox17.Controls.Add(this.label118);
- this.groupBox17.Controls.Add(this.label117);
- this.groupBox17.Controls.Add(this.label116);
- this.groupBox17.Controls.Add(this.textBox_Sensor1_K);
- this.groupBox17.Controls.Add(this.textBox_Sensor3_Zero);
- this.groupBox17.Controls.Add(this.textBox_Sensor2_Zero);
- this.groupBox17.Controls.Add(this.textBox_Sensor1_Zero);
- this.groupBox17.Controls.Add(this.textBox_Sensor3_Std);
- this.groupBox17.Controls.Add(this.textBox_Sensor2_Std);
- this.groupBox17.Controls.Add(this.textBox_Sensor1_Std);
- this.groupBox17.Controls.Add(this.textBox_Sensor3_Avg);
- this.groupBox17.Controls.Add(this.label3);
- this.groupBox17.Controls.Add(this.textBox_Sensor2_Avg);
- this.groupBox17.Controls.Add(this.textBox_Sensor1_Avg);
- this.groupBox17.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.groupBox17.Location = new System.Drawing.Point(251, 207);
- this.groupBox17.Name = "groupBox17";
- this.groupBox17.Size = new System.Drawing.Size(497, 133);
- this.groupBox17.TabIndex = 18;
- this.groupBox17.TabStop = false;
- this.groupBox17.Text = "传感器采集";
- this.groupBox17.Visible = false;
- //
- // checkBox_Sensor3
- //
- this.checkBox_Sensor3.AutoSize = true;
- this.checkBox_Sensor3.Location = new System.Drawing.Point(315, 100);
- this.checkBox_Sensor3.Name = "checkBox_Sensor3";
- this.checkBox_Sensor3.Size = new System.Drawing.Size(56, 24);
- this.checkBox_Sensor3.TabIndex = 5;
- this.checkBox_Sensor3.Text = "选择";
- this.checkBox_Sensor3.UseVisualStyleBackColor = true;
- //
- // checkBox_Sensor2
- //
- this.checkBox_Sensor2.AutoSize = true;
- this.checkBox_Sensor2.Location = new System.Drawing.Point(315, 71);
- this.checkBox_Sensor2.Name = "checkBox_Sensor2";
- this.checkBox_Sensor2.Size = new System.Drawing.Size(56, 24);
- this.checkBox_Sensor2.TabIndex = 5;
- this.checkBox_Sensor2.Text = "选择";
- this.checkBox_Sensor2.UseVisualStyleBackColor = true;
- //
- // checkBox_Sensor1
- //
- this.checkBox_Sensor1.AutoSize = true;
- this.checkBox_Sensor1.Location = new System.Drawing.Point(315, 42);
- this.checkBox_Sensor1.Name = "checkBox_Sensor1";
- this.checkBox_Sensor1.Size = new System.Drawing.Size(56, 24);
- this.checkBox_Sensor1.TabIndex = 5;
- this.checkBox_Sensor1.Text = "选择";
- this.checkBox_Sensor1.UseVisualStyleBackColor = true;
- //
- // label115
- //
- this.label115.AutoSize = true;
- this.label115.Location = new System.Drawing.Point(7, 101);
- this.label115.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label115.Name = "label115";
- this.label115.Size = new System.Drawing.Size(59, 20);
- this.label115.TabIndex = 2;
- this.label115.Text = "传感器3";
- //
- // button_WriteK
- //
- this.button_WriteK.Enabled = false;
- this.button_WriteK.Location = new System.Drawing.Point(385, 89);
- this.button_WriteK.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_WriteK.Name = "button_WriteK";
- this.button_WriteK.Size = new System.Drawing.Size(90, 35);
- this.button_WriteK.TabIndex = 4;
- this.button_WriteK.Text = "写入系数";
- this.button_WriteK.UseVisualStyleBackColor = true;
- this.button_WriteK.Click += new System.EventHandler(this.button_WriteK_Click);
- //
- // button_ReadZero
- //
- this.button_ReadZero.Location = new System.Drawing.Point(385, 40);
- this.button_ReadZero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ReadZero.Name = "button_ReadZero";
- this.button_ReadZero.Size = new System.Drawing.Size(90, 35);
- this.button_ReadZero.TabIndex = 4;
- this.button_ReadZero.Text = "查询";
- this.button_ReadZero.UseVisualStyleBackColor = true;
- this.button_ReadZero.Click += new System.EventHandler(this.button_ReadZero_Click);
- //
- // label5
- //
- this.label5.AutoSize = true;
- this.label5.Location = new System.Drawing.Point(7, 74);
- this.label5.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label5.Name = "label5";
- this.label5.Size = new System.Drawing.Size(59, 20);
- this.label5.TabIndex = 2;
- this.label5.Text = "传感器2";
- //
- // textBox_Sensor3_K
- //
- this.textBox_Sensor3_K.Location = new System.Drawing.Point(260, 98);
- this.textBox_Sensor3_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor3_K.Name = "textBox_Sensor3_K";
- this.textBox_Sensor3_K.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor3_K.TabIndex = 2;
- //
- // textBox_Sensor2_K
- //
- this.textBox_Sensor2_K.Location = new System.Drawing.Point(260, 71);
- this.textBox_Sensor2_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor2_K.Name = "textBox_Sensor2_K";
- this.textBox_Sensor2_K.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor2_K.TabIndex = 2;
- //
- // label119
- //
- this.label119.AutoSize = true;
- this.label119.Location = new System.Drawing.Point(253, 21);
- this.label119.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label119.Name = "label119";
- this.label119.Size = new System.Drawing.Size(65, 20);
- this.label119.TabIndex = 2;
- this.label119.Text = "校正系数";
- this.label119.DoubleClick += new System.EventHandler(this.label119_DoubleClick);
- this.label119.MouseHover += new System.EventHandler(this.label119_MouseHover);
- //
- // label118
- //
- this.label118.AutoSize = true;
- this.label118.Location = new System.Drawing.Point(198, 21);
- this.label118.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label118.Name = "label118";
- this.label118.Size = new System.Drawing.Size(51, 20);
- this.label118.TabIndex = 2;
- this.label118.Text = "零点值";
- //
- // label117
- //
- this.label117.AutoSize = true;
- this.label117.Location = new System.Drawing.Point(138, 21);
- this.label117.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label117.Name = "label117";
- this.label117.Size = new System.Drawing.Size(51, 20);
- this.label117.TabIndex = 2;
- this.label117.Text = "标准差";
- //
- // label116
- //
- this.label116.AutoSize = true;
- this.label116.Location = new System.Drawing.Point(76, 21);
- this.label116.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label116.Name = "label116";
- this.label116.Size = new System.Drawing.Size(51, 20);
- this.label116.TabIndex = 2;
- this.label116.Text = "平均值";
- //
- // textBox_Sensor1_K
- //
- this.textBox_Sensor1_K.Location = new System.Drawing.Point(260, 44);
- this.textBox_Sensor1_K.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor1_K.Name = "textBox_Sensor1_K";
- this.textBox_Sensor1_K.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor1_K.TabIndex = 2;
- //
- // textBox_Sensor3_Zero
- //
- this.textBox_Sensor3_Zero.Location = new System.Drawing.Point(199, 98);
- this.textBox_Sensor3_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor3_Zero.Name = "textBox_Sensor3_Zero";
- this.textBox_Sensor3_Zero.ReadOnly = true;
- this.textBox_Sensor3_Zero.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor3_Zero.TabIndex = 2;
- //
- // textBox_Sensor2_Zero
- //
- this.textBox_Sensor2_Zero.Location = new System.Drawing.Point(199, 71);
- this.textBox_Sensor2_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor2_Zero.Name = "textBox_Sensor2_Zero";
- this.textBox_Sensor2_Zero.ReadOnly = true;
- this.textBox_Sensor2_Zero.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor2_Zero.TabIndex = 2;
- //
- // textBox_Sensor1_Zero
- //
- this.textBox_Sensor1_Zero.Location = new System.Drawing.Point(199, 44);
- this.textBox_Sensor1_Zero.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor1_Zero.Name = "textBox_Sensor1_Zero";
- this.textBox_Sensor1_Zero.ReadOnly = true;
- this.textBox_Sensor1_Zero.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor1_Zero.TabIndex = 2;
- //
- // textBox_Sensor3_Std
- //
- this.textBox_Sensor3_Std.Location = new System.Drawing.Point(138, 98);
- this.textBox_Sensor3_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor3_Std.Name = "textBox_Sensor3_Std";
- this.textBox_Sensor3_Std.ReadOnly = true;
- this.textBox_Sensor3_Std.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor3_Std.TabIndex = 2;
- //
- // textBox_Sensor2_Std
- //
- this.textBox_Sensor2_Std.Location = new System.Drawing.Point(138, 71);
- this.textBox_Sensor2_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor2_Std.Name = "textBox_Sensor2_Std";
- this.textBox_Sensor2_Std.ReadOnly = true;
- this.textBox_Sensor2_Std.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor2_Std.TabIndex = 2;
- //
- // textBox_Sensor1_Std
- //
- this.textBox_Sensor1_Std.Location = new System.Drawing.Point(138, 44);
- this.textBox_Sensor1_Std.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor1_Std.Name = "textBox_Sensor1_Std";
- this.textBox_Sensor1_Std.ReadOnly = true;
- this.textBox_Sensor1_Std.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor1_Std.TabIndex = 2;
- //
- // textBox_Sensor3_Avg
- //
- this.textBox_Sensor3_Avg.Location = new System.Drawing.Point(77, 98);
- this.textBox_Sensor3_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor3_Avg.Name = "textBox_Sensor3_Avg";
- this.textBox_Sensor3_Avg.ReadOnly = true;
- this.textBox_Sensor3_Avg.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor3_Avg.TabIndex = 2;
- //
- // label3
- //
- this.label3.AutoSize = true;
- this.label3.Location = new System.Drawing.Point(7, 47);
- this.label3.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
- this.label3.Name = "label3";
- this.label3.Size = new System.Drawing.Size(59, 20);
- this.label3.TabIndex = 2;
- this.label3.Text = "传感器1";
- //
- // textBox_Sensor2_Avg
- //
- this.textBox_Sensor2_Avg.Location = new System.Drawing.Point(77, 71);
- this.textBox_Sensor2_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor2_Avg.Name = "textBox_Sensor2_Avg";
- this.textBox_Sensor2_Avg.ReadOnly = true;
- this.textBox_Sensor2_Avg.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor2_Avg.TabIndex = 2;
- //
- // textBox_Sensor1_Avg
- //
- this.textBox_Sensor1_Avg.Location = new System.Drawing.Point(77, 44);
- this.textBox_Sensor1_Avg.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.textBox_Sensor1_Avg.Name = "textBox_Sensor1_Avg";
- this.textBox_Sensor1_Avg.ReadOnly = true;
- this.textBox_Sensor1_Avg.Size = new System.Drawing.Size(50, 26);
- this.textBox_Sensor1_Avg.TabIndex = 2;
- //
- // label127
- //
- this.label127.AutoSize = true;
- this.label127.Font = new System.Drawing.Font("微软雅黑", 18F);
- this.label127.ForeColor = System.Drawing.Color.Red;
- this.label127.Location = new System.Drawing.Point(1158, 743);
- this.label127.Name = "label127";
- this.label127.Size = new System.Drawing.Size(230, 31);
- this.label127.TabIndex = 19;
- this.label127.Text = "内部使用,严禁外传";
- this.label127.DoubleClick += new System.EventHandler(this.label127_DoubleClick);
- //
- // label1_Welcom
- //
- this.label1_Welcom.AutoSize = true;
- this.label1_Welcom.Font = new System.Drawing.Font("隶书", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.label1_Welcom.ForeColor = System.Drawing.Color.Black;
- this.label1_Welcom.Location = new System.Drawing.Point(450, 300);
- this.label1_Welcom.Name = "label1_Welcom";
- this.label1_Welcom.Size = new System.Drawing.Size(500, 96);
- this.label1_Welcom.TabIndex = 18;
- this.label1_Welcom.Text = "选择正确端口号,\r\n连接成功后开始使用!";
- this.label1_Welcom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
- this.label1_Welcom.DoubleClick += new System.EventHandler(this.label1_Welcom_DoubleClick);
- //
- // button_ReadAll
- //
- this.button_ReadAll.BackColor = System.Drawing.Color.Yellow;
- this.button_ReadAll.Font = new System.Drawing.Font("微软雅黑", 10.5F);
- this.button_ReadAll.Location = new System.Drawing.Point(1070, 736);
- this.button_ReadAll.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.button_ReadAll.Name = "button_ReadAll";
- this.button_ReadAll.Size = new System.Drawing.Size(80, 44);
- this.button_ReadAll.TabIndex = 20;
- this.button_ReadAll.Text = "一键查询";
- this.button_ReadAll.UseVisualStyleBackColor = false;
- this.button_ReadAll.Visible = false;
- this.button_ReadAll.Click += new System.EventHandler(this.button_ReadAll_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(180)))), ((int)(((byte)(120)))));
- this.ClientSize = new System.Drawing.Size(1394, 792);
- this.Controls.Add(this.button_ReadAll);
- this.Controls.Add(this.label127);
- this.Controls.Add(this.groupBox17);
- this.Controls.Add(this.groupBox16);
- this.Controls.Add(this.groupBox15);
- this.Controls.Add(this.groupBox14);
- this.Controls.Add(this.label_DateTime);
- this.Controls.Add(this.label_BiuldTime);
- this.Controls.Add(this.label77);
- this.Controls.Add(this.label108);
- this.Controls.Add(this.label78);
- this.Controls.Add(this.groupBox13);
- this.Controls.Add(this.groupBox12);
- this.Controls.Add(this.groupBox4);
- this.Controls.Add(this.groupBox11);
- this.Controls.Add(this.groupBox10);
- this.Controls.Add(this.groupBox9);
- this.Controls.Add(this.groupBox8);
- this.Controls.Add(this.groupBox7);
- this.Controls.Add(this.groupBox6);
- this.Controls.Add(this.groupBox5);
- this.Controls.Add(this.groupBox3);
- this.Controls.Add(this.groupBox2);
- this.Controls.Add(this.groupBox1);
- this.Controls.Add(this.label1_Welcom);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(2, 4, 2, 4);
- this.MaximizeBox = false;
- this.Name = "Form1";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
- this.Text = "MOTINOVA中置电机配置软件V2.1.6(内部使用)";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
- this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.Form1_FormClosed);
- this.Load += new System.EventHandler(this.Form1_Load);
- this.groupBox1.ResumeLayout(false);
- this.groupBox1.PerformLayout();
- this.groupBox2.ResumeLayout(false);
- this.groupBox2.PerformLayout();
- this.groupBox3.ResumeLayout(false);
- this.groupBox3.PerformLayout();
- this.groupBox5.ResumeLayout(false);
- this.groupBox5.PerformLayout();
- this.groupBox6.ResumeLayout(false);
- this.groupBox6.PerformLayout();
- this.groupBox7.ResumeLayout(false);
- this.groupBox7.PerformLayout();
- this.groupBox8.ResumeLayout(false);
- this.groupBox9.ResumeLayout(false);
- this.groupBox9.PerformLayout();
- this.groupBox10.ResumeLayout(false);
- this.groupBox10.PerformLayout();
- this.groupBox11.ResumeLayout(false);
- this.groupBox11.PerformLayout();
- this.groupBox4.ResumeLayout(false);
- this.groupBox4.PerformLayout();
- this.groupBox12.ResumeLayout(false);
- this.groupBox12.PerformLayout();
- this.groupBox13.ResumeLayout(false);
- this.groupBox13.PerformLayout();
- this.groupBox14.ResumeLayout(false);
- this.groupBox14.PerformLayout();
- this.groupBox15.ResumeLayout(false);
- this.groupBox15.PerformLayout();
- this.groupBox16.ResumeLayout(false);
- this.groupBox16.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)(this.trackBar_MotorSpeedSet)).EndInit();
- this.groupBox17.ResumeLayout(false);
- this.groupBox17.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.GroupBox groupBox1;
- private System.Windows.Forms.ComboBox comboBox_Baudrate;
- private System.Windows.Forms.ComboBox comboBox_ComIndex;
- private System.Windows.Forms.Label label2;
- private System.Windows.Forms.Label label1;
- private System.Windows.Forms.Button button_ComOpen;
- private System.IO.Ports.SerialPort serialPort1;
- private System.Windows.Forms.GroupBox groupBox2;
- private System.Windows.Forms.Button button_Write_Torque_Start;
- private System.Windows.Forms.TextBox textBox_Torque_Start;
- private System.Windows.Forms.Label label4;
- private System.Windows.Forms.GroupBox groupBox3;
- private System.Windows.Forms.GroupBox groupBox5;
- private System.Windows.Forms.RadioButton radioButton_WorkMode_Confg;
- private System.Windows.Forms.RadioButton radioButton_WorkMode_Run;
- private System.Windows.Forms.GroupBox groupBox6;
- private System.Windows.Forms.RadioButton radioButton_Gear_WALK;
- private System.Windows.Forms.RadioButton radioButton_Gear_SMART;
- private System.Windows.Forms.RadioButton radioButton_Gear_TURBO;
- private System.Windows.Forms.RadioButton radioButton_Gear_SPORT;
- private System.Windows.Forms.RadioButton radioButton_Gear_NORM;
- private System.Windows.Forms.RadioButton radioButton_Gear_ECO;
- private System.Windows.Forms.RadioButton radioButton_Gear_OFF;
- private System.Windows.Forms.GroupBox groupBox7;
- private System.Windows.Forms.RadioButton radioButton_Light_OFF;
- private System.Windows.Forms.RadioButton radioButton_Light_ON;
- private System.Windows.Forms.GroupBox groupBox8;
- private System.Windows.Forms.Button button_ClearData;
- private System.Windows.Forms.GroupBox groupBox9;
- private System.Windows.Forms.Label label8;
- private System.Windows.Forms.Label label7;
- private System.Windows.Forms.TextBox textBox_FW;
- private System.Windows.Forms.TextBox textBox_HW;
- private System.Windows.Forms.TextBox textBox_SN;
- private System.Windows.Forms.TextBox textBox_Mode;
- private System.Windows.Forms.Label label6;
- private System.Windows.Forms.Label label9;
- private System.Windows.Forms.GroupBox groupBox10;
- private System.Windows.Forms.Button button_Write_Config;
- private System.Windows.Forms.Button button_Read_Config;
- private System.Windows.Forms.Label label27;
- private System.Windows.Forms.Label label26;
- private System.Windows.Forms.TextBox textBox_Config_SPORT_K;
- private System.Windows.Forms.TextBox textBox_Config_SMART_K;
- private System.Windows.Forms.TextBox textBox_Config_NORM_Acc;
- private System.Windows.Forms.TextBox textBox_Config_TURBO_Acc;
- private System.Windows.Forms.TextBox textBox_Config_TURBO_K;
- private System.Windows.Forms.TextBox textBox_Config_SPORT_Acc;
- private System.Windows.Forms.TextBox textBox_Config_SMART_Acc;
- private System.Windows.Forms.Label label25;
- private System.Windows.Forms.TextBox textBox_Config_NORM_K;
- private System.Windows.Forms.TextBox textBox_Config_ECO_Acc;
- private System.Windows.Forms.Label label31;
- private System.Windows.Forms.Label label30;
- private System.Windows.Forms.Label label34;
- private System.Windows.Forms.TextBox textBox_Config_ECO_K;
- private System.Windows.Forms.Label label29;
- private System.Windows.Forms.Label label33;
- private System.Windows.Forms.TextBox textBox_Config_WheelSize;
- private System.Windows.Forms.TextBox textBox_Config_MaxSpeed;
- private System.Windows.Forms.Label label28;
- private System.Windows.Forms.Label label32;
- private System.Windows.Forms.TextBox textBox_Config_T_Alarm;
- private System.Windows.Forms.TextBox textBox_Config_StopTime;
- private System.Windows.Forms.Label label21;
- private System.Windows.Forms.TextBox textBox_Config_MaxCurrent;
- private System.Windows.Forms.Label label20;
- private System.Windows.Forms.TextBox textBox_Config_Teeth_B;
- private System.Windows.Forms.TextBox textBox_Config_T_Protect;
- private System.Windows.Forms.Label label19;
- private System.Windows.Forms.Label label11;
- private System.Windows.Forms.Label label18;
- private System.Windows.Forms.Label label13;
- private System.Windows.Forms.Label label17;
- private System.Windows.Forms.Label label14;
- private System.Windows.Forms.Label label16;
- private System.Windows.Forms.Label label15;
- private System.Windows.Forms.Label label12;
- private System.Windows.Forms.Label label10;
- private System.Windows.Forms.TextBox textBox_Config_Teeth_F;
- private System.Windows.Forms.GroupBox groupBox11;
- private System.Windows.Forms.Button button_Write_MotorConfig;
- private System.Windows.Forms.Button button_Read_MortoConfig;
- private System.Windows.Forms.TextBox textBox_Motor_Power;
- private System.Windows.Forms.TextBox textBox_Motor_R;
- private System.Windows.Forms.TextBox textBox_Motor_Speed;
- private System.Windows.Forms.TextBox textBox_Motor_Voltage;
- private System.Windows.Forms.TextBox textBox_Motor_E;
- private System.Windows.Forms.TextBox textBox_Motor_Lq;
- private System.Windows.Forms.Label label45;
- private System.Windows.Forms.Label label47;
- private System.Windows.Forms.Label label49;
- private System.Windows.Forms.Label label50;
- private System.Windows.Forms.Label label51;
- private System.Windows.Forms.Label label52;
- private System.Windows.Forms.Label label53;
- private System.Windows.Forms.TextBox textBox_Motor_Ld;
- private System.Windows.Forms.Label label46;
- private System.Windows.Forms.Label label56;
- private System.Windows.Forms.Label label55;
- private System.Windows.Forms.Label label43;
- private System.Windows.Forms.Label label42;
- private System.Windows.Forms.Label label40;
- private System.Windows.Forms.Label label39;
- private System.Windows.Forms.Label label44;
- private System.Windows.Forms.Label label54;
- private System.Windows.Forms.Label label37;
- private System.Windows.Forms.Label label41;
- private System.Windows.Forms.Label label36;
- private System.Windows.Forms.Label label38;
- private System.Windows.Forms.TextBox textBox_RunInfo_PowerAvg;
- private System.Windows.Forms.TextBox textBox_RunInfo_T_MCU;
- private System.Windows.Forms.Label label22;
- private System.Windows.Forms.TextBox textBox_RunInfo_SOC;
- private System.Windows.Forms.Label label35;
- private System.Windows.Forms.TextBox textBox_RunInfo_Dir;
- private System.Windows.Forms.TextBox textBox_RunInfo_T_PCB;
- private System.Windows.Forms.TextBox textBox_RunInfo_ErrorCode;
- private System.Windows.Forms.Label label23;
- private System.Windows.Forms.TextBox textBox_RunInfo_Range;
- private System.Windows.Forms.TextBox textBox_RunInfo_Current;
- private System.Windows.Forms.TextBox textBox_RunInfo_Gear;
- private System.Windows.Forms.TextBox textBox_RunInfo_T_Roil;
- private System.Windows.Forms.Label label24;
- private System.Windows.Forms.TextBox textBox_RunInfo_Light;
- private System.Windows.Forms.TextBox textBox_RunInfo_Cadence;
- private System.Windows.Forms.TextBox textBox_RunInfo_Torque;
- private System.Windows.Forms.TextBox textBox_RunInfo_OutSpeed;
- private System.Windows.Forms.TextBox textBox_RunInfo_Voltage;
- private System.Windows.Forms.TextBox textBox_RunInfo_Power;
- private System.Windows.Forms.TextBox textBox_RunInfo_BikeSpeed;
- private System.Windows.Forms.Button button_Read_VerInfo;
- private System.Windows.Forms.TextBox textBox_TorqueData;
- private System.Windows.Forms.Label label57;
- private System.Windows.Forms.Button button_Write_SN;
- private System.Windows.Forms.Button button_Write_Mode;
- private System.Windows.Forms.Timer timer1;
- private System.Windows.Forms.Label label58;
- private System.Windows.Forms.TextBox textBox_RevCnt;
- private System.Windows.Forms.CheckBox checkBox_ReadTorqueData;
- private System.Windows.Forms.Button button_Reset;
- private System.Windows.Forms.CheckBox checkBox_AutoSend;
- private System.Windows.Forms.Button button_RefreshPort;
- private System.Windows.Forms.Label label59;
- private System.Windows.Forms.TextBox textBox_Config_WheelAdj;
- private System.Windows.Forms.TextBox textBox_Config_CadenceNum;
- private System.Windows.Forms.Label label63;
- private System.Windows.Forms.Label label62;
- private System.Windows.Forms.TextBox textBox_Config_SpeedNum;
- private System.Windows.Forms.Label label61;
- private System.Windows.Forms.Label label60;
- private System.Windows.Forms.GroupBox groupBox4;
- private System.Windows.Forms.Label label66;
- private System.Windows.Forms.Label label65;
- private System.Windows.Forms.TextBox textBox_Config_Angle_Roll;
- private System.Windows.Forms.Label label64;
- private System.Windows.Forms.TextBox textBox_Config_Angle_Pitch;
- private System.Windows.Forms.Label label70;
- private System.Windows.Forms.Label label48;
- private System.Windows.Forms.TextBox textBox_RunInfo_Time;
- private System.Windows.Forms.TextBox textBox_RunInfo_Distance;
- private System.Windows.Forms.Button button_Write_Config_Ext;
- private System.Windows.Forms.Button button_Read_Config_Ext;
- private System.Windows.Forms.GroupBox groupBox12;
- private System.Windows.Forms.Button button_Read_RidedInfo;
- private System.Windows.Forms.Label label71;
- private System.Windows.Forms.Label label67;
- private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Time;
- private System.Windows.Forms.TextBox textBox_RideInfo_Trip_Km;
- private System.Windows.Forms.Label label68;
- private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Time;
- private System.Windows.Forms.Label label69;
- private System.Windows.Forms.TextBox textBox_RideInfo_ODO_Km;
- private System.Windows.Forms.GroupBox groupBox13;
- private System.Windows.Forms.Button button_Read_AttitudeAngle;
- private System.Windows.Forms.Label label72;
- private System.Windows.Forms.Label label73;
- private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Rel;
- private System.Windows.Forms.TextBox textBox_Attitude_RollAngle_Abs;
- private System.Windows.Forms.Label label74;
- private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Rel;
- private System.Windows.Forms.Label label75;
- private System.Windows.Forms.TextBox textBox_Attitude_PitchAngle_Abs;
- private System.Windows.Forms.Label label76;
- private System.Windows.Forms.TextBox textBox_RunInfo_ODO_Km;
- private System.Windows.Forms.Label label78;
- private System.Windows.Forms.Label label_BiuldTime;
- private System.Windows.Forms.CheckBox checkBox_ReadAttitudeAngleAutoSend;
- private System.Windows.Forms.CheckBox checkBox_ReadRideInfo;
- private System.Windows.Forms.Label label77;
- private System.Windows.Forms.GroupBox groupBox14;
- private System.Windows.Forms.Label label99;
- private System.Windows.Forms.Button button_ReadRunLog;
- private System.Windows.Forms.Label label96;
- private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MIN;
- private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MIN;
- private System.Windows.Forms.Label label98;
- private System.Windows.Forms.TextBox textBox_Runlog1_MCU_MAX;
- private System.Windows.Forms.Label label97;
- private System.Windows.Forms.TextBox textBox_Runlog1_Coil_MAX;
- private System.Windows.Forms.Label label95;
- private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MIN;
- private System.Windows.Forms.Label label94;
- private System.Windows.Forms.TextBox textBox_Runlog1_PCB_MAX;
- private System.Windows.Forms.Label label93;
- private System.Windows.Forms.TextBox textBox_Runlog1_PBUFault;
- private System.Windows.Forms.Label label92;
- private System.Windows.Forms.TextBox textBox_Runlog1_HMIFault;
- private System.Windows.Forms.Label label91;
- private System.Windows.Forms.TextBox textBox_Runlog1_BMSFault;
- private System.Windows.Forms.Label label90;
- private System.Windows.Forms.TextBox textBox_Runlog1_NTCFault;
- private System.Windows.Forms.Label label89;
- private System.Windows.Forms.TextBox textBox_Runlog1_Phase;
- private System.Windows.Forms.Label label88;
- private System.Windows.Forms.TextBox textBox_Runlog1_HallFault;
- private System.Windows.Forms.Label label87;
- private System.Windows.Forms.TextBox textBox_Runlog1_TQSFault;
- private System.Windows.Forms.Label label86;
- private System.Windows.Forms.TextBox textBox_Runlog1_SPSFault;
- private System.Windows.Forms.Label label85;
- private System.Windows.Forms.TextBox textBox_Runlog1_OT;
- private System.Windows.Forms.Label label84;
- private System.Windows.Forms.TextBox textBox_Runlog1_Lock;
- private System.Windows.Forms.Label label83;
- private System.Windows.Forms.TextBox textBox_Runlog1_OV;
- private System.Windows.Forms.Label label82;
- private System.Windows.Forms.TextBox textBox_Runlog1_UV;
- private System.Windows.Forms.Label label81;
- private System.Windows.Forms.TextBox textBox_Runlog1_OC;
- private System.Windows.Forms.Label label80;
- private System.Windows.Forms.TextBox textBox_Runlog1_RunTime;
- private System.Windows.Forms.Label label107;
- private System.Windows.Forms.TextBox textBox_Runlog2_TE_CircuitFault;
- private System.Windows.Forms.Label label106;
- private System.Windows.Forms.TextBox textBox_Runlog2_TE_MCUFault;
- private System.Windows.Forms.Label label105;
- private System.Windows.Forms.TextBox textBox_Runlog2_CircuitFault;
- private System.Windows.Forms.Label label104;
- private System.Windows.Forms.TextBox textBox_Runlog2_VolFault;
- private System.Windows.Forms.Label label103;
- private System.Windows.Forms.TextBox textBox_Runlog2_MOS_SC;
- private System.Windows.Forms.Label label102;
- private System.Windows.Forms.TextBox textBox_Runlog2_GasFault;
- private System.Windows.Forms.Label label101;
- private System.Windows.Forms.TextBox textBox_Runlog2_CDSFault;
- private System.Windows.Forms.Label label100;
- private System.Windows.Forms.TextBox textBox_Runlog2_MCUFault;
- private System.Windows.Forms.Label label79;
- private System.Windows.Forms.TextBox textBox_Runlog1_PowerCount;
- private System.Windows.Forms.Label label108;
- private System.Windows.Forms.Label label_DateTime;
- private System.Windows.Forms.Timer timer2;
- private System.Windows.Forms.CheckBox checkBox_Savedata;
- private System.Windows.Forms.Label label109;
- private System.Windows.Forms.TextBox textBox_TE_FW;
- private System.Windows.Forms.Button button_DataExport;
- private System.Windows.Forms.GroupBox groupBox15;
- private System.Windows.Forms.GroupBox groupBox16;
- private System.Windows.Forms.TrackBar trackBar_MotorSpeedSet;
- private System.Windows.Forms.Label label_MotorSpeedSet;
- private System.Windows.Forms.Button button_Recovery;
- private System.Windows.Forms.Button button_ReadErrorLog;
- private System.Windows.Forms.TextBox textBox_Torque_Stdev;
- private System.Windows.Forms.Label label110;
- private System.Windows.Forms.Label label111;
- private System.Windows.Forms.Label label114;
- private System.Windows.Forms.Label label113;
- private System.Windows.Forms.Label label112;
- private System.Windows.Forms.TextBox textBox_Sensor1;
- private System.Windows.Forms.TextBox textBox_Sensor2;
- private System.Windows.Forms.TextBox textBox_Sensor3;
- private System.Windows.Forms.Button button_ReadStartData;
- private System.Windows.Forms.GroupBox groupBox17;
- private System.Windows.Forms.TextBox textBox_Sensor3_K;
- private System.Windows.Forms.TextBox textBox_Sensor2_K;
- private System.Windows.Forms.Label label119;
- private System.Windows.Forms.Label label118;
- private System.Windows.Forms.Label label117;
- private System.Windows.Forms.Label label116;
- private System.Windows.Forms.TextBox textBox_Sensor1_K;
- private System.Windows.Forms.TextBox textBox_Sensor3_Zero;
- private System.Windows.Forms.TextBox textBox_Sensor2_Zero;
- private System.Windows.Forms.TextBox textBox_Sensor1_Zero;
- private System.Windows.Forms.TextBox textBox_Sensor3_Std;
- private System.Windows.Forms.TextBox textBox_Sensor2_Std;
- private System.Windows.Forms.TextBox textBox_Sensor1_Std;
- private System.Windows.Forms.TextBox textBox_Sensor3_Avg;
- private System.Windows.Forms.TextBox textBox_Sensor2_Avg;
- private System.Windows.Forms.TextBox textBox_Sensor1_Avg;
- private System.Windows.Forms.Button button_WriteK;
- private System.Windows.Forms.Button button_ReadZero;
- private System.Windows.Forms.Label label115;
- private System.Windows.Forms.Label label5;
- private System.Windows.Forms.Label label3;
- private System.Windows.Forms.CheckBox checkBox_Sensor3;
- private System.Windows.Forms.CheckBox checkBox_Sensor2;
- private System.Windows.Forms.CheckBox checkBox_Sensor1;
- private System.Windows.Forms.Label label120;
- private System.Windows.Forms.TextBox textBox_Firmware_Special;
- private System.Windows.Forms.Label label123;
- private System.Windows.Forms.Label label122;
- private System.Windows.Forms.Label label121;
- private System.Windows.Forms.TextBox textBox_Config_WalkMotorSpeed;
- private System.Windows.Forms.TextBox textBox_Config_WalkSpeedLimit;
- private System.Windows.Forms.TextBox textBox_Config_UV_Protect;
- private System.Windows.Forms.Label label126;
- private System.Windows.Forms.Label label125;
- private System.Windows.Forms.Label label124;
- private System.Windows.Forms.Button button_LogClear;
- private System.Windows.Forms.Label label127;
- private System.Windows.Forms.Label label1_Welcom;
- private System.Windows.Forms.ComboBox comboBox_SpeedSing;
- private System.Windows.Forms.ComboBox comboBox_SerNum;
- private System.Windows.Forms.ComboBox comboBox_NoWatch;
- private System.Windows.Forms.ComboBox comboBox_DownDec;
- private System.Windows.Forms.ComboBox comboBox_StartMode;
- private System.Windows.Forms.ComboBox comboBox_Config_GasMode;
- private System.Windows.Forms.ComboBox comboBox_TailLightVol;
- private System.Windows.Forms.ComboBox comboBox_AttiSensor;
- private System.Windows.Forms.ComboBox comboBox_FrontLigthVol;
- private System.Windows.Forms.ComboBox comboBox_TailLightMode;
- private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStop;
- private System.Windows.Forms.Label label128;
- private System.Windows.Forms.TextBox textBox_Config_SpeedlimitStart;
- private System.Windows.Forms.Label label129;
- private System.Windows.Forms.TextBox textBox_Config_Period;
- private System.Windows.Forms.Label label130;
- private System.Windows.Forms.TextBox textBox_Config_Pulse;
- private System.Windows.Forms.Label label131;
- private System.Windows.Forms.TextBox textBox_Config_SpeedAlarm;
- private System.Windows.Forms.Label label132;
- private System.Windows.Forms.Button button_ReadAll;
- }
- }
|