| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197 | <?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');include_once(FCPATH . 'application/controllers/Base_Controller.php');class Lampcontrol extends Base_Controller {	    private $chargeStageMap = array(0=>'没有充电',16=>'MPPT充电',32=>'均衡充电',48=>'提升充电',64=>'浮充',''=>'未知状态');    public function __construct() {        parent::__construct();        $this->load->model('Company_model');        $this->load->model('Project_model');        $this->load->model('Network_model');        $this->load->model('Lamp_model');        $this->load->model('Batmanage_model');        $this->load->model('Patrol_model');         $this->load->model('Load_model');        $this->load->model('Battery_model');        $this->load->model('Alarm_model');        // $this->load->model('Zone_model');        $this->load->model('Videomonitor_model');        $this->load->model('Modbus_load_model');        $this->load->model('Modbus_battery_model');        $this->load->model('Global_location_model');        $this->load->model('RealtimeInfoLog_model');    }    // 灯控列表    public function get() {        $userid = $this->get_user_info('id');        $role = $this->get_user_info('role');        $company = $this->input->post('company',true);        $project_id = intval($this->input->post('project_id', true));        if (empty($project_id)) exit(json_result('0007',$this->response['0007']));        $fields = $this->input->post('fields', true);        $field1 = $this->input->post('field1', true);        $pid_arr = $project_id;        $timezone = $this->Project_model->get_timezone_by_projectid($project_id);        // $filter = array('L.projectid'=>$project_id);        $filter = 'L.projectid = '.$project_id;        $network_id = $this->input->post('network_id', true);        $section = $this->input->post('section', true);        $type = intval($this->input->post('type', true));        $company = intval($this->input->post('company', true));        if (!empty($type) && !empty($company)) {                        if ($type == 2) {                // $filter['L.manu'] = $company;                $filter .= ' AND L.manu = '.$company;            }elseif ($type == 3) {                // $filter['L.supplier'] = $company;                $filter .= ' AND L.supplier = '.$company;            }elseif ($type == 4) {                // $filter['L.po'] = $company;                $filter .= ' AND L.po = '.$company;            }else {                // $filter['L.upazilla'] = $company;                $filter .= ' AND L.upazilla = '.$company;            }        }        // if (!empty($section)) $filter['L.section'] = $section;        if (!empty($section)) $filter .= ' AND L.section = "'.$section.'"';        $offline = $this->input->post('offline', true);        // if (!empty($offline)) $filter['L.netstatus'] = 0;        if (!empty($offline)) $filter .= ' AND L.netstatus = 0';        $online = $this->input->post('online', true);        // if (!empty($online)) $filter['L.netstatus'] = 1;        if (!empty($online)) $filter .= ' AND L.netstatus= 1';        // 分页数据        $page = intval($this->input->post('page',true));        $page = empty($page) ? 1 : $page;        $count = intval($this->input->post('count',true));        $limit = empty($count) ? 10 : $count;        $offset = ($page - 1)*$count;        $keyword = $this->input->post('keyword', true);        // if ($keyword !== '' && $keyword !== null) $filter['L.number|L.section|L.address'] = $keyword;        if ($keyword !== '' && $keyword !== null) $filter .= ' AND (L.number like "%'.$keyword.'%" OR L.section like "%'.$keyword.'%" OR L.address like "%'.$keyword.'%")';        $status = $this->input->post('status', true);        if (!empty($status)) {            // $filter['AI.isfaulted'] = $status;            $filter .= ' AND (AI.batstatus != 0 OR AI.panelstatus != 0 OR AI.lampstatus != 0 OR AI.tempstatus != 0)';        }        // $alarmtype = $this->input->post('alarmtype', true);        // if (!empty($alarmtype)) $filter['AI.alarmtype'] = $alarmtype;        // 记录用户选择的字段        if (!empty($field1)) {            $fieldData = array('userid'=>$userid,'lampfield'=>$field1);            $this->User_model->update_user_field($fieldData);        }        $lite = $this->input->post('lite', true);        $version = $this->session->userdata('version');        if ($lite == 1) {            if(empty($fields)){                $fields = 'L.id, L.number';            }else{                $fields .= ",RI.updatetime";            }            $join = array();            $data['lamps'] = $this->Lamp_model->get_list_by_join($filter, $fields,$limit, $offset, $join, "L.number ASC", NUll, 'L');        } else {            if(empty($fields) || empty($field1)){                $fields = 'L.id, L.number, IFNULL(L.status,0) as status, L.isfaulted, L.address, L.lamppower, L.electricSOC, L.battvoltage, L.chargestage, RI.updatetime, RI.updatetime as modifytime,L.overtimes,L.boardpower,L.lighteness as light,L.projectid,L.devstatus as online,P.projectname as project_name,L.section,L.loadtype,P.timezone as timezoneid';            }else{                $fields .= ",L.id,L.projectid,L.section,L.loadtype,P.timezone as timezoneid";            }            $download = intval($this->input->post('download',true));            if (!empty($download)) {                $limit = null;                $offset = null;            }            $join = array();            $join[] = ['table'=>'project as P', 'cond'=>'L.projectid = P.id', 'type'=>'left'];            // $join[] = ['table'=>'(select t1.* from alarm_info_log t1, (select lampid, max(updatetime) as maxtime from alarm_info_log group by lampid) t2 where t1.lampid = t2.lampid and t1.updatetime = t2.maxtime) as AI', 'cond'=>'L.id = AI.lampid', 'type'=>'left'];            $join[] = ['table'=>'(select t1.* from warning_info_log t1, (select lampid, max(updatetime) as maxtime from warning_info_log group by lampid) t2 where t1.lampid = t2.lampid and t1.updatetime = t2.maxtime) as AI', 'cond'=>'L.id = AI.lampid', 'type'=>'left'];            $join[] = ['table'=>'(select t1.* from history_info_log t1, (select lampid, max(updatetime) as maxtime from history_info_log group by lampid) t2 where t1.lampid = t2.lampid and t1.updatetime = t2.maxtime) as HI', 'cond'=>'L.id = HI.lampid', 'type'=>'left'];            $join[] = ['table'=>'(select t1.* from realtime_info_log t1, (select lampid, max(updatetime) as maxtime from realtime_info_log group by lampid) t2 where t1.lampid = t2.lampid and t1.updatetime = t2.maxtime) as RI', 'cond'=>'L.id = RI.lampid', 'type'=>'left'];            $data['lamps'] = $this->Lamp_model->get_list_by_join($filter, $fields,$limit, $offset, $join, "L.number ASC", NUll, 'L');            // $data['lamps'] = $this->Lamp_model->get_list_in('L.projectid', $pid_arr, $fields, $filter);            // var_dump(microtime());            $indexArr = [2=>'16',3=>'32',4=>'48',5=>'64'];            if (empty($version)) {                $chargeStageMap = array(0=>'没有充电',1=>'启动充电',6=>'限流',7=>'充满',16=>'MPPT充电',32=>'均衡充电',48=>'提升充电',64=>'浮充',''=>'未知状态');                $battstatusArr = array(0=>'空闲',1=>'放电',2=>'充电',3=>'一边充电一边放电',''=>'未知状态');                $unknown = '未知状态';            }else{                $chargeStageMap = array(0=>'There is no charge',1=>'Start charging',6=>'Current limiting',7=>'Full',16=>'MPPT charging',32=>'Equalizing charge',48=>'Improve charging',64=>'Floating',''=>'Unknown state');                $battstatusArr = array(0=>'Free',1=>'Discharge',2=>'Charge',3=>'Discharge while charging',''=>'Unknown state');                $unknown = 'Unknown state';            }            if (!empty($download)) {                $fieldArr = explode(',', $field1);                $fieldArr[] = 'iccid';                $temp = [];                $i = 1;                foreach ($data['lamps'] as $key => &$value) {                    $value['section'] = empty($value['section']) ? '' : $value['section'];                    if (isset($value['updatetime']) && $value['updatetime'] == '0000-00-00 00:00:00') {                        $value['updatetime'] = null;                    }                    if (array_key_exists('lamppower',$value)) {                        $value['lamppower']   = !empty($value['lamppower']) ? $value['lamppower'] : "0";                    }                    // 故障信息处理                    if (array_key_exists('alarmStatus',$value)) {                        if (empty($value['batstatus']) && $value['panelstatus'] && $value['lampstatus'] && $value['tempstatus']) {                            if (empty($version)) {                                $value['isfaulted'] = '无';                            }else{                                $value['isfaulted'] = 'Nothing';                            }                                                    }else{                            $batstatus = $this->config->item('batstatus');                            $panelstatus = $this->config->item('panelstatus');                            $lampstatus = $this->config->item('lampstatus');                            $tempstatus = $this->config->item('tempstatus');                            $res = $this->Alarm_model->get_one_by_filter(array('lampid'=>$value['id'],'status'=>0),'stralarmtype');                            $temp2 = array();                            if (isset($batstatus[$value['batstatus']])) $temp2[] = $batstatus[$value['batstatus']];                            if (isset($panelstatus[$value['panelstatus']])) $temp2[] = $panelstatus[$value['panelstatus']];                            if (isset($lampstatus[$value['lampstatus']])) $temp2[] = $lampstatus[$value['lampstatus']];                            if (isset($tempstatus[$value['tempstatus']])) $temp2[] = $tempstatus[$value['tempstatus']];                            $stralarmtype = trim($res['stralarmtype']);                            if (!empty($temp2)) {                                $value['isfaulted'] = implode(',', $temp2);                            }else{                                $value['isfaulted'] = 'Nothing';                            }                                                        }                    }                    if (array_key_exists('lampstatus',$value)) {                        $value['lampstatus'] = !empty($value['lampstatus']) ? $value['lampstatus'] : "0";                    }                    if (array_key_exists('electricSOC',$value)) {                        $value['electricSOC'] = !empty($value['electricSOC']) ? $value['electricSOC'] : "0";                    }                    if (array_key_exists('battvoltage',$value)) {                        $value['battvoltage'] = !empty($value['battvoltage']) ? $value['battvoltage'] : "0";                    }                    if (array_key_exists('chargestage',$value)) {                        $value['chargestage'] = isset($value['chargestage']) ? $chargeStageMap[$value['chargestage']] : $unknown;                    }                    if (array_key_exists('battstatus',$value)) {                        $value['battstatus'] = isset($value['battstatus']) ? $battstatusArr[$value['battstatus']] : $unknown;                    }                    if (array_key_exists('overtimes',$value)) {                        $value['overtimes'] = !empty($value['overtimes']) ? $value['overtimes'] : 0;                    }                    if (array_key_exists('solarpower',$value)) {                        $value['solarpower'] = !empty($value['solarpower']) ? $value['solarpower'] : 0;                    }                    if (array_key_exists('iccid',$value)) {                        $value['iccid'] = !empty($value['iccid']) ? $value['iccid'] : '';                    }                    if (array_key_exists('updatetime',$value)) {                        $value['updatetime']   = !empty($value['updatetime']) ? $value['updatetime'] : '';                        // 通过时区修改时间                        if (!empty($value['updatetime'])) {                            $timezone = $this->Project_model->get_timezone_by_projectid($value['projectid']);                            if ($timezone['value'] != 8) {                                $value['updatetime'] = date_change($value['updatetime'],8,$timezone['value']);                            }                        }                    }                    // 当前策略                    if (array_key_exists('policyid',$value)) {                        if (empty($value['policyid'])) {                            $value['policyid'] = '';                        }else{                            $policyData = $this->db->query('select name from policy_info where id = '.$value['policyid'])->row_array();                            if (empty($policyData) || empty($policyData['name'])) {                                $value['policyid'] = '';                            }else{                                $value['policyid'] = $policyData['name'];                            }                        }                    }                                        $temp[$key][] = $i;                    foreach ($fieldArr as $f) {                        if ($f == 'lampstatus') {                            if (empty($version)) {                                $temp[$key][] = empty($value[$f]) ? '关灯' : '开灯';                            }else{                                $temp[$key][] = empty($value[$f]) ? 'off' : 'on';                            }                            continue;                        }                        if ($f == 'status') {                            if (empty($version)) {                                $temp[$key][] = empty($value[$f]) ? '不在线' : '在线';                            }else{                                $temp[$key][] = empty($value[$f]) ? 'off-line' : 'online';                            }                            continue;                        }                        if ($f == 'daychargemincurrent' || $f == 'daydischargemincurrent') {                            $t = floor($value[$f]/3600) < 10 ? '0'.floor($value[$f]/3600) : floor($value[$f]/3600);                            $m = ceil($value[$f]%3600/60) < 10 ? '0'.ceil($value[$f]%3600/60) : ceil($value[$f]%3600/60);                            $temp[$key][] = $t.':'.$m;                            continue;                        }                        $temp[$key][] = $value[$f];                    }                    $i ++;                }                $title1 = get_fields_by_type($field1,$version);                if (empty($version)) {                    $title2 = array_merge(array('编号'),$title1);                }else{                    $title2 = array_merge(array('Number'),$title1);                }                $title = [];                foreach ($title2 as $t) {                    $title[0][] = $t;                }                $title[0][] = 'iccid';                $data = array_merge($title,$temp);                $path = push_excel($data,'lampinfoExcel_'.date('Ymd'));                exit(json_result('0000', $this->response['0000'], array('path'=>$path)));            }            foreach ($data['lamps'] as $key => &$value) {                $value['section'] = empty($value['section']) ? '' : $value['section'];                if (isset($value['updatetime']) && $value['updatetime'] == '0000-00-00 00:00:00') {                    $value['updatetime'] = null;                }                if (array_key_exists('lamppower',$value)) {                    $value['lamppower']   = !empty($value['lamppower']) ? $value['lamppower'] : "0";                }                // 故障信息处理                if (array_key_exists('alarmStatus',$value)) {                    if (empty($value['batstatus']) && $value['panelstatus'] && $value['lampstatus'] && $value['tempstatus']) {                        if (empty($version)) {                            $value['isfaulted'] = '无';                        }else{                            $value['isfaulted'] = 'Nothing';                        }                                            }else{                        $batstatus = $this->config->item('batstatus');                        $panelstatus = $this->config->item('panelstatus');                        $lampstatus = $this->config->item('lampstatus');                        $tempstatus = $this->config->item('tempstatus');                        $res = $this->Alarm_model->get_one_by_filter(array('lampid'=>$value['id'],'status'=>0),'stralarmtype');                        $temp2 = array();                        if (isset($batstatus[$value['batstatus']])) $temp2[] = $batstatus[$value['batstatus']];                        if (isset($panelstatus[$value['panelstatus']])) $temp2[] = $panelstatus[$value['panelstatus']];                        if (isset($lampstatus[$value['lampstatus']])) $temp2[] = $lampstatus[$value['lampstatus']];                        if (isset($tempstatus[$value['tempstatus']])) $temp2[] = $tempstatus[$value['tempstatus']];                        $stralarmtype = trim($res['stralarmtype']);                        if (!empty($temp2)) {                            $value['isfaulted'] = implode(',', $temp2);                        }else{                            $value['isfaulted'] = 'Nothing';                        }                                                }                }                                if (array_key_exists('lampstatus',$value)) {                    $value['lampstatus'] = !empty($value['lampstatus']) ? $value['lampstatus'] : "0";                }                if (array_key_exists('electricSOC',$value)) {                    $value['electricSOC'] = !empty($value['electricSOC']) ? $value['electricSOC'] : "0";                }                if (array_key_exists('battvoltage',$value)) {                    $value['battvoltage'] = !empty($value['battvoltage']) ? $value['battvoltage'] : "0";                }                if (array_key_exists('chargestage',$value)) {                    $value['chargestage'] = isset($value['chargestage']) && isset($chargeStageMap[$value['chargestage']]) ? $chargeStageMap[$value['chargestage']] : $unknown;                }                if (array_key_exists('battstatus',$value)) {                    $value['battstatus'] = isset($value['battstatus']) ? $battstatusArr[$value['battstatus']] : $unknown;                }                if (array_key_exists('overtimes',$value)) {                    $value['overtimes'] = !empty($value['overtimes']) ? $value['overtimes'] : 0;                }                if (array_key_exists('solarpower',$value)) {                    $value['solarpower'] = !empty($value['solarpower']) ? $value['solarpower'] : 0;                }                // 当前策略                if (array_key_exists('policyid',$value)) {                    if (empty($value['policyid'])) {                        $value['policyid'] = '';                    }else{                        $policyData = $this->db->query('select name from policy_info where id = '.$value['policyid'])->row_array();                        if (empty($policyData) || empty($policyData['name'])) {                            $value['policyid'] = '';                        }else{                            $value['policyid'] = $policyData['name'];                        }                    }                }                if (array_key_exists('updatetime',$value)) {                    $value['updatetime']   = !empty($value['updatetime']) ? $value['updatetime'] : '';                    // 通过时区修改时间                    if (!empty($value['updatetime'])) {                        // $value['timezoneid'];                        if($timezone === null) $timezone = $this->db->query('select value from timezone where id = '.$value['timezoneid'])->row_array();                        // var_dump($timezone);die;                        $value['updatetime'] = set_timezone($value['updatetime'],$timezone['value']);                         // if ($timezone['value'] != 8) {                        //     $value['updatetime'] = date_change($value['updatetime'],0,$timezone['value']);                        // }                    }                }            }            if (!empty($project_id)) {                            }        }        // unset($filter['page']);        // unset($filter['count']);        $data['total_data']['install_num'] = $this->Lamp_model->get_count(array('projectid'=>$project_id));        $data['total_data']['light_num'] = $this->Lamp_model->get_count(array('projectid'=>$project_id,'netstatus'=>1,'status'=>1));        $data['total_data']['online_num'] = $this->Lamp_model->get_count(array('projectid'=>$project_id,'netstatus'=>1));        $data['total_data']['fault_count'] = $this->Lamp_model->get_fault_count(array('L.projectid'=>$project_id,'L.isfaulted'=>1,'AI.status'=>0), $role, '', $userid,$project_id);        $data['total_data']['light_rate'] = empty($data['total_data']['install_num']) ? '0' : round($data['total_data']['light_num']/$data['total_data']['install_num'],4)*100;        $data['total_data']['light_rate'] .= '%';        $data['total_data']['online_rate'] = empty($data['total_data']['install_num']) ? '0' : round($data['total_data']['online_num']/$data['total_data']['install_num'],4)*100;        $data['total_data']['online_rate'] .= '%';        $data['total_data']['fault_rate'] = empty($data['total_data']['install_num']) ? '0' : round($data['total_data']['fault_count']/$data['total_data']['install_num'],4)*100;        $data['total_data']['fault_rate'] .= '%';        // $data['total_data']['network_num'] = $this->Network_model->get_count(['projectid'=>$project_id,'type'=>1]);        $res = $this->Lamp_model->get_list_by_multi_join($filter, 'count(*) total',$limit, $offset, $join, "L.number ASC", NUll, 'L',true);        $result = !empty($pid_arr) ? $this->Lamp_model->get_total('L.projectid', $pid_arr, 'L.id') : array();        $result = $this->Lamp_model->get_count(['projectid'=>$pid_arr]);        $data['total'] = $res['total'];        $data['count'] = $result;        $data['fault'] = $res['total'];        exit(json_result('0000', $this->response['0000'], $data));    }    // 更新灯控信息    public function update() {        $role = $this->get_user_info('role');        $username = $this->input->post('username',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $type = intval($this->input->post('type',true));        $lamp_id = $this->input->post('lamp_id',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $lamp_id = $this->input->post('lamp_id', true);        if (empty($lamp_id)) {            exit(json_result('0411', $this->response['0411'], array()));        }        $ids = explode(',', $lamp_id);        $status = 1;        foreach ($ids as $v) {            $record['cmdtype'] = 0;            $record['relateid'] = $v;            $record['statuscmd'] = 0;            $record['updatetime'] = date("Y-m-d H:i:s");            $recordid = $this->Batmanage_model->get_record_id($record, 'batch_update_cmd');            if(!$recordid){                exit(json_result('0009', $this->response['0009'], array()));            }            if ($recordid != -1) {                $status = 0;                $cmd = '{"cmd_type":"batch_update_cmd","cmd_id":'.$recordid.'}';                $lampData = $this->Lamp_model->getOne($v,'N.status,N.protocoltype,L.protocoltype as lampprotocoltype');                if ($lampData['protocoltype'] == 4 || $lampData['protocoltype'] == 6) {                    $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/device/lampcontrol/update_asy';                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$v]);                    continue;                }                if (isset($lampData['protocoltype']) && $lampData['protocoltype'] != 0) {                    $cmdret = send_cmd($cmd,1,0,$lampData['protocoltype']);                    if ($cmdret === false) {                        sleep(1);                        $cmdret = send_cmd($cmd,1,0,$lampData['protocoltype']);                    }                }else{                    $cmdret = send_cmd($cmd,0,0,$lampData['protocoltype']);                    if ($cmdret === false) {                        sleep(1);                        $cmdret = send_cmd($cmd,0,0,$lampData['protocoltype']);                    }                }                if($cmdret === false){                    exit(json_result('0008', $this->response['0008'], array()));                }            }        }        sleep(2);        if ($status) {            exit(json_result('0406', $this->response['0406'], array()));        }else{            exit(json_result('0407', $this->response['0407'], array()));        }    }    // 异步更新数据    public function update_asy(){        $lamp_id = $this->input->post('lamp_id',true);        $lampData = $this->Lamp_model->getOne($lamp_id,'L.number,N.protocoltype,L.protocoltype as lampprotocoltype,L.address,L.networkid,N.status,N.deviceid');        if ($lampData['lampprotocoltype'] == 0) {            $address = '';            if (mb_strlen($lampData['address']) >= 8) {                $address = mb_substr($lampData['address'], -8);            }else{                $address = '00000000';            }            $sendData = $address.'0300004646';            if ($lampData['protocoltype'] == 4) {                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            }else{                // $cmd .= crc16(pack('H*',$sendData));                device_cmd($lampData['deviceid'],pack('H*',$sendData));                $cmd = '{"type":"cmd","deviceId":"'.$lampData['address'].'"}';                $info = send_lorawan_915($cmd);                $res = array();                if (!empty($info)) {                    $info = json_decode($info,true);                    if ($info && $info['res'] == 0) $res['msg'] = $info['resInfo'];                }                $file = fopen('./file/lorawan.txt', 'a+');                fwrite($file, $res.'----'.date('Y-m-d H:i:s',time()).'');                fclose($file);                // die;            }                        if (!empty($res)) {                $msg1 = $res['msg'];                // 数据校验                $msg = mb_substr($msg1, 10);                $t = 0;                for ($i=0; $i < mb_strlen($msg) / 2 - 1; $i++) {                    $s = mb_substr($msg, $i*2,2);                    $t += base_convert($s, 16, 10);                }                $t = base_convert($t, 10, 16);                if (mb_strlen($t) > 2) {                    $t = mb_substr($t, -2);                }elseif($t <= 1){                    $t = '0'.$t;                }                if ($t == mb_substr($msg, -2)) {                      // 校验通过,解析数据                    $updatetime = date('Y-m-d H:i:s',time());                    // 系统信息                    $systemInfoStr = mb_substr($msg1, 16,6);                    $systemInfo = array(                        'sysvoltage' => base_convert(mb_substr($systemInfoStr, 0,2), 16, 10),                        'syscurrent' => base_convert(mb_substr($systemInfoStr, 2,2), 16, 10),                        'temper' => bitDecode(mb_substr($systemInfoStr, 4,2)),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $this->db->insert('system_info_log', $systemInfo);                    // 路灯信息                    $lampInfoStr = mb_substr($msg1, 22,12);                    $lampInfo = array(                        'lampvoltage' => round(base_convert(mb_substr($lampInfoStr, 2,4), 16, 10)/10,1),                        'lampcurrent' => round(base_convert(mb_substr($lampInfoStr, 6,4), 16, 10)/100,2),                        'temper' => bitDecode(mb_substr($lampInfoStr, 10,2)),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $lampInfo['lamppower'] = round($lampInfo['lampvoltage'] * $lampInfo['lampcurrent'],2);                    $light = base_convert(mb_substr($lampInfoStr, 0,2), 16, 2);                    if (mb_strlen($light) == 8) {                        $lampInfo['lighteness'] = base_convert(mb_substr($light, -7), 2, 10);                        $lampInfo['lampstatus'] = 1;                    }else{                        $lampInfo['lighteness'] = 0;                        $lampInfo['lampstatus'] = 0;                    }                    $this->db->insert('lamp_info_log', $lampInfo);                    // 太阳能信息                    $solarInfoStr = mb_substr($msg1, 34,8);                    $solarInfo = array(                        'solarvoltage' => round(base_convert(mb_substr($solarInfoStr, 0,4), 16, 10)/10,1),                        'solarcurrent' => round(base_convert(mb_substr($solarInfoStr, 4,4), 16, 10)/100,2),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $solarInfo['solarpower'] = round($solarInfo['solarvoltage'] * $solarInfo['solarcurrent'],2);                    $this->db->insert('solar_info_log', $solarInfo);                    // 蓄电池信息                    $batterInfoStr = mb_substr($msg1, 42,70);                    $batteryInfo = array(                        'battvoltage' => round(base_convert(mb_substr($batterInfoStr, 2,4), 16, 10)/10,1),                        'chargecurrent' => round(base_convert(mb_substr($batterInfoStr, 6,4), 16, 10)/100,2),                        'discharcurrent' => round(base_convert(mb_substr($batterInfoStr, 10,4), 16, 10)/100,2),                        'batttemper' => bitDecode(mb_substr($batterInfoStr, 14,2)),                        'electrictotal' => base_convert(mb_substr($batterInfoStr, 16,4),16,10),                        'electricleft' => base_convert(mb_substr($batterInfoStr, 20,4),16,10),                        'electricSOC' => base_convert(mb_substr($batterInfoStr, 24,2),16,10),                        'voltagedaymin' => round(base_convert(mb_substr($batterInfoStr, 26,4),16,10)/10,1),                        'voltagedaymax' => round(base_convert(mb_substr($batterInfoStr, 30,4),16,10)/10,1),                        'daychargeah' => round(base_convert(mb_substr($batterInfoStr, 34,4),16,10)/10,1),                        'daydischarah' => round(base_convert(mb_substr($batterInfoStr, 38,4),16,10)/10,1),                        'daychargemaxpow' => round(base_convert(mb_substr($batterInfoStr, 42,4),16,10)/10,1),                        'daydischarmaxpow' => round(base_convert(mb_substr($batterInfoStr, 46,4),16,10)/10,1),                        'daychargemincurrent' => base_convert(mb_substr($batterInfoStr, 50,4),16,10),                        'daycharmaxcurrent' => round(base_convert(mb_substr($batterInfoStr, 54,4),16,10)/100,2),                        'daydischargemincurrent' => base_convert(mb_substr($batterInfoStr, 58,4),16,10),                        'daydischarmaxcurrent' => round(base_convert(mb_substr($batterInfoStr, 62,4),16,10)/100,2),                        'daybattmintemper' => bitDecode(mb_substr($batterInfoStr, 66,2)),                        'daybattmaxtemper' => bitDecode(mb_substr($batterInfoStr, 68,2)),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $batteryInfo['chargepower'] = round($batteryInfo['chargecurrent'] * $batteryInfo['battvoltage'],2);                    $batteryInfo['dischargepower'] = round($batteryInfo['discharcurrent'] * $batteryInfo['battvoltage'],2);                    $chargestage = base_convert(mb_substr($solarInfoStr, 0,2), 16, 2);                    $chargestage = mb_strlen($chargestage) < 8 ? mb_substr('00000000'.$chargestage, -8) : $chargestage;                    $batteryInfo['chargestage'] = base_convert(mb_substr($chargestage, 0,4).'0000', 2, 10);                    $batteryInfo['battstatus'] = base_convert(mb_substr($chargestage, -4), 2, 10);                    $this->db->insert('battery_info_log', $batteryInfo);                    // 发用电量信息                    $eleInfoStr = mb_substr($msg1, 112,24);                    $eleInfo = array(                        'daygeneration' => round(base_convert(mb_substr($eleInfoStr, 0,4),16,10)/10,1),                        'dayconsumption' => round(base_convert(mb_substr($eleInfoStr, 4,4),16,10)/10,1),                        'totalgeneration' => round(base_convert(mb_substr($eleInfoStr, 8,8),16,10)/10,1),                        'totalconsumption' => round(base_convert(mb_substr($eleInfoStr, 16,8),16,10)/10,1),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $this->db->insert('electric_info_log', $eleInfo);                    // 历史数据信息                    $historyInfoStr = mb_substr($msg1, 136,12);                    $historyInfo = array(                        'rundays' => base_convert(mb_substr($historyInfoStr, 0,4),16,10),                        'overtimes' => base_convert(mb_substr($historyInfoStr, 4,4),16,10),                        'fulltimes' => base_convert(mb_substr($historyInfoStr, 8,4),16,10),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $historyInfo['totalchargeah'] = $batteryInfo['daychargeah'];                    $historyInfo['totaldischarah'] = $batteryInfo['daydischarah'];                    $this->db->insert('history_info_log', $historyInfo);                    // 故障信息                    $alarmInfoStr = mb_substr($msg1, 148,8);                    $alarmInfo = array(                        'alarmtype' => 0,                        'stralarmtype' => '',                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $alarmArr = array('0'=>'过放','1'=>'超压','2'=>'负载短路','3'=>'电池故障','4'=>'内部超温','5'=>'外部超温','7'=>'负载开路','8'=>'输出电容超压保护','10'=>'电池板短路','11'=>'电池板超压','13'=>'充电逆流','15'=>'锂电池低温关闭充电');                    $isfaulted = 0;                    if ($alarmInfoStr != '00000000') {                        $res = base_convert($alarmInfoStr, 16, 2);                        var_dump($res);                        $res = strrev($res);                        $t = array();                        for ($i=0; $i < mb_strlen($res); $i++) {                             if (mb_substr($res, $i,1) == 1 && isset($alarmArr[$i])) {                                $t[] = $alarmArr[$i];                            }                        }                        if (!empty($t)) {                            $alarmInfo['alarmtype'] = base_convert($alarmInfoStr, 16, 10);                            $alarmInfo['stralarmtype'] = implode(',', $t);                        }                    }                    if (!empty($alarmInfo['stralarmtype'])) {                        $this->db->insert('alarm_info_log', $alarmInfo);                        $isfaulted = 1;                    }                    $this->Lamp_model->update(array('id'=>$lamp_id),array('status'=>$lampInfo['lampstatus'],'lighteness'=>$lampInfo['lighteness'],'isfaulted'=>$isfaulted));                    if ($lampData['status'] == 0) $this->Network_model->update(array('id'=>$lampData['networkid']),array('status'=>1));                }            }                    }elseif ($lampData['lampprotocoltype'] == 1) {            $sendData = '0103000a0002e409';            $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            if (!empty($res) && strtolower(crc16(pack('H*',mb_substr($res['msg'], 0,-4)))) == strtolower(mb_substr($res['msg'], -4))) {                $sysInfoStr = $res['msg'];                $sendData = '010300fd003115ee';                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));                if (!empty($res) && strtolower(crc16(pack('H*',mb_substr($res['msg'], 0,-4)))) == strtolower(mb_substr($res['msg'], -4))) {                    $data = array();                    $msg = $res['msg'];                    // 校验通过,解析数据                    $updatetime = date('Y-m-d H:i:s',time());                    // 系统信息                    $systemInfo = array(                        'sysvoltage' => base_convert(mb_substr($sysInfoStr, 6,2), 16, 10),                        'syscurrent' => base_convert(mb_substr($sysInfoStr, 8,2), 16, 10),                        'temper' => bitDecode(mb_substr($msg, 30,2)),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $this->db->insert('system_info_log', $systemInfo);                    // 路灯信息                    $lampInfoStr = mb_substr($msg, 34,12);                    $lampInfo = array(                        'lampvoltage' => round(base_convert(mb_substr($lampInfoStr, 0,4), 16, 10)/10,1),                        'lampcurrent' => round(base_convert(mb_substr($lampInfoStr, 4,4), 16, 10)/100,2),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                        'lamppower' => base_convert(mb_substr($lampInfoStr, 8,4), 16, 10),                    );                    $light = base_convert(mb_substr($msg, 6,2), 16, 2);                    if (base_convert(mb_substr('00000000'.$light, -7), 2, 10) > 0) {                        $lampInfo['lighteness'] = base_convert(mb_substr($light, -7), 2, 10);                        $lampInfo['lampstatus'] = 1;                    }else{                        $lampInfo['lighteness'] = 0;                        $lampInfo['lampstatus'] = 0;                    }                    $this->db->insert('lamp_info_log', $lampInfo);                    // 太阳能信息                    $solarInfoStr = mb_substr($msg, 46,12);                    $solarInfo = array(                        'solarvoltage' => round(base_convert(mb_substr($solarInfoStr, 0,4), 16, 10)/10,1),                        'solarcurrent' => round(base_convert(mb_substr($solarInfoStr, 4,4), 16, 10)/100,2),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $solarInfo['solarpower'] = round($solarInfo['solarvoltage'] * $solarInfo['solarcurrent'],2);                    $this->db->insert('solar_info_log', $solarInfo);                    // 蓄电池信息                    // $batterInfoStr = mb_substr($msg, 42,70);                    $batteryInfo = array(                        'battvoltage' => round(base_convert(mb_substr($msg, 22,4), 16, 10)/10,1),                        'chargecurrent' => round(base_convert(mb_substr($msg, 26,4), 16, 10)/100,2),                        // 'discharcurrent' => round(base_convert(mb_substr($msg, 10,4), 16, 10)/100,2),                        'batttemper' => bitDecode(mb_substr($msg, 32,2)),                        // 'electrictotal' => base_convert(mb_substr($msg, 16,4),16,10),                        // 'electricleft' => base_convert(mb_substr($msg, 20,4),16,10),                        'electricSOC' => base_convert(mb_substr($msg, 18,4),16,10),                        'voltagedaymin' => round(base_convert(mb_substr($msg, 62,4),16,10)/10,1),                        'voltagedaymax' => round(base_convert(mb_substr($msg, 66,4),16,10)/10,1),                        'daychargeah' => base_convert(mb_substr($msg, 86,4),16,10),                        'daydischarah' => base_convert(mb_substr($msg, 90,4),16,10),                        'daychargemaxpow' => base_convert(mb_substr($msg, 78,4),16,10),                        'daydischarmaxpow' => base_convert(mb_substr($msg, 82,4),16,10),                        'daychargemincurrent' => base_convert(mb_substr($msg, 174,4),16,10),                        'daycharmaxcurrent' => round(base_convert(mb_substr($msg, 70,4),16,10)/100,2),                        'daydischargemincurrent' => base_convert(mb_substr($msg, 194,4),16,10),                        'daydischarmaxcurrent' => round(base_convert(mb_substr($msg, 74,4),16,10)/100,2),                        'daybattmintemper' => doubBitDecode(mb_substr($msg, 162,4)),                        'daybattmaxtemper' => doubBitDecode(mb_substr($msg, 158,4)),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $batteryInfo['chargepower'] = round($batteryInfo['chargecurrent'] * $batteryInfo['battvoltage'],2);                    // $batteryInfo['dischargepower'] = round($batteryInfo['discharcurrent'] * $batteryInfo['battvoltage'],2);                    $status = base_convert(mb_substr($msg, 8,2),16,10);                    if (mb_strlen($light) == 8 && mb_substr($light, 0,1) == 1) {                        $batteryInfo['battstatus'] = 1;                    }else{                        if ($status != 0){                            $batteryInfo['battstatus'] = 2;                        }else{                            $batteryInfo['battstatus'] = 0;                        }                    }                    $batteryInfo['chargestage'] = $status;                    $this->db->insert('battery_info_log', $batteryInfo);                    // 发用电量信息                    // $eleInfoStr = mb_substr($msg1, 112,24);                    $eleInfo = array(                        'daygeneration' => round(base_convert(mb_substr($msg, 94,4),16,10)/1000,3),                        'dayconsumption' => round(base_convert(mb_substr($msg, 98,4),16,10)/1000,3),                        'totalgeneration' => round(base_convert(mb_substr($msg, 134,8),16,10)/1000,3),                        'totalconsumption' => round(base_convert(mb_substr($msg, 142,8),16,10)/1000,3),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $this->db->insert('electric_info_log', $eleInfo);                    // 历史数据信息                    $historyInfoStr = mb_substr($msg, 102,28);                    $historyInfo = array(                        'rundays' => base_convert(mb_substr($historyInfoStr, 0,4),16,10),                        'overtimes' => base_convert(mb_substr($historyInfoStr, 4,4),16,10),                        'fulltimes' => base_convert(mb_substr($historyInfoStr, 8,4),16,10),                        'totalchargeah' => base_convert(mb_substr($historyInfoStr, 12,8),16,10),                        'totaldischarah' => base_convert(mb_substr($historyInfoStr, 20,8),16,10),                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $this->db->insert('history_info_log', $historyInfo);                    // 故障信息                    $alarmInfoStr = mb_substr($msg, 10,8);                    $alarmInfo = array(                        'alarmtype' => 0,                        'stralarmtype' => '',                        'updatetime' => $updatetime,                        'lampid' => $lamp_id,                    );                    $alarmArr = array('10'=>'BMS过充保护','11'=>'电池低温保护,停止充电','12'=>'电池反接','13'=>'电容超压','14'=>'感应探头损坏','15'=>'负载开路','16'=>'蓄电池过放','17'=>'蓄电池超压','18'=>'欠压警告','19'=>'负载短路','20'=>'负载功率过大或负载过流','21'=>'控制器温度过高','22'=>'外部环境温度过高','23'=>'光伏输入功率过大','24'=>'光伏输入端短路','25'=>'光伏输入端超压','26'=>'太阳板逆流','27'=>'太阳板工作点超压','28'=>'太阳板反接');                    $isfaulted = 0;                    if ($alarmInfoStr != '00000000') {                        $res = base_convert($alarmInfoStr, 16, 2);                        var_dump($res);                        $res = strrev($res);                        $t = array();                        for ($i=0; $i < mb_strlen($res); $i++) {                             if (mb_substr($res, $i,1) == 1 && isset($alarmArr[$i])) {                                $t[] = $alarmArr[$i];                            }                        }                        if (!empty($t)) {                            $alarmInfo['alarmtype'] = base_convert($alarmInfoStr, 16, 10);                            $alarmInfo['stralarmtype'] = implode(',', $t);                        }                    }                    if (!empty($alarmInfo['stralarmtype'])) {                        $this->db->insert('alarm_info_log', $alarmInfo);                        $isfaulted = 1;                    }                    $this->Lamp_model->update(array('id'=>$lamp_id),array('status'=>$lampInfo['lampstatus'],'lighteness'=>$lampInfo['lighteness'],'isfaulted'=>$isfaulted));                    if ($lampData['status'] == 0) $this->Network_model->update(array('id'=>$lampData['networkid']),array('status'=>1));                }            }                    }    }    // 灯控的开启/关闭(支持批量处理)    public function turnonoff(){        $username = $this->input->post('username',true);        $role = $this->input->post('role',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $type = intval($this->input->post('type',true));        $lamp_id = $this->input->post('lamp_id',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $lampArr = explode(',', $lamp_id);        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/lampcontrol/dimming_asy';        $lightness = empty($type) ? 0 : 100;        foreach ($lampArr as $l) {            doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'type'=>$type,'lamp_id'=>$l,'lightness'=>$lightness,'role'=>$role]);        }                exit();    }    // 灯控调光    public function dimming(){        $username = $this->input->post('username',true);        $role = $this->input->post('role',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $lamp_id = $this->input->post('lamp_id',true);        $lightness = $this->input->post('lightness',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $lampArr = explode(',', $lamp_id);        // $lampList = $this->Lamp_model->get_list_in('L.id', $lampArr, 'L.id,N.protocoltype', array());        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/lampcontrol/dimming_asy';                foreach ($lampArr as $l) {            doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l,'lightness'=>$lightness,'role'=>$role]);        }                exit();    }    public function dimming_asy(){        set_time_limit(0);        $lamp_id = intval($this->input->post('lamp_id',true));        $lightness = intval($this->input->post('lightness',true));        $clientid = $this->input->post('clientid',true);        $version = $this->input->post('version',true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $lampData = $this->Lamp_model->get_one(['id'=>$lamp_id],'number,address,id');        $seq = get_seq();        $seq = '01';        $sendData = '12'.PROTOCOL_VERSION.$seq.'0000000000';        $sendData .= $lightness > 0 ? '01' : '00';        $lightness2 = empty($lightness) ? '00' : '00'.base_convert($lightness, 10, 16);        $sendData .= strlen($lightness2) == 2 ? $lightness2 : substr($lightness2, -2);        $sendData .= '00';        $sendData .= crc16(pack('H*',$sendData));        $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*',$sendData),30);        if (empty($res)) {            $data = ['code'=>'0016','status'=>2,'msg'=>$this->response['0016'],'data'=>['number'=>$lampData['number'],'type'=>'dimming','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }else{            $res['msg'] = unpack('H*', $res['msg'])[1];            if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'], -4)) && strtolower(substr($res['msg'], 18,2)) == '01') {                if ($lightness != 0) {                    $this->Lamp_model->update(array('status'=>1,'lighteness'=>$lightness),array('id'=>$lampData['id']));                }else{                    $this->Lamp_model->update(array('status'=>0,'lighteness'=>0),array('id'=>$lampData['id']));                }                $lampData = $this->Lamp_model->get_project_company(array('L.id'=>$lamp_id),'P.projectname,L.number,L.address');                $this->add_operation_log('cmd',"\"{$lampData['projectname']}\"项目下的编号为\"{$lampData['number']}\"、无线模块地址为\"{$lampData['address']}\"的路灯调光\"{$lightness}%\"",0);                $this->add_operation_log('cmd',"Light dimming:\"{$lampData['number']}\".Wireless module address:\"{$lampData['address']}\".Project name:\"{$lampData['projectname']}\".Lighteness:\"{$lightness}%\"",0,1);                $data = ['code'=>'0000','status'=>2,'msg'=>$this->response['0000'],'data'=>['number'=>$lampData['number'],'type'=>'dimming','id'=>$lamp_id]];                exit(send_websocket($clientid,$data));            }else{                $data = ['code'=>'0010','status'=>2,'msg'=>$this->response['0010'],'data'=>['number'=>$lampData['number'],'type'=>'dimming','id'=>$lamp_id]];                exit(send_websocket($clientid,$data));            }        }    }    // 删除灯控(支持批量处理)    public function del(){        $role = $this->get_user_info('role');        $lamp_ids = $this->input->post('lamp_ids',true);        if (empty($lamp_ids)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $ids = explode(",", $lamp_ids);        // 获取灯控信息        $dataArr = $this->Lamp_model->get_list(['id'=>$ids]);        // 修改网络跟项目下灯控数量        foreach ($dataArr as $data) {            $temp = array();            $temp['faultcount'] = $data['isfaulted'] > 0 ? 1 : 0;            $temp['lampcount'] = 1;            $temp['projectid'] = $data['projectid'];            // $this->Network_model->minus_lamp_count($data);            $this->Project_model->minus_lamp_count($temp);            // $netData = $this->Network_model->getOne($data['networkid'],'gatewaytype,protocoltype');            // if ($netData['protocoltype'] == 6) $this->remove_device('00000000'.$data['address']);            // if (isset($netData) && $netData['gatewaytype'] == 'direct' && !empty($data['networkid'])) {// 直连设备            //     // 删除网络            //     // $this->Zone_model->delOne($data['networkid']);            //     $this->Network_model->delData(array('id'=>$data['networkid']));            //     $cmdstr = '{"cmd_type":"delete_network_cmd","cmd_id":'.$data['networkid'].'}';            //     // send_cmd($cmdstr,0);            //     if (isset($netData['protocoltype']) && $netData['protocoltype'] != 0) {            //         $cmdret = send_cmd($cmdstr,1,0,$netData['protocoltype']);            //         if ($cmdret === false) {            //             sleep(1);            //             $cmdret = send_cmd($cmdstr,1,0,$netData['protocoltype']);            //         }            //     }else{            //         $cmdret = send_cmd($cmdstr,0,0,$netData['protocoltype']);            //         if ($cmdret === false) {            //             sleep(1);            //             $cmdret = send_cmd($cmdstr,0,0,$netData['protocoltype']);            //         }            //     }            // }        }        // 删除灯控告警信息        $this->Alarm_model->delete(['lampid'=>$ids]);        foreach ($ids as $v) {            $lampData = $this->Lamp_model->get_project_company(array('L.id'=>$v),'P.projectname,L.number,L.address');            $this->add_operation_log('delete',"删除\"{$lampData['projectname']}\"项目下的编号为\"{$lampData['number']}\"、无线模块地址为\"{$lampData['address']}\"的路灯",0);            $this->add_operation_log('delete',"Delete lamp:\"{$lampData['number']}\".Wireless module address:\"{$lampData['address']}\".Project name:\"{$lampData['projectname']}\"",0,1);        }        $this->Lamp_model->delete(['id'=>$ids]);        $this->RealtimeInfoLog_model->delete(['lampid'=>$ids]);        exit(json_result('0000', $this->response['0000'], array()));    }    // 默认巡检设置    private function patrol_set($lampid,$time = null){        if (isset($time) && !empty($time)) {            $where['id']                = $lampid;            $update['patroltype']       = 1;            $update['patrolinterval']   = $time;            $update['updatetime']       = date("Y-m-d H:i:s");            $update['nextquerytime']    = date("Y-m-d H:i:s");            $ret = $this->Patrol_model->get_one($where);            if(empty($ret)){                $update['id'] = $where['id'];                $this->Patrol_model->add($update);            } else {                $this->Patrol_model->update($update,$where);            }            $res = $this->Lamp_model->getOne($lampid,'N.protocoltype,L.address,L.protocoltype AS lampprotocoltype');            if ($res['protocoltype'] == 4) {                $sendData = '000101A501';;                $sendData .= bitSubStr(base_convert(intval($time/5), 10, 16));                lampMqttCmd('/lamp/WriteIn/'.$res['address'],'/lamp/WriteOut/'.$res['address'],pack('H*', $sendData),0);                return;            }            if (isset($res['protocoltype']) && $res['protocoltype'] != 0) {                $cmd = '{"cmd_type":"set_patrol_cmd","cmd_id":'.$where['id'].',"broadcast":0}';                $cmdret = send_cmd($cmd,1, 0,$res['protocoltype']);                // if ($cmdret === false) {                //     sleep(1);                //     $cmdret = send_cmd($cmd,1, 0,$res['protocoltype']);                // }            }        }                //$cmd = '{"cmd_type":"patrol_cmd","cmd_id":'.$where['id'].',"broadcast":0}';        //$cmdret = send_cmd($cmd, 1);    }    // 更新负载设置    public function set_load(){        $username = $this->input->post('username',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $lamp_id = $this->input->post('lamp_id',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $workmode         = $this->input->post('workmode',true);        $worktimefirst    = $this->input->post('worktimefirst',true);        $workpowerfirst   = $this->input->post('workpowerfirst',true);        $worktimesencond  = $this->input->post('worktimesencond',true);        $workpowersencond = $this->input->post('workpowersencond',true);        $worktimethird    = $this->input->post('worktimethird',true);        $workpowerthird   = $this->input->post('workpowerthird',true);        $worktimeforth    = $this->input->post('worktimeforth',true);        $workpowerforth   = $this->input->post('workpowerforth',true);        $voptically       = $this->input->post('voptically',true);        $delaytime        = $this->input->post('delaytime',true);        $ledloadcurrent   = $this->input->post('ledloadcurrent',true);        $powercmd         = $this->input->post('powercmd',true);        $switchfeature    = $this->input->post('switchfeature',true);        $lampArr = explode(',', $lamp_id);        $lampList = $this->Lamp_model->get_list_in('L.id', $lampArr, 'L.id,N.protocoltype', array());        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/device/lampcontrol/set_load_asy';        foreach ($lampList as $l) {            if ($l['protocoltype'] == 0) {                doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'workmode'=>$workmode,'worktimefirst'=>$worktimefirst,'workpowerfirst'=>$workpowerfirst,'worktimesencond'=>$worktimesencond,'workpowersencond'=>$workpowersencond,'worktimethird'=>$worktimethird,'workpowerthird'=>$workpowerthird,'worktimeforth'=>$worktimeforth,'workpowerforth'=>$workpowerforth,'voptically'=>$voptically,'delaytime'=>$delaytime,'ledloadcurrent'=>$ledloadcurrent,'powercmd'=>$powercmd,'switchfeature'=>$switchfeature],30);            }else{                doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'workmode'=>$workmode,'worktimefirst'=>$worktimefirst,'workpowerfirst'=>$workpowerfirst,'worktimesencond'=>$worktimesencond,'workpowersencond'=>$workpowersencond,'worktimethird'=>$worktimethird,'workpowerthird'=>$workpowerthird,'worktimeforth'=>$worktimeforth,'workpowerforth'=>$workpowerforth,'voptically'=>$voptically,'delaytime'=>$delaytime,'ledloadcurrent'=>$ledloadcurrent,'powercmd'=>$powercmd,'switchfeature'=>$switchfeature]);            }                    }        exit();    }    //更新负载设置    public function set_load_asy(){        $res = $this->load_update();        $clientid = $this->input->post('clientid',true);        $lampid = $this->input->post('lamp_id',true);        $data = $this->Lamp_model->getData(array('id'=>$lampid),'projectid,networkid,address,number');        if ($res['msg'] == '0000') {            $projectData = $this->Project_model->getData(array('id'=>$data['projectid']),'projectname');            $networkData = $this->Network_model->getData(array('id'=>$data['networkid']),'networkname');                        $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯负载参数");            $this->add_operation_log('update',"Update the load setting of the street lamp:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",0,1);        }        if (empty($res['result'])) {            // exit(json_result($res['msg'],$res['msg'],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$res['msg'],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }else{            // exit(json_result($res['msg'],$this->response[$res['msg']],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$this->response[$res['msg']],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }    }    //更新负载设置    private function load_update(){        $where['relateid']          = $this->input->post('lamp_id',true);        $update['relateid']          = $this->input->post('lamp_id',true);        $update['workmode']         = $this->input->post('workmode',true);        $update['worktimefirst']    = $this->input->post('worktimefirst',true);        $update['workpowerfirst']   = $this->input->post('workpowerfirst',true);        $update['worktimesencond']  = $this->input->post('worktimesencond',true);        $update['workpowersencond'] = $this->input->post('workpowersencond',true);        $update['worktimethird']    = $this->input->post('worktimethird',true);        $update['workpowerthird']   = $this->input->post('workpowerthird',true);        $update['worktimeforth']    = $this->input->post('worktimeforth',true);        $update['workpowerforth']   = $this->input->post('workpowerforth',true);        $update['voptically']       = $this->input->post('voptically',true);        $update['delaytime']        = $this->input->post('delaytime',true);        $update['ledloadcurrent']   = $this->input->post('ledloadcurrent',true);        $update['powercmd']         = $this->input->post('powercmd',true);        $update['switchfeature']    = $this->input->post('switchfeature',true);        $update['updatetime']       = date("Y-m-d H:i:s");        return $this->load_set($where, $update, 0);    }    private function load_set($where,$update,$broadcast){        $ret = $this->Load_model->get_data_by_filter(['relateid'=>$update['relateid'],'cmdtype'=>0]);        if(empty($ret)){            // $update['id'] = $where['id'];            $id = $this->Load_model->insert($update);        } else {            $this->Load_model->update(['id'=>$ret['id']],$update);            $id = $ret['id'];        }                $cmd = '{"cmd_type":"load_param_cmd","cmd_id":'.$id.',"broadcast":'.$broadcast.'}';        $lampProData = $this->Lamp_model->getOne($where['relateid'],'N.protocoltype,L.address,L.protocoltype AS lampprotocoltype,N.deviceid');        if (($lampProData['protocoltype'] == 4 || $lampProData['protocoltype'] == 6) && $lampProData['lampprotocoltype'] == 0) {            $address = '';            if (mb_strlen($lampProData['address']) >= 8) {                $address = mb_substr($lampProData['address'], -8);            }else{                $address = '00000000';            }            $sendData = '10040010';            $sendData .= bitSubStr(base_convert($update['workmode'], 10, 16));            $sendData .= bitSubStr(base_convert($update['worktimefirst'], 10, 16));            $sendData .= bitSubStr(base_convert($update['workpowerfirst'], 10, 16));            $sendData .= bitSubStr(base_convert($update['worktimesencond'], 10, 16));            $sendData .= bitSubStr(base_convert($update['workpowersencond'], 10, 16));            $sendData .= bitSubStr(base_convert($update['worktimethird'], 10, 16));            $sendData .= bitSubStr(base_convert($update['workpowerthird'], 10, 16));            $sendData .= bitSubStr(base_convert($update['worktimeforth'], 10, 16));            $sendData .= bitSubStr(base_convert($update['workpowerforth'], 10, 16));            $sendData .= bitSubStr(base_convert($update['delaytime'], 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['voptically']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['ledloadcurrent']), 10, 16));            $sendData .= bitSubStr(base_convert($update['powercmd'], 10, 16));            $sendData .= bitSubStr(base_convert($update['switchfeature'], 10, 16));            $sum = 0;            for ($i=0; $i < mb_strlen($sendData)/2; $i++) {                 if ($i == 0) continue;                $t = mb_substr($sendData, $i*2,2);                $sum += base_convert($t, 16, 10);            }            $sum = base_convert($sum, 10, 16);            $sendData .= bitSubStr($sum);            $sendData = $address.$sendData;                        if ($lampProData['protocoltype'] == 4) {                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));            }else{                device_cmd($lampProData['deviceid'],pack('H*',$sendData));                $cmd = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                $info = send_lorawan_915($cmd);                $res = array();                if (!empty($info)) {                    $info = json_decode($info,true);                    if ($info && $info['res'] == 0) $res['msg'] = $info['resInfo'];                }            }                        if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else{                $msg1 = $res['msg'];                // 数据校验                $msg = mb_substr($msg1, 10);                $t = 0;                for ($i=0; $i < mb_strlen($msg) / 2 - 1; $i++) {                    $s = mb_substr($msg, $i*2,2);                    $t += base_convert($s, 16, 10);                }                $t = base_convert($t, 10, 16);                if (mb_strlen($t) > 2) {                    $t = mb_substr($t, -2);                }elseif($t <= 1){                    $t = '0'.$t;                }                if ($t == mb_substr($msg, -2)) {                      if (mb_substr($msg1, -10,-2) == '10040010') {                        return array('result'=>1,'msg'=>'0000');                    }else{                        return array('result'=>1,'msg'=>'0010');                    }                }else{                    return array('result'=>1,'msg'=>'0010');                }            }        }        if (isset($lampProData['protocoltype']) && $lampProData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            }        }                $res = array();         if (empty($cmdret)){            $res['result'] = 1;            $res['msg']    = '0016';            return $res;        }                if($cmdret === false){            $res['result'] = 1;            $res['msg']    = '0008';        } else {            $res = json_decode($cmdret, true);            if ($res['result'] == false) {                $res['result'] = 0;                $version = $this->input->post('version',true);                if (empty($version)) {                    $res['msg'] = empty($res['msg']) ? '未知错误' : transfer_error_tips($res['msg']);                }else{                    $res['msg'] = empty($res['msg']) ? 'Unknown error' : $res['msg'];                }            } else {                $res['result'] = 1;                $res['msg']    = '0000';            }        }        return $res;    }    // 新控制器更新负载设置    public function modbus_set_load(){        $data['username'] = $this->input->post('username',true);        $data['client_key'] = $this->input->post('client_key',true);        $data['token'] = $this->input->post('token',true);        $data['lamp_id'] = $this->input->post('lamp_id',true);        $data['clientid'] = $this->input->post('clientid',true);        $data['version'] = $this->session->userdata('version');        // $data['light_voltage']         = $this->input->post('light_voltage',true);        $data['intell_power']    = $this->input->post('intell_power',true);        $data['load_current']   = $this->input->post('load_current',true);        $data['light_delay']  = $this->input->post('light_delay',true);        $data['induction_delay'] = $this->input->post('induction_delay',true);        $data['first_light_time']    = $this->input->post('first_light_time',true);        $data['first_light_human_power']   = $this->input->post('first_light_human_power',true);        $data['first_light_unman_power']    = $this->input->post('first_light_unman_power',true);        $data['second_light_time']   = $this->input->post('second_light_time',true);        $data['second_light_human_power']       = $this->input->post('second_light_human_power',true);        $data['second_light_unman_power']        = $this->input->post('second_light_unman_power',true);        $data['third_light_time']   = $this->input->post('third_light_time',true);        $data['third_light_human_power']         = $this->input->post('third_light_human_power',true);        $data['third_light_unman_power']    = $this->input->post('third_light_unman_power',true);        $data['fourth_light_time']    = $this->input->post('fourth_light_time',true);        $data['fourth_light_human_power']    = $this->input->post('fourth_light_human_power',true);        $data['fourth_light_unman_power']    = $this->input->post('fourth_light_unman_power',true);        $data['fifth_light_time']    = $this->input->post('fifth_light_time',true);        $data['fifth_light_human_power']    = $this->input->post('fifth_light_human_power',true);        $data['fifth_light_unman_power']    = $this->input->post('fifth_light_unman_power',true);        $data['sixth_light_time']    = $this->input->post('sixth_light_time',true);        $data['sixth_light_human_power']    = $this->input->post('sixth_light_human_power',true);        $data['sixth_light_unman_power']    = $this->input->post('sixth_light_unman_power',true);        $data['seventh_light_time']    = $this->input->post('seventh_light_time',true);        $data['seventh_light_human_power']    = $this->input->post('seventh_light_human_power',true);        $data['seventh_light_unman_power']    = $this->input->post('seventh_light_unman_power',true);        $data['eighth_light_time']    = $this->input->post('eighth_light_time',true);        $data['eighth_light_human_power']    = $this->input->post('eighth_light_human_power',true);        $data['eighth_light_unman_power']    = $this->input->post('eighth_light_unman_power',true);        $data['ninth_light_time']    = $this->input->post('ninth_light_time',true);        $data['ninth_light_human_power']    = $this->input->post('ninth_light_human_power',true);        $data['ninth_light_unman_power']    = $this->input->post('ninth_light_unman_power',true);        $data['tenth_light_time']    = $this->input->post('tenth_light_time',true);        $data['tenth_light_human_power']    = $this->input->post('tenth_light_human_power',true);        $data['tenth_light_unman_power']    = $this->input->post('tenth_light_unman_power',true);        $data['begin_voltage']    = $this->input->post('begin_voltage',true);        $data['end_voltage']    = $this->input->post('end_voltage',true);        $data['end_current']    = $this->input->post('end_current',true);        foreach ($data as $key => $value) {            $data[$key] = urldecode($value);        }        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, json_encode($data).'------'.date('Y-m-d H:i:s').'');        fclose($file);        $lampArr = explode(',', $data['lamp_id']);        $lampList = $this->Lamp_model->get_list_in('L.id', $lampArr, 'L.id,N.protocoltype', array());        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/device/lampcontrol/modbus_set_load_asy';        foreach ($lampList as $l) {            $data['lamp_id'] = $l['id'];            if ($l['protocoltype'] == 0) {                doAsyncRequest($url,$data,30);            }else{                doAsyncRequest($url,$data);            }                    }        exit();    }    // 新控制器更新负载设置    public function modbus_set_load_asy(){        $res = $this->modbus_load_update();        $clientid = $this->input->post('clientid',true);        $lampid = $this->input->post('lamp_id',true);        $data = $this->Lamp_model->getData(array('id'=>$lampid),'projectid,networkid,address,number');        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '66666------'.date('Y-m-d H:i:s').'');        fclose($file);        if ($res['msg'] == '0000') {            $projectData = $this->Project_model->getData(array('id'=>$data['projectid']),'projectname');            $networkData = $this->Network_model->getData(array('id'=>$data['networkid']),'networkname');                        $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯负载参数");            $this->add_operation_log('update',"Update the load setting of the street lamp:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",0,1);        }        if (empty($res['result'])) {            // exit(json_result($res['msg'],$res['msg'],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$res['msg'],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            $file = fopen('../upload/test.txt', 'a+');        fwrite($file, json_encode($data).'---'.$clientid.'---'.date('Y-m-d H:i:s').'');        fclose($file);            exit(send_websocket($clientid,$data));        }else{            // exit(json_result($res['msg'],$this->response[$res['msg']],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$this->response[$res['msg']],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            $file = fopen('../upload/test.txt', 'a+');        fwrite($file, json_encode($data).'---'.$clientid.'---'.date('Y-m-d H:i:s').'');        fclose($file);            exit(send_websocket($clientid,$data));        }    }    private function format_date($date){        return intval(explode(':', $date)[0]) * 3600 + intval(explode(':', $date)[1]) * 60;    }    // 新控制器更新负载设置    private function modbus_load_update(){        $where['relateid']          = $this->input->post('lamp_id',true);        $data['relateid']          = $this->input->post('lamp_id',true);        // $data['light_voltage']         = $this->input->post('light_voltage',true);        $data['intell_power']    = $this->input->post('intell_power',true);        $data['load_current']   = $this->input->post('load_current',true);        $data['light_delay']  = $this->input->post('light_delay',true);        $data['induction_delay'] = $this->input->post('induction_delay',true);        $data['first_light_time']    = $this->input->post('first_light_time',true);        // $data['first_light_time']    = $data['first_light_time'] * 3600;        $data['first_light_time']    = $this->format_date($data['first_light_time']);        $data['first_light_human_power']   = $this->input->post('first_light_human_power',true);        $data['first_light_unman_power']    = $this->input->post('first_light_unman_power',true);        $data['second_light_time']   = $this->input->post('second_light_time',true);        // $data['second_light_time']    = $data['second_light_time'] * 3600;        $data['second_light_time']    = $this->format_date($data['second_light_time']);        $data['second_light_human_power']       = $this->input->post('second_light_human_power',true);        $data['second_light_unman_power']        = $this->input->post('second_light_unman_power',true);        $data['third_light_time']   = $this->input->post('third_light_time',true);        // $data['third_light_time']    = $data['third_light_time'] * 3600;        $data['third_light_time']    = $this->format_date($data['third_light_time']);        $data['third_light_human_power']         = $this->input->post('third_light_human_power',true);        $data['third_light_unman_power']    = $this->input->post('third_light_unman_power',true);        $data['fourth_light_time']    = $this->input->post('fourth_light_time',true);        // $data['fourth_light_time']    = $data['fourth_light_time'] * 3600;        $data['fourth_light_time']    = $this->format_date($data['fourth_light_time']);        $data['fourth_light_human_power']    = $this->input->post('fourth_light_human_power',true);        $data['fourth_light_unman_power']    = $this->input->post('fourth_light_unman_power',true);        $data['fifth_light_time']    = $this->input->post('fifth_light_time',true);        // $data['fifth_light_time']    = $data['fifth_light_time'] * 3600;        $data['fifth_light_time']    = $this->format_date($data['fifth_light_time']);        $data['fifth_light_human_power']    = $this->input->post('fifth_light_human_power',true);        $data['fifth_light_unman_power']    = $this->input->post('fifth_light_unman_power',true);        $data['sixth_light_time']    = $this->input->post('sixth_light_time',true);        // $data['sixth_light_time']    = $data['sixth_light_time'] * 3600;        $data['sixth_light_time']    = $this->format_date($data['sixth_light_time']);        $data['sixth_light_human_power']    = $this->input->post('sixth_light_human_power',true);        $data['sixth_light_unman_power']    = $this->input->post('sixth_light_unman_power',true);        $data['seventh_light_time']    = $this->input->post('seventh_light_time',true);        // $data['seventh_light_time']    = $data['seventh_light_time'] * 3600;        $data['seventh_light_time']    = $this->format_date($data['seventh_light_time']);        $data['seventh_light_human_power']    = $this->input->post('seventh_light_human_power',true);        $data['seventh_light_unman_power']    = $this->input->post('seventh_light_unman_power',true);        $data['eighth_light_time']    = $this->input->post('eighth_light_time',true);        // $data['eighth_light_time']    = $data['eighth_light_time'] * 3600;        $data['eighth_light_time']    = $this->format_date($data['eighth_light_time']);        $data['eighth_light_human_power']    = $this->input->post('eighth_light_human_power',true);        $data['eighth_light_unman_power']    = $this->input->post('eighth_light_unman_power',true);        $data['ninth_light_time']    = $this->input->post('ninth_light_time',true);        // $data['ninth_light_time']    = $data['ninth_light_time'] * 3600;        $data['ninth_light_time']    = $this->format_date($data['ninth_light_time']);        $data['ninth_light_human_power']    = $this->input->post('ninth_light_human_power',true);        $data['ninth_light_unman_power']    = $this->input->post('ninth_light_unman_power',true);        $data['tenth_light_time']    = $this->input->post('tenth_light_time',true);        // $data['tenth_light_time']    = $data['tenth_light_time'] * 3600;        $data['tenth_light_time']    = $this->format_date($data['tenth_light_time']);        $data['tenth_light_human_power']    = $this->input->post('tenth_light_human_power',true);        $data['tenth_light_unman_power']    = $this->input->post('tenth_light_unman_power',true);        $data['begin_voltage']    = $this->input->post('begin_voltage',true);        $data['end_voltage']    = $this->input->post('end_voltage',true);        $data['end_current']    = $this->input->post('end_current',true);        $data['updatetime']       = date("Y-m-d H:i:s");        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, json_encode($data).'------'.date('Y-m-d H:i:s').'');        fclose($file);        return $this->modbus_load_set($where, $data, 0);    }    private function modbus_load_set($where,$update,$broadcast){        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '11111------'.date('Y-m-d H:i:s').'');        fclose($file);        $ret = $this->Modbus_load_model->get_data_by_filter(['relateid'=>$update['relateid'],'cmdtype'=>0]);        if(empty($ret)){            // $update['id'] = $where['id'];            $id = $this->Modbus_load_model->insert($update);        } else {            $this->Modbus_load_model->update(['id'=>$ret['id']],$update);            $id = $ret['id'];        }        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '22222------'.date('Y-m-d H:i:s').'');        fclose($file);        $cmd = '{"cmd_type":"modbus_load_param_cmd","cmd_id":'.$id.',"broadcast":'.$broadcast.'}';        $lampProData = $this->Lamp_model->getOne($where['relateid'],'N.protocoltype,N.deviceid,L.protocoltype as lampprotocoltype,L.address');        if ($lampProData['protocoltype'] == 4 && $lampProData['lampprotocoltype'] == 1) {            $sendData = '0103e08d0027a23b';                        $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));            if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else{                if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                    $old = $res['msg'];                    $data = array();                    $sendData = '';                    $sendData .= doubBitSubStr(base_convert(intval($update['load_current']*100), 10, 16)).''; // 负载电流                    $sendData .= doubBitSubStr(base_convert(intval($update['intell_power']), 10, 16)).''; // 智能功率                    $sendData .= doubBitSubStr(base_convert(intval($update['light_delay']), 10,16)).''; // 光控延时                    $sendData .= doubBitSubStr(base_convert(intval($update['induction_delay']), 10,16)).''; // 感应延时                    $sendData .= substr($old, 22,4);                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_time']), 10,16)).''; // 第一段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_human_power']), 10,16)).''; // 第一段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_unman_power']), 10,16)).''; // 第一段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_time']), 10,16)).''; // 第二段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_human_power']), 10,16)).''; // 第二段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_unman_power']), 10,16)).''; // 第二段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_time']), 10,16)).''; // 第三段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_human_power']), 10,16)).''; // 第三段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_unman_power']), 10,16)).''; // 第三段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_time']), 10,16)).''; // 第四段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_human_power']), 10,16)).''; // 第四段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_unman_power']), 10,16)).''; // 第四段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_time']), 10,16)).''; // 第五段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_human_power']), 10,16)).''; // 第五段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_unman_power']), 10,16)).''; // 第五段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_time']), 10,16)).''; // 第六段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_human_power']), 10,16)).''; // 第六段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_unman_power']), 10,16)).''; // 第六段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_time']), 10,16)).''; // 第七段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_human_power']), 10,16)).''; // 第七段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_unman_power']), 10,16)).''; // 第七段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_time']), 10,16)).''; // 第八段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_human_power']), 10,16)).''; // 第八段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_unman_power']), 10,16)).''; // 第八段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_time']), 10,16)).''; // 第九段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_human_power']), 10,16)).''; // 第九段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_unman_power']), 10,16)).''; // 第九段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_time']), 10,16)).''; // 晨亮时间                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_human_power']), 10,16)).''; // 晨亮有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_unman_power']), 10,16)).''; // 晨亮无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['begin_voltage']*10), 10, 16)).''; // 智能功率USER1起始电压                    $sendData .= doubBitSubStr(base_convert(intval($update['end_voltage']*10), 10, 16)).''; // 智能功率USER1终止电压                    $sendData .= substr($old, 154,4);                    $sendData .= doubBitSubStr(base_convert(intval($update['end_current']*100), 10, 16)).''; // 智能功率USER1终止电流                    $len = doubBitSubStr(base_convert(intval(mb_strlen($sendData)/4), 10, 16)).bitSubStr(base_convert(intval(mb_strlen($sendData)/2), 10, 16));                    $sendData = '0110e08d'.$len.$sendData;                    $sendData .= crc16(pack('H*',$sendData));                    $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));                    if (empty($res)) {                        return array('result'=>1,'msg'=>'0016');                    }else{                        if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                            return array('result'=>1,'msg'=>'0000');                        }else{                            return array('result'=>1,'msg'=>'0010');                        }                    }                }else{                    return array('result'=>1,'msg'=>'0010');                }            }                    }elseif ($lampProData['protocoltype'] == 6 && $lampProData['lampprotocoltype'] == 1) {            $cmdLine='0103e08d0027a23b';            //$cmdLine .= crc16(pack('H*',$cmdLine));            device_cmd($lampProData['deviceid'],pack('H*',$cmdLine));            $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';            $res=send_lorawan_915($cmdLine);            if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else {                $res=json_decode($res,true);                $cmdRes=$res['resInfo'];                if(strtolower(substr($cmdRes, 0,6)) == '01034e'){                    $old = $cmdRes;                    $data = array();                    $sendData = '';                    $sendData .= doubBitSubStr(base_convert(intval($update['load_current']*100), 10, 16)).''; // 负载电流                    $sendData .= doubBitSubStr(base_convert(intval($update['intell_power']), 10, 16)).''; // 智能功率                    $sendData .= doubBitSubStr(base_convert(intval($update['light_delay']), 10,16)).''; // 光控延时                    $sendData .= doubBitSubStr(base_convert(intval($update['induction_delay']), 10,16)).''; // 感应延时                    $sendData .= substr($old, 22,4);                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_time']), 10,16)).''; // 第一段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_human_power']), 10,16)).''; // 第一段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['first_light_unman_power']), 10,16)).''; // 第一段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_time']), 10,16)).''; // 第二段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_human_power']), 10,16)).''; // 第二段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['second_light_unman_power']), 10,16)).''; // 第二段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_time']), 10,16)).''; // 第三段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_human_power']), 10,16)).''; // 第三段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['third_light_unman_power']), 10,16)).''; // 第三段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_time']), 10,16)).''; // 第四段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_human_power']), 10,16)).''; // 第四段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fourth_light_unman_power']), 10,16)).''; // 第四段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_time']), 10,16)).''; // 第五段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_human_power']), 10,16)).''; // 第五段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['fifth_light_unman_power']), 10,16)).''; // 第五段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_time']), 10,16)).''; // 第六段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_human_power']), 10,16)).''; // 第六段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['sixth_light_unman_power']), 10,16)).''; // 第六段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_time']), 10,16)).''; // 第七段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_human_power']), 10,16)).''; // 第七段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['seventh_light_unman_power']), 10,16)).''; // 第七段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_time']), 10,16)).''; // 第八段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_human_power']), 10,16)).''; // 第八段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['eighth_light_unman_power']), 10,16)).''; // 第八段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_time']), 10,16)).''; // 第九段亮灯时间                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_human_power']), 10,16)).''; // 第九段有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['ninth_light_unman_power']), 10,16)).''; // 第九段无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_time']), 10,16)).''; // 晨亮时间                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_human_power']), 10,16)).''; // 晨亮有人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['tenth_light_unman_power']), 10,16)).''; // 晨亮无人功率                    $sendData .= doubBitSubStr(base_convert(intval($update['begin_voltage']*10), 10, 16)).''; // 智能功率USER1起始电压                    $sendData .= doubBitSubStr(base_convert(intval($update['end_voltage']*10), 10, 16)).''; // 智能功率USER1终止电压                    $sendData .= substr($old, 154,4);                    $sendData .= doubBitSubStr(base_convert(intval($update['end_current']*100), 10, 16)).''; // 智能功率USER1终止电流                    $len = strlen($sendData)/4;                    $con1 = substr($sendData,0,20*4);                    $con2 = substr($sendData,20*4);                    $address1='e08d';                    $address2=substr('0000'.base_convert(base_convert($address1,16,10)+20,10,16),-4);                    $l1=substr('0000'.base_convert(20,10,16),-4);                    $l2=substr('00'.base_convert(40,10,16),-2);                    $cmd1='0110'.$address1.$l1.$l2.$con1;                    $cmd1 .=crc16(pack('H*',$cmd1));                    device_cmd($lampProData['deviceid'],pack('H*',$cmd1));                    $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                    $res=send_lorawan_915($cmdLine);                    $file = fopen('./file/loraWan_loader.txt', 'a+');                    fwrite($file, date('Y-m-d H:i:s').'----'.$res.' ');                    fwrite($file, date('Y-m-d H:i:s').'----'.$len.' ');                    fwrite($file, date('Y-m-d H:i:s').'----'.$sendData.' ');                    fwrite($file, date('Y-m-d H:i:s').'----'.$cmd1.' ');                    fclose($file);                    if (empty($res)) {                        return array('result'=>1,'msg'=>'0016');                    }else{                        $res = json_decode($res,true);                        if (!isset($res['resInfo']) || strtolower($res['resInfo']) != '0110e08d001467ed') return array('result'=>1,'msg'=>'0016');                        $l1=substr('0000'.base_convert(19,10,16),-4);                        $l2=substr('00'.base_convert(38,10,16),-2);                        $cmd2='0110'.$address2.$l1.$l2.$con2;                        $cmd2 .=crc16(pack('H*',$cmd2));                        device_cmd($lampProData['deviceid'],pack('H*',$cmd2));                        $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                        $res=send_lorawan_915($cmdLine);                        $file = fopen('./file/loraWan_loader.txt', 'a+');                        fwrite($file, date('Y-m-d H:i:s').'----'.$res.' ');                        fclose($file);                        if (empty($res)) {                            return array('result'=>1,'msg'=>'0016');                        }else{                            $res = json_decode($res,true);                            if (!isset($res['resInfo']) || strtolower($res['resInfo']) != '0110e0a10013e7e6') return array('result'=>1,'msg'=>'0016');                            return array('result'=>1,'msg'=>'0000');                        }                    }//                    $cmdLine='0110e08d00274e'.$sendData;//                    $cmdLine .= crc16(pack('H*',$cmdLine));//                    device_cmd($lampProData['deviceid'],pack('H*',$cmdLine));//                    $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';//                    $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';//                    $res=send_lorawan_915($cmdLine);//                    $file = fopen('./file/loraWan_loader.txt', 'a+');//                    fwrite($file, date('Y-m-d H:i:s').'----'.$res.' ');//                    fclose($file);//                    if (empty($res)) {//                        return array('result'=>1,'msg'=>'0016');//                    }else {//                        $file = fopen('./file/loraWan_loader.txt', 'a+');//                        fwrite($file, date('Y-m-d H:i:s').'----'.$res.' ');//                        fclose($file);//                        $res=json_decode($res,true);//                        $cmdRes2=$res['resInfo'];//                        if(strtolower(substr($cmdRes2,0,6))=='01034e') {//                            return array('result'=>1,'msg'=>'0000');//                        }else{//                            return array('result'=>1,'msg'=>'0010');//                        }//                    }                }else{                    return array('result'=>1,'msg'=>'0010');                }            }        }        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '333333------'.date('Y-m-d H:i:s').'');        fclose($file);        if (isset($lampProData['protocoltype']) && $lampProData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            }        }        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '44444------'.date('Y-m-d H:i:s').'');        fclose($file);        $res = array();         if (empty($cmdret)){            $res['result'] = 1;            $res['msg']    = '0016';            return $res;        }                if($cmdret === false){            $res['result'] = 1;            $res['msg']    = '0008';        } else {            $res = json_decode($cmdret, true);            if ($res['result'] == false) {                $res['result'] = 0;                $version = $this->input->post('version',true);                if (empty($version)) {                    $res['msg'] = empty($res['msg']) ? '未知错误' : transfer_error_tips($res['msg']);                }else{                    $res['msg'] = empty($res['msg']) ? 'Unknown error' : $res['msg'];                }            } else {                $res['result'] = 1;                $res['msg']    = '0000';            }        }        $file = fopen('../upload/test.txt', 'a+');        fwrite($file, '55555------'.date('Y-m-d H:i:s').'');        fclose($file);        return $res;    }    // 更新蓄电池设置    public function set_battery(){        $username = $this->input->post('username',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $lamp_id = $this->input->post('lamp_id',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $batterytype              = $this->input->post('batterytype',true);//蓄电池类型        $capacity                 = $this->input->post('capacity',true);//蓄电池容量        $vpromotecharge           = $this->input->post('vpromotecharge',true);//提升充电电压/过充电压(锂电池)        $voverdischargerecover    = $this->input->post('voverdischargerecover',true);//过放恢复电压        $vpromoterecover          = $this->input->post('vpromoterecover',true);//提升充电恢复电压/过充返回电压(锂电池)        $voverdischarge           = $this->input->post('voverdischarge',true);//过放电压        if ($batterytype == 1) {            $vsystem                  = $this->input->post('vsystem',true);//系统电压            $minusnocharge            = $this->input->post('minusnocharge',true);//零下禁充            $chargemode               = $this->input->post('chargemode',true);//充电模式        } else {            $vovervoltage             = $this->input->post('vovervoltage',true);            $vlimitedcharge           = $this->input->post('vlimitedcharge',true);            $vbalancecharge           = $this->input->post('vbalancecharge',true);            $vfloatingcharge          = $this->input->post('vfloatingcharge',true);            $vundervoltagewarn        = $this->input->post('vundervoltagewarn',true);            $balancechargetime        = $this->input->post('balancechargetime',true);            $promotechargetime        = $this->input->post('promotechargetime',true);            $balanceinterval          = $this->input->post('balanceinterval',true);            $tempcompensation         = $this->input->post('tempcompensation',true);            $tempcompmax              = $this->input->post('tempcompmax',true);            $tempcompmin              = $this->input->post('tempcompmin',true);            $turnfloatingcurrent      = $this->input->post('turnfloatingcurrent',true);        }        $lampArr = explode(',', $lamp_id);        $lampList = $this->Lamp_model->get_list_in('L.id', $lampArr, 'L.id,N.protocoltype', array());        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/device/lampcontrol/set_battery_asy';        foreach ($lampList as $l) {            if ($l['protocoltype'] == 0) {                if ($batterytype == 1) {                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'batterytype'=>$batterytype,'capacity'=>$capacity,'vpromotecharge'=>$vpromotecharge,'voverdischargerecover'=>$voverdischargerecover,'vpromoterecover'=>$vpromoterecover,'voverdischarge'=>$voverdischarge,'vsystem'=>$vsystem,'minusnocharge'=>$minusnocharge,'chargemode'=>$chargemode],30);                }else{                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'batterytype'=>$batterytype,'capacity'=>$capacity,'vpromotecharge'=>$vpromotecharge,'voverdischargerecover'=>$voverdischargerecover,'vpromoterecover'=>$vpromoterecover,'voverdischarge'=>$voverdischarge,'vovervoltage'=>$vovervoltage,'vlimitedcharge'=>$vlimitedcharge,'vbalancecharge'=>$vbalancecharge,'vfloatingcharge'=>$vfloatingcharge,'vundervoltagewarn'=>$vundervoltagewarn,'balancechargetime'=>$balancechargetime,'promotechargetime'=>$promotechargetime,'balanceinterval'=>$balanceinterval,'tempcompensation'=>$tempcompensation,'tempcompmax'=>$tempcompmax,'tempcompmin'=>$tempcompmin,'turnfloatingcurrent'=>$turnfloatingcurrent],30);                }            }else{                if ($batterytype == 1) {                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'batterytype'=>$batterytype,'capacity'=>$capacity,'vpromotecharge'=>$vpromotecharge,'voverdischargerecover'=>$voverdischargerecover,'vpromoterecover'=>$vpromoterecover,'voverdischarge'=>$voverdischarge,'vsystem'=>$vsystem,'minusnocharge'=>$minusnocharge,'chargemode'=>$chargemode]);                }else{                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'batterytype'=>$batterytype,'capacity'=>$capacity,'vpromotecharge'=>$vpromotecharge,'voverdischargerecover'=>$voverdischargerecover,'vpromoterecover'=>$vpromoterecover,'voverdischarge'=>$voverdischarge,'vovervoltage'=>$vovervoltage,'vlimitedcharge'=>$vlimitedcharge,'vbalancecharge'=>$vbalancecharge,'vfloatingcharge'=>$vfloatingcharge,'vundervoltagewarn'=>$vundervoltagewarn,'balancechargetime'=>$balancechargetime,'promotechargetime'=>$promotechargetime,'balanceinterval'=>$balanceinterval,'tempcompensation'=>$tempcompensation,'tempcompmax'=>$tempcompmax,'tempcompmin'=>$tempcompmin,'turnfloatingcurrent'=>$turnfloatingcurrent]);                }            }                    }        exit();    }    public function set_battery_asy(){        $res = $this->battery_update();        $clientid = $this->input->post('clientid',true);        $lampid = $this->input->post('lamp_id',true);        $data = $this->Lamp_model->getData(array('id'=>$lampid),'projectid,networkid,address,number');        if ($res['msg'] == '0000') {            $projectData = $this->Project_model->getData(array('id'=>$data['projectid']),'projectname');            $networkData = $this->Network_model->getData(array('id'=>$data['networkid']),'networkname');                        $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯蓄电池参数");            $this->add_operation_log('update',"Update the lamp battery setting:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",0,1);        }        if (empty($res['result'])) {            // exit(json_result($res['msg'],$res['msg'],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$res['msg'],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }else{            // exit(json_result($res['msg'],$this->response[$res['msg']],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$this->response[$res['msg']],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }    }    //更新蓄电池设置    private function battery_update(){        $where['id']                        = $this->input->post('lamp_id',true);//路灯id        $update['batterytype']              = $this->input->post('batterytype',true);//蓄电池类型        $update['capacity']                 = $this->input->post('capacity',true);//蓄电池容量        $update['vpromotecharge']           = $this->input->post('vpromotecharge',true);//提升充电电压/过充电压(锂电池)        $update['voverdischargerecover']    = $this->input->post('voverdischargerecover',true);//过放恢复电压        $update['vpromoterecover']          = $this->input->post('vpromoterecover',true);//提升充电恢复电压/过充返回电压(锂电池)        $update['voverdischarge']           = $this->input->post('voverdischarge',true);//过放电压        $update['updatetime']               = date("Y-m-d H:i:s");//更新时间        if ($update['batterytype'] == 1) {            $update['vovervoltage']             = $update['vpromotecharge']+2;//超压电压             $update['vlimitedcharge']           = $update['vpromotecharge']+1;//充电限制电压            $update['vbalancecharge']           = $update['vpromotecharge'];//均衡充电电压            $update['vfloatingcharge']          = $update['vpromoterecover'];//浮充充电电压            $update['vundervoltagewarn']        = 12;//欠压警告电压            $update['balancechargetime']        = 2;//均衡充电时间            $update['promotechargetime']        = 2;//提升充电时间             $update['balanceinterval']          = 30;//均衡充电间隔            $update['tempcompensation']         = 4;//温度补偿系数             $update['tempcompmax']              = 60;//温度补偿最高温度             $update['tempcompmin']              = 0;//温度补偿最低温度             $update['turnfloatingcurrent']      = 1;//转浮充的电流             $update['vsystem']                  = $this->input->post('vsystem',true);//系统电压            $update['minusnocharge']            = $this->input->post('minusnocharge',true);//零下禁充            $update['chargemode']               = $this->input->post('chargemode',true);//充电模式        } else {            $update['vovervoltage']             = $this->input->post('vovervoltage',true);            $update['vlimitedcharge']           = $this->input->post('vlimitedcharge',true);            $update['vbalancecharge']           = $this->input->post('vbalancecharge',true);            $update['vfloatingcharge']          = $this->input->post('vfloatingcharge',true);            $update['vundervoltagewarn']        = $this->input->post('vundervoltagewarn',true);            $update['balancechargetime']        = $this->input->post('balancechargetime',true);            $update['promotechargetime']        = $this->input->post('promotechargetime',true);            $update['balanceinterval']          = $this->input->post('balanceinterval',true);            $update['tempcompensation']         = $this->input->post('tempcompensation',true);            $update['tempcompmax']              = $this->input->post('tempcompmax',true);            $update['tempcompmin']              = $this->input->post('tempcompmin',true);            $update['turnfloatingcurrent']      = $this->input->post('turnfloatingcurrent',true);            $update['vsystem']                  = 12;            $update['minusnocharge']            = 0;            $update['chargemode']               = 0;        }        foreach ($update as $v) {            if ($v === null || $v === '') {                $lampData = $this->Lamp_model->getOne($where['id'],'number');                $data = ['code'=>'0007','status'=>2,'msg'=>$this->response['0007'],'data'=>['number'=>$lampData['number'],'type'=>'set_load','id'=>$where['id']]];                exit(send_websocket($clientid,$data));            }        }        return $this->battery_set($where, $update, 0);         }    private function battery_set($where,$update,$broadcast){        $ret = $this->Battery_model->getOne($where['id']);        if(empty($ret)){            $update['id'] = $where['id'];            $this->Battery_model->insert($update);        } else {            $this->Battery_model->update($where,$update);        }                $cmd = '{"cmd_type":"battery_cmd","cmd_id":'.$where['id'].',"broadcast":'.$broadcast.'}';        $lampProData = $this->Lamp_model->getOne($where['id'],'N.protocoltype,L.address,L.protocoltype AS lampprotocoltype,N.deviceid');        if (($lampProData['protocoltype'] == 4 || $lampProData['protocoltype'] == 6) && $lampProData['lampprotocoltype'] == 0) {            $address = '';            if (mb_strlen($lampProData['address']) >= 8) {                $address = mb_substr($lampProData['address'], -8);            }else{                $address = '00000000';            }            $sendData = '10032820';            $sendData .= doubBitSubStr(base_convert($update['capacity'], 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vovervoltage']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vlimitedcharge']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vbalancecharge']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vpromotecharge']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vfloatingcharge']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vpromoterecover']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['voverdischargerecover']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['vundervoltagewarn']*10), 10, 16));            $sendData .= doubBitSubStr(base_convert(intval($update['voverdischarge']*10), 10, 16));            $sendData .= bitSubStr(base_convert($update['balancechargetime'], 10, 16));            $sendData .= bitSubStr(base_convert($update['promotechargetime'], 10, 16));            $sendData .= bitSubStr(base_convert($update['balanceinterval'], 10, 16));            $sendData .= bitSubStr(base_convert($update['tempcompensation'], 10, 16));            $sendData .= bitEncode($update['tempcompmax']);            $sendData .= bitEncode($update['tempcompmin']);            $sendData .= doubBitSubStr(base_convert(intval($update['turnfloatingcurrent']*100), 10, 16));            $sendData .= bitSubStr(base_convert($update['batterytype'], 10, 16));            $sendData .= bitSubStr(base_convert($update['vsystem'], 10, 16));            $sendData .= bitSubStr(base_convert($update['minusnocharge'], 10, 16));            $sendData .= bitSubStr(base_convert($update['chargemode'], 10, 16));            $sum = 0;            for ($i=0; $i < mb_strlen($sendData)/2; $i++) {                 if ($i == 0) continue;                $t = mb_substr($sendData, $i*2,2);                $sum += base_convert($t, 16, 10);            }            $sum = base_convert($sum, 10, 16);            $sendData .= bitSubStr($sum);            $sendData = $address.$sendData;                        if ($lampProData['protocoltype'] == 4) {                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));            }else{                device_cmd($lampProData['deviceid'],pack('H*',$sendData));                $cmd = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                $info = send_lorawan_915($cmd);                $res = array();                if (!empty($info)) {                    $info = json_decode($info,true);                    if ($info && $info['res'] == 0) $res['msg'] = $info['resInfo'];                }            }                        if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else{                $msg1 = $res['msg'];                // 数据校验                $msg = mb_substr($msg1, 10);                $t = 0;                for ($i=0; $i < mb_strlen($msg) / 2 - 1; $i++) {                    $s = mb_substr($msg, $i*2,2);                    $t += base_convert($s, 16, 10);                }                $t = base_convert($t, 10, 16);                if (mb_strlen($t) > 2) {                    $t = mb_substr($t, -2);                }elseif($t <= 1){                    $t = '0'.$t;                }                if ($t == mb_substr($msg, -2)) {                      if (mb_substr($msg1, -10,-2) == '10032820') {                        return array('result'=>1,'msg'=>'0000');                    }else{                        return array('result'=>1,'msg'=>'0010');                    }                }else{                    return array('result'=>1,'msg'=>'0010');                }            }        }        if (isset($lampProData['protocoltype']) && $lampProData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            }        }        $res = array();         if (empty($cmdret)){            $res['result'] = 1;            $res['msg']    = '0016';            return $res;        }        if($cmdret === false){            $res['result'] = 1;            $res['msg']    = '0008';        } else {            $res = json_decode($cmdret, true);            if ($res['result'] == false) {                $res['result'] = 0;                $version = $this->input->post('version',true);                if (empty($version)) {                    $res['msg'] = empty($res['msg']) ? '未知错误' : transfer_error_tips($res['msg']);                }else{                    $res['msg'] = empty($res['msg']) ? 'Unknown error' : $res['msg'];                }            } else {                $res['result'] = 1;                $res['msg']    = '0000';            }        }        return $res;    }    // 新控制器更新蓄电池设置    public function modbus_set_battery(){        $username = $this->input->post('username',true);        $client_key = $this->input->post('client_key',true);        $token = $this->input->post('token',true);        $lamp_id = $this->input->post('lamp_id',true);        $clientid = $this->input->post('clientid',true);        $version = $this->session->userdata('version');        $light_voltage         = $this->input->post('light_voltage',true);        $battery_type              = $this->input->post('battery_type',true);        $li_battery_type              = $this->input->post('li_battery_type',true);        $system_voltage                 = $this->input->post('system_voltage',true);        $increa_char_voltage           = $this->input->post('increa_char_voltage',true);        $float_char_voltage    = $this->input->post('float_char_voltage',true);        $over_dischar_return_voltage          = $this->input->post('over_dischar_return_voltage',true);        $over_dischar_voltage           = $this->input->post('over_dischar_voltage',true);        $char_upper_limit_temper           = $this->input->post('char_upper_limit_temper',true);        $char_lower_limit_temper           = $this->input->post('char_lower_limit_temper',true);        $dischar_upper_limit_temper           = $this->input->post('dischar_upper_limit_temper',true);        $dischar_lower_limit_temper           = $this->input->post('dischar_lower_limit_temper',true);        if ($battery_type == 0) {            $overvoltage                  = $this->input->post('overvoltage',true);            $char_limit_voltage            = $this->input->post('char_limit_voltage',true);            $equ_char_voltage               = $this->input->post('equ_char_voltage',true);            $increa_char_return_voltage               = $this->input->post('increa_char_return_voltage',true);            $equ_char_time               = $this->input->post('equ_char_time',true) * 60;            $increa_char_time               = $this->input->post('increa_char_time',true) * 60;            $balan_char_interval               = $this->input->post('balan_char_interval',true);            $temper_compen_coeff               = $this->input->post('temper_compen_coeff',true);        }        $lampArr = explode(',', $lamp_id);        $lampList = $this->Lamp_model->get_list_in('L.id', $lampArr, 'L.id,N.protocoltype', array());        $url = $_SERVER['REQUEST_SCHEME'].'://'.$_SERVER['SERVER_NAME'].'/api/device/lampcontrol/modbus_set_battery_asy';        foreach ($lampList as $l) {            if ($l['protocoltype'] == 0) {                if ($battery_type == 1) {                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'battery_type'=>$battery_type,'system_voltage'=>$system_voltage,'increa_char_voltage'=>$increa_char_voltage,'float_char_voltage'=>$float_char_voltage,'over_dischar_return_voltage'=>$over_dischar_return_voltage,'over_dischar_voltage'=>$over_dischar_voltage,'char_upper_limit_temper'=>$char_upper_limit_temper,'char_lower_limit_temper'=>$char_lower_limit_temper,'dischar_upper_limit_temper'=>$dischar_upper_limit_temper,'dischar_lower_limit_temper'=>$dischar_lower_limit_temper,'light_voltage'=>$light_voltage,'li_battery_type'=>$li_battery_type],30);                }else{                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'battery_type'=>$battery_type,'system_voltage'=>$system_voltage,'increa_char_voltage'=>$increa_char_voltage,'float_char_voltage'=>$float_char_voltage,'over_dischar_return_voltage'=>$over_dischar_return_voltage,'over_dischar_voltage'=>$over_dischar_voltage,'char_upper_limit_temper'=>$char_upper_limit_temper,'char_lower_limit_temper'=>$char_lower_limit_temper,'dischar_upper_limit_temper'=>$dischar_upper_limit_temper,'dischar_lower_limit_temper'=>$dischar_lower_limit_temper,'overvoltage'=>$overvoltage,'char_limit_voltage'=>$char_limit_voltage,'equ_char_voltage'=>$equ_char_voltage,'increa_char_return_voltage'=>$increa_char_return_voltage,'equ_char_time'=>$equ_char_time,'increa_char_time'=>$increa_char_time,'balan_char_interval'=>$balan_char_interval,'temper_compen_coeff'=>$temper_compen_coeff,'light_voltage'=>$light_voltage,'li_battery_type'=>$li_battery_type],30);                }            }else{                if ($battery_type == 1) {                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'battery_type'=>$battery_type,'system_voltage'=>$system_voltage,'increa_char_voltage'=>$increa_char_voltage,'float_char_voltage'=>$float_char_voltage,'over_dischar_return_voltage'=>$over_dischar_return_voltage,'over_dischar_voltage'=>$over_dischar_voltage,'char_upper_limit_temper'=>$char_upper_limit_temper,'char_lower_limit_temper'=>$char_lower_limit_temper,'dischar_upper_limit_temper'=>$dischar_upper_limit_temper,'dischar_lower_limit_temper'=>$dischar_lower_limit_temper,'light_voltage'=>$light_voltage,'li_battery_type'=>$li_battery_type]);                }else{                    doAsyncRequest($url,['clientid'=>$clientid,'username'=>$username,'client_key'=>$client_key,'token'=>$token,'version'=>$version,'lamp_id'=>$l['id'],'battery_type'=>$battery_type,'system_voltage'=>$system_voltage,'increa_char_voltage'=>$increa_char_voltage,'float_char_voltage'=>$float_char_voltage,'over_dischar_return_voltage'=>$over_dischar_return_voltage,'over_dischar_voltage'=>$over_dischar_voltage,'char_upper_limit_temper'=>$char_upper_limit_temper,'char_lower_limit_temper'=>$char_lower_limit_temper,'dischar_upper_limit_temper'=>$dischar_upper_limit_temper,'dischar_lower_limit_temper'=>$dischar_lower_limit_temper,'overvoltage'=>$overvoltage,'char_limit_voltage'=>$char_limit_voltage,'equ_char_voltage'=>$equ_char_voltage,'increa_char_return_voltage'=>$increa_char_return_voltage,'equ_char_time'=>$equ_char_time,'increa_char_time'=>$increa_char_time,'balan_char_interval'=>$balan_char_interval,'temper_compen_coeff'=>$temper_compen_coeff,'light_voltage'=>$light_voltage,'li_battery_type'=>$li_battery_type]);                }            }                    }        exit();    }    public function modbus_set_battery_asy(){        $res = $this->modbus_battery_update();        $clientid = $this->input->post('clientid',true);        $lampid = $this->input->post('lamp_id',true);        $data = $this->Lamp_model->getData(array('id'=>$lampid),'projectid,networkid,address,number');        if ($res['msg'] == '0000') {            $projectData = $this->Project_model->getData(array('id'=>$data['projectid']),'projectname');            $networkData = $this->Network_model->getData(array('id'=>$data['networkid']),'networkname');                        $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯蓄电池参数");            $this->add_operation_log('update',"Update the lamp battery setting:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",0,1);        }        if (empty($res['result'])) {            // exit(json_result($res['msg'],$res['msg'],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$res['msg'],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }else{            // exit(json_result($res['msg'],$this->response[$res['msg']],array('number'=>$data['number'])));            $data = ['code'=>$res['msg'],'status'=>2,'msg'=>$this->response[$res['msg']],'data'=>['number'=>$data['number'],'type'=>'set_load','id'=>$lamp_id]];            exit(send_websocket($clientid,$data));        }    }    //新控制器更新蓄电池设置    private function modbus_battery_update(){        $where['id']                        = $this->input->post('lamp_id',true);//路灯id        $update['light_voltage']              = $this->input->post('light_voltage',true);        $update['battery_type']              = $this->input->post('battery_type',true);        $update['li_battery_type']              = intval($this->input->post('li_battery_type',true));        $update['system_voltage']                 = $this->input->post('system_voltage',true);        $update['increa_char_voltage']           = $this->input->post('increa_char_voltage',true);        $update['float_char_voltage']    = $this->input->post('float_char_voltage',true);        $update['over_dischar_return_voltage']          = $this->input->post('over_dischar_return_voltage',true);        $update['over_dischar_voltage']           = $this->input->post('over_dischar_voltage',true);        $update['char_upper_limit_temper']           = $this->input->post('char_upper_limit_temper',true);        $update['char_lower_limit_temper']           = $this->input->post('char_lower_limit_temper',true);        $update['dischar_upper_limit_temper']           = $this->input->post('dischar_upper_limit_temper',true);        $update['dischar_lower_limit_temper']           = $this->input->post('dischar_lower_limit_temper',true);        if ($update['battery_type'] == 0) {            $update['overvoltage']                  = $this->input->post('overvoltage',true);            $update['char_limit_voltage']            = $this->input->post('char_limit_voltage',true);            $update['equ_char_voltage']               = $this->input->post('equ_char_voltage',true);            $update['increa_char_return_voltage']               = $this->input->post('increa_char_return_voltage',true);            $update['equ_char_time']               = $this->input->post('equ_char_time',true);            $update['increa_char_time']               = $this->input->post('increa_char_time',true);            $update['balan_char_interval']               = $this->input->post('balan_char_interval',true);            $update['temper_compen_coeff']               = $this->input->post('temper_compen_coeff',true);        }        foreach ($update as $v) {            if ($v === null || $v === '') {                $lampData = $this->Lamp_model->getOne($where['id'],'number');                $data = ['code'=>'0007','status'=>2,'msg'=>$this->response['0007'],'data'=>['number'=>$lampData['number'],'type'=>'set_load','id'=>$where['id']]];                exit(send_websocket($clientid,$data));            }        }                return $this->modbus_battery_set($where, $update, 0);         }    private function modbus_battery_set($where,$update,$broadcast){        $ret = $this->Modbus_battery_model->getOne($where['id']);        if(empty($ret)){            $update['id'] = $where['id'];            $this->Modbus_battery_model->insert($update);        } else {            $this->Modbus_battery_model->update($where,$update);        }                $cmd = '{"cmd_type":"modbus_battery_cmd","cmd_id":'.$where['id'].',"broadcast":'.$broadcast.'}';        $lampProData = $this->Lamp_model->getOne($where['id'],'N.protocoltype,N.deviceid,L.address,L.protocoltype as lampprotocoltype');        if ($lampProData['protocoltype'] == 4 && $lampProData['lampprotocoltype'] == 1) {            $sendData = '0103e0020020d212';                        $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));            if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else{                if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                    $old = $res['msg'];                    $data = array();                    $sendData = '';                    $sendData .= substr($old, 6,4);                    if ($update['battery_type'] == 0) { // 铅酸电池                        $sendData .= doubBitSubStr(base_convert(intval($update['system_voltage']), 10, 16)).''; // 系统电压                        $sendData .= doubBitSubStr(base_convert(10, 10, 16)).''; // 电池类型                        $sendData .= doubBitSubStr(base_convert(intval($update['overvoltage']*10), 10, 16)).''; // 超压电压                        $sendData .= doubBitSubStr(base_convert(intval($update['char_limit_voltage']*10), 10, 16)).''; // 充电限制电压                        $sendData .= doubBitSubStr(base_convert(intval($update['equ_char_voltage']*10), 10, 16)).''; // 均衡充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10), 10, 16)).''; // 提升充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['float_char_voltage']*10), 10, 16)).''; // 浮充充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_return_voltage']*10), 10, 16)).''; // 提升充电返回电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_return_voltage']*10), 10, 16)).''; // 过放返回电压                        $sendData .= substr($old, 46,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10), 10, 16)).''; // 过放电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10 - 5), 10, 16)).''; // 放电限制电压                        $sendData .= substr($old, 58,8);                        $sendData .= doubBitSubStr(base_convert(intval($update['equ_char_time']), 10, 16)).''; // 均衡充电时间                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_time']), 10, 16)).''; // 提升充电时间                        $sendData .= doubBitSubStr(base_convert(intval($update['balan_char_interval']), 10, 16)).''; // 均衡充电间隔                        $sendData .= doubBitSubStr(base_convert(intval($update['temper_compen_coeff']), 10, 16)).''; // 温度补偿系数                        $sendData .= substr($old, 82,2);                        $sendData .= bitEncode(intval($update['char_upper_limit_temper'])).''; // 充电上限温度                        $sendData .= substr($old, 86,2);                        $sendData .= bitEncode(intval($update['char_lower_limit_temper'])).''; // 充电下限温度                        $sendData .= substr($old, 90,2);                        $sendData .= bitEncode(intval($update['dischar_upper_limit_temper'])).''; // 放电上限温度                        $sendData .= substr($old, 94,2);                        $sendData .= bitEncode(intval($update['dischar_lower_limit_temper'])).''; // 放电下限温度                        $sendData .= substr($old, 98,24);                        $sendData .= doubBitSubStr(base_convert(intval($update['light_voltage']), 10, 16)).''; // 光控电压                        $sendData .= substr($old, 126,6);                        // 特殊功能系统电压设置                        $str = substr('00000000'.base_convert(substr($old, 132,6), 16, 2), -8);                        if ($update['system_voltage'] == 12) {                            $str = substr($str, 0,3).'00'.substr($str, -3);                        }else{                            $str = substr($str, 0,3).'01'.substr($str, -3);                        }                        // 特殊功能系统电池类型设置                        $str = '0'.substr($str, -7);                        $sendData .= bitSubStr(base_convert($str, 2, 16));                    }else{ // 锂电池                        $sendData .= doubBitSubStr(base_convert(intval($update['system_voltage']), 10, 16)).''; // 系统电压                        $sendData .= doubBitSubStr(base_convert(11, 10, 16)).''; // 电池类型                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10 + 2), 10, 16)).''; // 超压电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10 + 1), 10, 16)).''; // 充电限制电压                        $sendData .= substr($old, 26,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10), 10, 16)).''; // 充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['float_char_voltage']*10), 10, 16)).''; // 充电返回电压                        $sendData .= substr($old, 38,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_return_voltage']*10), 10, 16)).''; // 过放返回电压                        $sendData .= substr($old, 46,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10), 10, 16)).''; // 过放电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10 - 5), 10, 16)).''; // 放电限制电压                        $sendData .= substr($old, 58,24);                        $sendData .= substr($old, 82,2);                        $sendData .= bitEncode(intval($update['char_upper_limit_temper'])).''; // 充电上限温度                        $sendData .= substr($old, 86,2);                        $sendData .= bitEncode(intval($update['char_lower_limit_temper'])).''; // 充电下限温度                        $sendData .= substr($old, 90,2);                        $sendData .= bitEncode(intval($update['dischar_upper_limit_temper'])).''; // 放电上限温度                        $sendData .= substr($old, 94,2);                        $sendData .= bitEncode(intval($update['dischar_lower_limit_temper'])).''; // 放电下限温度                        $sendData .= substr($old, 98,24);                        $sendData .= doubBitSubStr(base_convert(intval($update['light_voltage']), 10, 16)).''; // 光控电压                        $sendData .= substr($old, 126,6);                        // 特殊功能系统电压设置                        $str = substr('00000000'.base_convert(substr($old, 132,6), 16, 2), -8);                        if ($update['system_voltage'] == 12) {                            $str = substr($str, 0,3).'00'.substr($str, -3);                        }elseif ($update['system_voltage'] == 24) {                            $str = substr($str, 0,3).'01'.substr($str, -3);                        }elseif ($update['system_voltage'] == 3) {                            $str = substr($str, 0,3).'10'.substr($str, -3);                        }else{                            $str = substr($str, 0,3).'11'.substr($str, -3);                        }                        // 特殊功能系统电池类型设置                        $str = '1'.substr($str, -7);                        $sendData .= bitSubStr(base_convert($str, 2, 16));                    }                    $len = doubBitSubStr(base_convert(intval(mb_strlen($sendData)/4), 10, 16)).bitSubStr(base_convert(intval(mb_strlen($sendData)/2), 10, 16));                    $sendData = '0110e002'.$len.$sendData;                    $sendData .= crc16(pack('H*',$sendData));                    $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampProData['address'],'/IDCOL/CmdOutput/'.$lampProData['address'],pack('H*','0001'.$sendData));                    if (empty($res)) {                        return array('result'=>1,'msg'=>'0016');                    }else{                        if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                            return array('result'=>1,'msg'=>'0000');                        }else{                            return array('result'=>1,'msg'=>'0010');                        }                    }                }else{                    return array('result'=>1,'msg'=>'0010');                }            }                    }        elseif ($lampProData['protocoltype']==6 && $lampProData['lampprotocoltype'] == 1){            $cmdLine='0103e0020020d212';            device_cmd($lampProData['deviceid'],pack('H*',$cmdLine));            $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';            $res=send_lorawan_915($cmdLine);            if (empty($res)) {                return array('result'=>1,'msg'=>'0016');            }else{                $res=json_decode($res,true);                $cmdRes=$res['resInfo'];                if(strtolower(substr($cmdRes,0,6))=='010340'){                    $old = $cmdRes;                    $data = array();                    $sendData = '';                    $sendData .= substr($old, 6,4);                    if ($update['battery_type'] == 0) { // 铅酸电池                        $sendData .= doubBitSubStr(base_convert(intval($update['system_voltage']), 10, 16)).''; // 系统电压                        $sendData .= doubBitSubStr(base_convert(10, 10, 16)).''; // 电池类型                        $sendData .= doubBitSubStr(base_convert(intval($update['overvoltage']*10), 10, 16)).''; // 超压电压                        $sendData .= doubBitSubStr(base_convert(intval($update['char_limit_voltage']*10), 10, 16)).''; // 充电限制电压                        $sendData .= doubBitSubStr(base_convert(intval($update['equ_char_voltage']*10), 10, 16)).''; // 均衡充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10), 10, 16)).''; // 提升充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['float_char_voltage']*10), 10, 16)).''; // 浮充充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_return_voltage']*10), 10, 16)).''; // 提升充电返回电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_return_voltage']*10), 10, 16)).''; // 过放返回电压                        $sendData .= substr($old, 46,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10), 10, 16)).''; // 过放电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10 - 5), 10, 16)).''; // 放电限制电压                        $sendData .= substr($old, 58,8);                        $sendData .= doubBitSubStr(base_convert(intval($update['equ_char_time']), 10, 16)).''; // 均衡充电时间                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_time']), 10, 16)).''; // 提升充电时间                        $sendData .= doubBitSubStr(base_convert(intval($update['balan_char_interval']), 10, 16)).''; // 均衡充电间隔                        $sendData .= doubBitSubStr(base_convert(intval($update['temper_compen_coeff']), 10, 16)).''; // 温度补偿系数                        $sendData .= substr($old, 82,2);                        $sendData .= bitEncode(intval($update['char_upper_limit_temper'])).''; // 充电上限温度                        $sendData .= substr($old, 86,2);                        $sendData .= bitEncode(intval($update['char_lower_limit_temper'])).''; // 充电下限温度                        $sendData .= substr($old, 90,2);                        $sendData .= bitEncode(intval($update['dischar_upper_limit_temper'])).''; // 放电上限温度                        $sendData .= substr($old, 94,2);                        $sendData .= bitEncode(intval($update['dischar_lower_limit_temper'])).''; // 放电下限温度                        $sendData .= substr($old, 98,24);                        $sendData .= doubBitSubStr(base_convert(intval($update['light_voltage']), 10, 16)).''; // 光控电压                        $sendData .= substr($old, 126,6);                        // 特殊功能系统电压设置                        $str = substr('00000000'.base_convert(substr($old, 132,6), 16, 2), -8);                        if ($update['system_voltage'] == 12) {                            $str = substr($str, 0,3).'00'.substr($str, -3);                        }else{                            $str = substr($str, 0,3).'01'.substr($str, -3);                        }                        // 特殊功能系统电池类型设置                        $str = '0'.substr($str, -7);                        $sendData .= bitSubStr(base_convert($str, 2, 16));                    }else{ // 锂电池                        $sendData .= doubBitSubStr(base_convert(intval($update['system_voltage']), 10, 16)).''; // 系统电压                        $sendData .= doubBitSubStr(base_convert(11, 10, 16)).''; // 电池类型                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10 + 2), 10, 16)).''; // 超压电压                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10 + 1), 10, 16)).''; // 充电限制电压                        $sendData .= substr($old, 26,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['increa_char_voltage']*10), 10, 16)).''; // 充电电压                        $sendData .= doubBitSubStr(base_convert(intval($update['float_char_voltage']*10), 10, 16)).''; // 充电返回电压                        $sendData .= substr($old, 38,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_return_voltage']*10), 10, 16)).''; // 过放返回电压                        $sendData .= substr($old, 46,4);                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10), 10, 16)).''; // 过放电压                        $sendData .= doubBitSubStr(base_convert(intval($update['over_dischar_voltage']*10 - 5), 10, 16)).''; // 放电限制电压                        $sendData .= substr($old, 58,24);                        $sendData .= substr($old, 82,2);                        $sendData .= bitEncode(intval($update['char_upper_limit_temper'])).''; // 充电上限温度                        $sendData .= substr($old, 86,2);                        $sendData .= bitEncode(intval($update['char_lower_limit_temper'])).''; // 充电下限温度                        $sendData .= substr($old, 90,2);                        $sendData .= bitEncode(intval($update['dischar_upper_limit_temper'])).''; // 放电上限温度                        $sendData .= substr($old, 94,2);                        $sendData .= bitEncode(intval($update['dischar_lower_limit_temper'])).''; // 放电下限温度                        $sendData .= substr($old, 98,24);                        $sendData .= doubBitSubStr(base_convert(intval($update['light_voltage']), 10, 16)).''; // 光控电压                        $sendData .= substr($old, 126,6);                        // 特殊功能系统电压设置                        $str = substr('00000000'.base_convert(substr($old, 132,6), 16, 2), -8);                        if ($update['system_voltage'] == 12) {                            $str = substr($str, 0,3).'00'.substr($str, -3);                        }elseif ($update['system_voltage'] == 24) {                            $str = substr($str, 0,3).'01'.substr($str, -3);                        }elseif ($update['system_voltage'] == 3) {                            $str = substr($str, 0,3).'10'.substr($str, -3);                        }else{                            $str = substr($str, 0,3).'11'.substr($str, -3);                        }                        // 特殊功能系统电池类型设置                        $str = '1'.substr($str, -7);                        $sendData .= bitSubStr(base_convert($str, 2, 16));                    }                    // $file = fopen('./file/loraWan_battery.txt', 'a+');                    // fwrite($file, date('Y-m-d H:i:s').'----'.$cmdLine.' ');                    $len = strlen($sendData)/4;                    $con1 = substr($sendData, 0, $len/2*4);                    $con2 = substr($sendData, $len/2*4);                    $address1 = 'e002';                    $address2 = substr('0000'.base_convert(base_convert($address1, 16, 10) + $len/2, 10, 16), -4);                    $l1 = substr('0000'.base_convert($len/2, 10, 16), -4);                    $l2 = substr('00'.base_convert($len/2, 10, 16), -2);                    $cmd1 = '0110'.$address1.$l1.$l2.$con1;                    $cmd1 .= crc16(pack('H*',$cmd1));                    device_cmd($lampProData['deviceid'],pack('H*',$cmd1));                    $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                    $res=send_lorawan_915($cmdLine);                    // $cmd2 = '0110'.$address2.$l1.$l2.$con2;                    // $cmd2 .= crc16(pack('H*',$cmd2));                    // $res = device_cmd($lampProData['deviceid'],pack('H*',$cmd2));                    // device_cmd($lampProData['deviceid'],pack('H*',$cmdLine));                                        // fwrite($file, date('Y-m-d H:i:s').'----battery');                    // fclose($file);                    if (empty($res)) {                        return array('result'=>1,'msg'=>'0016');                    }else{                        $cmd2 = '0110'.$address2.$l1.$l2.$con2;                        $cmd2 .= crc16(pack('H*',$cmd2));                        device_cmd($lampProData['deviceid'],pack('H*',$cmd2));                        $cmdLine = '{"type":"cmd","deviceId":"'.$lampProData['address'].'"}';                        $res=send_lorawan_915($cmdLine);                        if (empty($res)) {                            return array('result'=>1,'msg'=>'0016');                        }else{                            return array('result'=>1,'msg'=>'0000');                        }                        // $file = fopen('./file/loraWan_battery.txt', 'a+');                        // fwrite($file, date('Y-m-d H:i:s').'----'.$res.' ');                        // fclose($file);                        // $res=json_decode($res,true);                        // $cmdRes2=$res['resInfo'];                        // if(strtolower(substr($cmdRes2,0,6))=='010340') {                        //     return array('result'=>1,'msg'=>'0000');                        // }else{                        //     return array('result'=>1,'msg'=>'0010');                        // }                    }                }else{                    return array('result' => 1, 'msg' => '0010');                }            }        }        if (isset($lampProData['protocoltype']) && $lampProData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampProData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampProData['protocoltype']);            }        }        $res = array();         if (empty($cmdret)){            $res['result'] = 1;            $res['msg']    = '0016';            return $res;        }        if($cmdret === false){            $res['result'] = 1;            $res['msg']    = '0008';        } else {            $res = json_decode($cmdret, true);            if ($res['result'] == false) {                $res['result'] = 0;                $version = $this->input->post('version',true);                if (empty($version)) {                    $res['msg'] = empty($res['msg']) ? '未知错误' : transfer_error_tips($res['msg']);                }else{                    $res['msg'] = empty($res['msg']) ? 'Unknown error' : $res['msg'];                }            } else {                $res['result'] = 1;                $res['msg']    = '0000';            }        }        return $res;    }    // 添加编辑灯控    public function save() {        $role = $this->get_user_info('role');                $where['id']       = $this->input->post('lamp_id',true);        $data['projectid'] = $this->input->post('project_id',true);        $data['number']    = $this->input->post('lamp_no',true);        $data['section']   = $this->input->post('section',true);        $data['address']   = $this->input->post('address',true);        $data['longitude'] = doubleval($this->input->post('longitude',true));        $data['latitude']  = doubleval($this->input->post('latitude',true));                if ($data['longitude'] < -180 || $data['longitude'] > 180) exit(json_result('0421',$this->response['0421']));        if ($data['latitude'] < -90 || $data['latitude'] > 90) exit(json_result('0422',$this->response['0422']));        $poleheight = $this->input->post('poleheight',true);        if ($poleheight !== null) {            $data['poleheight'] = $poleheight;        }        $data["polediameter"] = $this->input->post('polediameter',true);        $data["polematerial"] = $this->input->post('polematerial',true);        $data["lighttype"] = $this->input->post('lighttype',true);        $data["lamptype"] = $this->input->post('lamptype',true);        $data["boardtype"] = $this->input->post('boardtype',true);        $data["batterytype"] = $this->input->post('batterytype',true);        $data["boardpower"] = $this->input->post('boardpower',true);        $data["batteryah"] = $this->input->post('batteryah',true);        $wattage = $this->input->post('wattage',true);        $data["wattage"] = !empty($wattage) ? $wattage : 0;        $supplier = $this->input->post('supplier',true);        $data["supplier"] = !empty($supplier) ? $supplier : '';        $upazilla = $this->input->post('upazilla',true);        $data["upazilla"] = !empty($upazilla) ? $upazilla : '';        $po = $this->input->post('po',true);        $data["po"] = !empty($po) ? $po : '';        $manu = $this->input->post('manu',true);        $data["manu"] = !empty($manu) ? $manu : '';        $protocoltype = $this->input->post('protocoltype',true);        $data['protocoltype'] = $protocoltype;        $loadtype = $this->input->post('loadtype',true);        if ($loadtype !== null) {            $data["loadtype"] = intval($loadtype);        }        // 控制器协议类型        $version = $this->session->userdata('version');        if (strlen($data['number']) > 6) exit(json_result('0408', $this->response['0408'], array()));        if (empty($data['projectid'])) exit(json_result('0308', $this->response['0308'], array()));        if (empty($data['number'])) exit(json_result('0409', $this->response['0409'], array()));        if (!is_numeric($data['number']) || $data['number'] < 1 || $data['number'] > 999999) exit(json_result('0410', $this->response['0410'], array()));        if (empty($data['address'])) exit(json_result('0805', $this->response['0805'], array()));        if (is_float($data['address'])) {            $data['address'] = strval(intval(ceil($data['address'])));        }        $is_true = preg_match('/^[A-Fa-f0-9]+$/', $data['address']);        if (empty($is_true)) exit(json_result('0414', $this->response['0414'], array()));        $data = remove_null_params($data);        if (empty($where['id'])) {            if ($this->Lamp_model->getDataCount(array('number'=>$data['number'], 'projectid'=>$data['projectid'])) > 0) {                exit(json_result('0401', $this->response['0401'], array()));            }               $lamp = $this->Lamp_model->get_one(array('address'=>$data['address']),'projectid,number');            if (!empty($lamp)) {                $projectid = $lamp['projectid'];                $number = $lamp['number'];                $projectname = $this->Project_model->getNameById($projectid);                if (empty($version)) {                    exit(json_result('0404', "该无线模块地址已被【{$projectname}】项目,【{$number}】编号的灯控使用", array()));                }else{                    exit(json_result('other', "The wireless module address has been used by \"{$projectname}\" project, and \"{$number}\" serial number", array()));                }            }            $projectData = $this->Project_model->get_one(['id'=>$data['projectid']],'patrolinterval,cityid,projectname');            if (empty($data['longitude']) && empty($data['latitude']) && !empty($projectData['cityid'])) {                $globalData = $this->Global_location_model->getOne($projectData['cityid'],'longitude,latitude');                $data['longitude'] = $globalData['longitude'];                $data['latitude'] = $globalData['latitude'];            }            $data['createtime'] = date('Y-m-d H:i:s',time());            $lampid = $this->Lamp_model->add($data);            $this->Project_model->add_lamp_count(array('lampcount'=>1,'faultcount'=>0,'projectid'=>$data['projectid']));            $lampId = intval($lampid);            $this->add_operation_log('insert',"在\"{$projectData['projectname']}\"项目里添加编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯",0);            $this->add_operation_log('insert',"Add lamp:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\"",0,1);        } else {            if ($this->Lamp_model->getDataCount(array('number'=>$data['number'], 'projectid'=>$data['projectid']), $where['id']) > 0) {                exit(json_result('0401', $this->response['0401'], array()));            }            $lamp = $this->Lamp_model->get_one(array('address'=>$data['address'], 'id !='=>$where['id']),'projectid,number');            if (!empty($lamp)) {                $projectid = $lamp['projectid'];                $number = $lamp['number'];                $projectname = $this->Project_model->getNameById($projectid);                if (empty($version)) {                    exit(json_result('0404', "该无线模块地址已被【{$projectname}】项目,【{$number}】编号的灯控使用", array()));                }else{                    exit(json_result('other', "The wireless module address has been used by \"{$projectname}\" project, and \"{$number}\" serial number", array()));                }            }            $old = $this->Lamp_model->get_one($where,'isfaulted,projectid,address,protocoltype');            if ($old['projectid'] != $data['projectid']) {                $new['projectid']  = $data['projectid'];                $new['faultcount'] = $old['isfaulted'] > 0 ? 1 : 0;                $this->Project_model->add_lamp_count($new);                $old['faultcount'] = $new['faultcount'];                $this->Project_model->minus_lamp_count($old);            }            // $oldNet = $this->Network_model->getData(array('id'=>$old['networkid']));            if ($old['address'] != $data['address'] || $protocoltype != $old['protocoltype']) {            }               $this->Lamp_model->update($data,$where);            $projectData = $this->Project_model->getData(array('id'=>$data['projectid']),'projectname');            $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯信息");            $this->add_operation_log('update',"Update lamp:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".",0,1);            //更新负载设置和蓄电池设置            if (isset($_POST['workmode'])) {                $res = $this->load_update();                if ($res['result'] == 1) {                    $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯负载参数");                    $this->add_operation_log('update',"Update the load setting of the street lamp:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",1,1);                }else{                    exit(json_result($res['msg'],$res['msg'],array()));                }            }            if (isset($_POST['capacity'])) {                $res = $this->battery_update();                if ($res['result'] == 1) {                    $this->add_operation_log('update',"修改\"{$projectData['projectname']}\"项目下的\"{$networkData['networkname']}\"网络里的编号为\"{$data['number']}\"、无线模块地址为\"{$data['address']}\"的路灯蓄电池参数");                    $this->add_operation_log('update',"Update the lamp battery setting:\"{$data['number']}\".Wireless module address:\"{$data['address']}\".Project name:\"{$projectData['projectname']}\".Network name:\"{$networkData['networkname']}\".",1,1);                }else{                    exit(json_result($res['msg'],$res['msg'],array()));                }            }            $lampId = intval($where['id']);        }        exit(json_result('0000', $this->response['0000'], array("id" => $lampId)));    }    // 获取负载参数设置    public function load_setting() {        $lamp_id = $this->input->post('lamp_id', true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $lampData = $this->Lamp_model->getOne($lamp_id,'N.status,N.protocoltype,L.protocoltype as lampprotocoltype,L.address,L.number,N.deviceid');        $cmd = '{"cmd_type":"get_load_setting_cmd","cmd_id":'.$lamp_id.',"broadcast":0}';                if (($lampData['protocoltype'] == 4 || $lampData['protocoltype'] == 6) && $lampData['lampprotocoltype'] == 0) {            $address = '';            if (mb_strlen($lampData['address']) >= 8) {                $address = mb_substr($lampData['address'], -8);            }else{                $address = '00000000';            }            $sendData = $address.'0304001014';                        if ($lampData['protocoltype'] == 4) {                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            }else{                device_cmd($lampData['deviceid'],pack('H*',$sendData));                $cmd = '{"type":"cmd","deviceId":"'.$lampData['address'].'"}';                $info = send_lorawan_915($cmd);                $res = array();                if (!empty($info)) {                    $info = json_decode($info,true);                    if ($info && $info['res'] == 0) $res['msg'] = $info['resInfo'];                }            }                        if (empty($res)) {                exit(json_result('0016', $this->response['0016']));            }else{                $msg1 = $res['msg'];                // 数据校验                $msg = mb_substr($msg1, 10);                $t = 0;                for ($i=0; $i < mb_strlen($msg) / 2 - 1; $i++) {                    $s = mb_substr($msg, $i*2,2);                    $t += base_convert($s, 16, 10);                }                $t = base_convert($t, 10, 16);                if (mb_strlen($t) > 2) {                    $t = mb_substr($t, -2);                }elseif($t <= 1){                    $t = '0'.$t;                }                if ($t == mb_substr($msg, -2)) {                      $data = array();                    $dataStr = mb_substr($msg1, 16);                    $data['workmode']         = base_convert(mb_substr($dataStr, 0,2), 16, 10);                    $data['worktimefirst']    = base_convert(mb_substr($dataStr, 2,2), 16, 10);                    $data['workpowerfirst']   = base_convert(mb_substr($dataStr, 4,2), 16, 10);                    $data['worktimesencond']  = base_convert(mb_substr($dataStr, 6,2), 16, 10);                    $data['workpowersencond'] = base_convert(mb_substr($dataStr, 8,2), 16, 10);                    $data['worktimethird']    = base_convert(mb_substr($dataStr, 10,2), 16, 10);                    $data['workpowerthird']   = base_convert(mb_substr($dataStr, 12,2), 16, 10);                    $data['worktimeforth']    = base_convert(mb_substr($dataStr, 14,2), 16, 10);                    $data['workpowerforth']   = base_convert(mb_substr($dataStr, 16,2), 16, 10);                    $data['delaytime']        = base_convert(mb_substr($dataStr, 18,2), 16, 10);                    $data['voptically']       = round(base_convert(mb_substr($dataStr, 20,4), 16, 10)/10,1);                    $data['ledloadcurrent']   = round(base_convert(mb_substr($dataStr, 24,4), 16, 10),2);                    $data['powercmd']         = base_convert(mb_substr($dataStr, 28,2), 16, 10);                    $data['switchfeature']    = base_convert(mb_substr($dataStr, 30,2), 16, 10);                    exit(json_result('0000', $this->response['0000'], $data));                }else{                    exit(json_result('0010', $this->response['0010']));                }            }                    }        if (isset($lampData['protocoltype']) && $lampData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);            }        }        if (empty($cmdret)) exit(json_result('0016',$this->response['0016']));        $r = json_decode($cmdret, true);        if ($r['result'] == false) {            $version = $this->session->userdata('version');            if (empty($version)) {                $msg = empty($r['msg']) ? '未知错误' : transfer_error_tips($r['msg']);            }else{                $msg = empty($r['msg']) ? 'Unknown error' : $r['msg'];            }            exit(json_result('other', $msg));        }        $res = $this->Load_model->get_data_by_filter(['relateid'=>$lamp_id,'cmdtype'=>0]);        if (empty($res)) {            $update['workmode']         = '0';            $update['worktimefirst']    = '4';            $update['workpowerfirst']   = '80';            $update['worktimesencond']  = '1';            $update['workpowersencond'] = '40';            $update['worktimethird']    = '8';            $update['workpowerthird']   = '30';            $update['worktimeforth']    = '0';            $update['workpowerforth']   = '30';            $update['voptically']       = '5';            $update['delaytime']        = '1';            $update['ledloadcurrent']   = '330';            $update['powercmd']         = '1';            $update['switchfeature']    = '1';            $res = $update;        }        unset($res['id']);        unset($res['updatetime']);        $data = $res;                exit(json_result('0000', $this->response['0000'], $data));    }    // 新控制器获取参数设置    public function modbus_get_load() {        $lamp_id = $this->input->post('lamp_id', true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        //         $lampData = $this->Lamp_model->getOne($lamp_id,'N.status,N.deviceid,N.protocoltype,L.address,L.protocoltype as lampprotocoltype,L.number');        $cmd = '{"cmd_type":"get_load_setting_cmd","cmd_id":'.$lamp_id.',"broadcast":0}';        if ($lampData['protocoltype'] == 4 && $lampData['lampprotocoltype'] == 1) {            $sendData = '0103e08d0027a23b';                        $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            if (empty($res)) {                exit(json_result('0016', $this->response['0016']));            }else{                if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                    $data = array();                    $data['load_current'] = number_format(base_convert(substr($res['msg'], 6,4), 16, 10)/100,2).''; // 负载电流                    $data['intell_power'] = base_convert(substr($res['msg'], 10,4), 16, 10).''; // 智能功率                    $data['light_delay'] = base_convert(substr($res['msg'], 14,4), 16, 10).''; // 光控延时                    $data['induction_delay'] = base_convert(substr($res['msg'], 18,4), 16, 10).''; // 感应延时                    $data['first_light_time'] = base_convert(substr($res['msg'], 26,4), 16, 10).''; // 第一段亮灯时间                    $data['first_light_human_power'] = base_convert(substr($res['msg'], 30,4), 16, 10).''; // 第一段有人功率                    $data['first_light_unman_power'] = base_convert(substr($res['msg'], 34,4), 16, 10).''; // 第一段无人功率                    $data['second_light_time'] = base_convert(substr($res['msg'], 38,4), 16, 10).''; // 第二段亮灯时间                    $data['second_light_human_power'] = base_convert(substr($res['msg'], 42,4), 16, 10).''; // 第二段有人功率                    $data['second_light_unman_power'] = base_convert(substr($res['msg'], 46,4), 16, 10).''; // 第二段无人功率                    $data['third_light_time'] = base_convert(substr($res['msg'], 50,4), 16, 10).''; // 第三段亮灯时间                    $data['third_light_human_power'] = base_convert(substr($res['msg'], 54,4), 16, 10).''; // 第三段有人功率                    $data['third_light_unman_power'] = base_convert(substr($res['msg'], 58,4), 16, 10).''; // 第三段无人功率                    $data['fourth_light_time'] = base_convert(substr($res['msg'], 62,4), 16, 10).''; // 第四段亮灯时间                    $data['fourth_light_human_power'] = base_convert(substr($res['msg'], 66,4), 16, 10).''; // 第四段有人功率                    $data['fourth_light_unman_power'] = base_convert(substr($res['msg'], 70,4), 16, 10).''; // 第四段无人功率                    $data['fifth_light_time'] = base_convert(substr($res['msg'], 74,4), 16, 10).''; // 第五段亮灯时间                    $data['fifth_light_human_power'] = base_convert(substr($res['msg'], 78,4), 16, 10).''; // 第五段有人功率                    $data['fifth_light_unman_power'] = base_convert(substr($res['msg'], 82,4), 16, 10).''; // 第五段无人功率                    $data['sixth_light_time'] = base_convert(substr($res['msg'], 86,4), 16, 10).''; // 第六段亮灯时间                    $data['sixth_light_human_power'] = base_convert(substr($res['msg'], 90,4), 16, 10).''; // 第六段有人功率                    $data['sixth_light_unman_power'] = base_convert(substr($res['msg'], 94,4), 16, 10).''; // 第六段无人功率                    $data['seventh_light_time'] = base_convert(substr($res['msg'], 98,4), 16, 10).''; // 第七段亮灯时间                    $data['seventh_light_human_power'] = base_convert(substr($res['msg'], 102,4), 16, 10).''; // 第七段有人功率                    $data['seventh_light_unman_power'] = base_convert(substr($res['msg'], 106,4), 16, 10).''; // 第七段无人功率                    $data['eighth_light_time'] = base_convert(substr($res['msg'], 110,4), 16, 10).''; // 第八段亮灯时间                    $data['eighth_light_human_power'] = base_convert(substr($res['msg'], 114,4), 16, 10).''; // 第八段有人功率                    $data['eighth_light_unman_power'] = base_convert(substr($res['msg'], 118,4), 16, 10).''; // 第八段无人功率                    $data['ninth_light_time'] = base_convert(substr($res['msg'], 122,4), 16, 10).''; // 第九段亮灯时间                    $data['ninth_light_human_power'] = base_convert(substr($res['msg'], 126,4), 16, 10).''; // 第九段有人功率                    $data['ninth_light_unman_power'] = base_convert(substr($res['msg'], 130,4), 16, 10).''; // 第九段无人功率                    $data['tenth_light_time'] = base_convert(substr($res['msg'], 134,4), 16, 10).''; // 晨亮时间                    $data['tenth_light_human_power'] = base_convert(substr($res['msg'], 138,4), 16, 10).''; // 晨亮有人功率                    $data['tenth_light_unman_power'] = base_convert(substr($res['msg'], 142,4), 16, 10).''; // 晨亮无人功率                    $data['begin_voltage'] = round(base_convert(substr($res['msg'], 146,4), 16, 10)/10,1).''; // 智能功率USER1起始电压                    $data['end_voltage'] = round(base_convert(substr($res['msg'], 150,4), 16, 10)/10,1).''; // 智能功率USER1终止电压                    $data['end_current'] = round(base_convert(substr($res['msg'], 158,4), 16, 10)/100,2).''; // 智能功率USER1终止电流                    $res = $data;                }else{                    exit(json_result('0010', $this->response['0010']));                }            }                    }        elseif($lampData['protocoltype'] == 6 && $lampData['lampprotocoltype'] == 1){            //$sendData = '0103e08d0027a23ba5';           $cmdLine='0103e08d0027a23b';           //$cmdLine .= crc16(pack('H*',$cmdLine));           device_cmd($lampData['deviceid'],pack('H*',$cmdLine));            $cmdLine = '{"type":"cmd","deviceId":"'.$lampData['address'].'"}';           $res=send_lorawan_915($cmdLine);           if($res){               $res=json_decode($res,true);               if($res['info']=='success'){                   $res = $this->Modbus_load_model->get_data_by_filter(['relateid'=>$lamp_id,'cmdtype'=>0]);               }else{                   exit(json_result('0010', $this->response['0010']));               }           }else{               exit(json_result('0010', $this->response['0010']));            }        }        else{            $cmdret = '';            if (isset($lampData['protocoltype']) && $lampData['protocoltype'] != 0) {                $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);                if ($cmdret === false) {                    sleep(1);                    $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);                }            }else{                $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);                if ($cmdret === false) {                    sleep(1);                    $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);                }            }            if (empty($cmdret)) exit(json_result('0016',$this->response['0016']));            $r = json_decode($cmdret, true);            if ($r['result'] == false) {                $version = $this->session->userdata('version');                if (empty($version)) {                    $msg = empty($r['msg']) ? '未知错误' : transfer_error_tips($r['msg']);                }else{                    $msg = empty($r['msg']) ? 'Unknown error' : $r['msg'];                }                exit(json_result('other', $msg));            }            $res = $this->Modbus_load_model->get_data_by_filter(['relateid'=>$lamp_id,'cmdtype'=>0]);            if (empty($res)) {                exit(json_result('0417', $this->response['0417']));            }        }                $res['load_current'] = number_format($res['load_current'],2);        $res['end_current'] = number_format($res['end_current'],2);        $res['end_voltage'] = number_format($res['end_voltage'],1);        $res['begin_voltage'] = number_format($res['begin_voltage'],1);        $res['first_light_time'] = $this->format_date_en($res['first_light_time']);        $res['second_light_time'] = $this->format_date_en($res['second_light_time']);        $res['third_light_time'] = $this->format_date_en($res['third_light_time']);        $res['fourth_light_time'] = $this->format_date_en($res['fourth_light_time']);        $res['fifth_light_time'] = $this->format_date_en($res['fifth_light_time']);        $res['sixth_light_time'] = $this->format_date_en($res['sixth_light_time']);        $res['seventh_light_time'] = $this->format_date_en($res['seventh_light_time']);        $res['eighth_light_time'] = $this->format_date_en($res['eighth_light_time']);        $res['ninth_light_time'] = $this->format_date_en($res['ninth_light_time']);        $res['tenth_light_time'] = $this->format_date_en($res['tenth_light_time']);        unset($res['id']);        unset($res['updatetime']);        $data = $res;                exit(json_result('0000', $this->response['0000'], $data));    }    private function format_date_en($date){        $h = floor($date/3600);        $h = $h > 10 ? $h : '0'.$h;        $t = floor($date%3600/60);        $t = $t > 10 ? $t : '0'.$t;        return $h.':'.$t;    }    // 获取默认参数值    public function get_data(){        $type = $this->input->post('type',true);        $type = empty($type) ? 1 : $type;        $update = array();        if ($type == 1) { // 负载参数            $update['workmode']         = '0';            $update['worktimefirst']    = '4';            $update['workpowerfirst']   = '80';            $update['worktimesencond']  = '1';            $update['workpowersencond'] = '40';            $update['worktimethird']    = '8';            $update['workpowerthird']   = '30';            $update['worktimeforth']    = '0';            $update['workpowerforth']   = '30';            $update['voptically']       = '5';            $update['delaytime']        = '1';            $update['ledloadcurrent']   = '330';            $update['powercmd']         = '1';            $update['switchfeature']    = '1';        }else{  // 蓄电池参数            $update['batterytype']              = '0';//蓄电池类型            $update['capacity0']                 = '200';//蓄电池容量            $update['capacity1']                 = '';//蓄电池容量            $update['vovervoltage']             = '16';//超压电压             $update['vlimitedcharge']           = '15.5';//充电限制电压            $update['vbalancecharge']           = '14.6';//均衡充电电压            $update['vpromotecharge0']           = '14.4';//提升充电电压/过充电压(锂电池)            $update['vpromotecharge1']           = '12.6';//提升充电电压/过充电压(锂电池)            $update['vfloatingcharge']          = '13.8';//浮充充电电压            $update['vpromoterecover0']          = '13.2';//提升充电恢复电压/过充返回电压(锂电池)            $update['vpromoterecover1']          = '12';//提升充电恢复电压/过充返回电压(锂电池)            $update['voverdischargerecover0']    = '12.6';//过放恢复电压            $update['voverdischargerecover1']    = '11';//过放恢复电压            $update['vundervoltagewarn']        = '12';//欠压警告电压            $update['voverdischarge0']           = '11';//过放电压            $update['voverdischarge1']           = '9';//过放电压            $update['balancechargetime']        = '1';//均衡充电时间            $update['promotechargetime']        = '4';//提升充电时间             $update['balanceinterval']          = '30';//均衡充电间隔            $update['tempcompensation']         = '-4';//温度补偿系数            $update['tempcompmax']              = '99';//温度补偿最高温度             $update['tempcompmin']              = '-40';//温度补偿最低温度             $update['turnfloatingcurrent']      = '20';//转浮充的电流             $update['vsystem']                  = '12';//系统电压            $update['minusnocharge']            = '0';//零下禁充            $update['chargemode']               = '0';//充电模式        }        exit(json_result('0000',$this->response['0000'],$update));    }    // 新控制器获取默认参数值    public function modbus_get_data(){        $type = $this->input->post('type',true);        $type = empty($type) ? 1 : $type;        $update = array();        if ($type == 1) { // 负载参数            $update['intell_power']    = '2';            $update['load_current']   = '0.9';            $update['light_delay']  = '20';            $update['induction_delay'] = '20';            $update['first_light_time']    = '00:30';            $update['first_light_human_power']   = '50';            $update['first_light_unman_power']    = '20';            $update['second_light_time']   = '00:30';            $update['second_light_human_power']       = '70';            $update['second_light_unman_power']        = '30';            $update['third_light_time']   = '02:00';            $update['third_light_human_power']         = '100';            $update['third_light_unman_power']    = '50';            $update['fourth_light_time']    = '00:30';            $update['fourth_light_human_power']    = '70';            $update['fourth_light_unman_power']    = '30';            $update['fifth_light_time']    = '00:30';            $update['fifth_light_human_power']    = '70';            $update['fifth_light_unman_power']    = '30';            $update['sixth_light_time']    = '04:00';            $update['sixth_light_human_power']    = '30';            $update['sixth_light_unman_power']    = '10';            $update['seventh_light_time']    = '00:00';            $update['seventh_light_human_power']    = '100';            $update['seventh_light_unman_power']    = '50';            $update['eighth_light_time']    = '00:00';            $update['eighth_light_human_power']    = '100';            $update['eighth_light_unman_power']    = '50';            $update['ninth_light_time']    = '00:00';            $update['ninth_light_human_power']    = '100';            $update['ninth_light_unman_power']    = '50';            $update['tenth_light_time']    = '00:00';            $update['tenth_light_human_power']    = '50';            $update['tenth_light_unman_power']    = '20';            $update['begin_voltage']    = '11.5';            $update['end_voltage']    = '10.0';            $update['end_current']    = '0.15';        }else{  // 蓄电池参数            $update['light_voltage']         = '5';            $update['system_voltage']              = '12';            $update['battery_type']                 = '0';            $update['li_battery_type']        = '0';            $update['overvoltage']                 = '15.5';            $update['char_limit_voltage']             = '15.0';             $update['equ_char_voltage']           = '14.6';            $update['increa_char_voltage']           = '14.4';            $update['float_char_voltage']           = '13.8';            $update['increa_char_return_voltage']           = '13.2';            $update['over_dischar_return_voltage']          = '12.6';            $update['over_dischar_voltage']          = '11.1';            $update['equ_char_time']          = '120';            $update['increa_char_time']    = '120';            $update['balan_char_interval']    = '30';            $update['temper_compen_coeff']        = '5';            $update['char_upper_limit_temper']           = '60';            $update['char_lower_limit_temper']           = '-30';            $update['dischar_upper_limit_temper']        = '60';            $update['dischar_lower_limit_temper']        = '-30';        }        exit(json_result('0000',$this->response['0000'],$update));    }    // 获取蓄电池设置    public function battery_setting() {        $lamp_id = $this->input->post('lamp_id', true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $lampData = $this->Lamp_model->getOne($lamp_id,'N.status,N.protocoltype,L.address,L.protocoltype as lampprotocoltype,L.number,N.deviceid');        // if ($lampData['status'] == 0) {        //     exit(json_result('0412',$this->response['0412'],array()));        // }        $cmd = '{"cmd_type":"get_battery_setting_cmd","cmd_id":'.$lamp_id.',"broadcast":0}';        if (($lampData['protocoltype'] == 4 || $lampData['protocoltype'] == 6) && $lampData['lampprotocoltype'] == 0) {            $address = '';            if (mb_strlen($lampData['address']) >= 8) {                $address = mb_substr($lampData['address'], -8);            }else{                $address = '00000000';            }            $sendData = $address.'030328204b';                        if ($lampData['protocoltype'] == 4) {                $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            }else{                device_cmd($lampData['deviceid'],pack('H*',$sendData));                $cmd = '{"type":"cmd","deviceId":"'.$lampData['address'].'"}';                $info = send_lorawan_915($cmd);                $res = array();                if (!empty($info)) {                    $info = json_decode($info,true);                    if ($info && $info['res'] == 0) $res['msg'] = $info['resInfo'];                }            }            if (empty($res)) {                exit(json_result('0016', $this->response['0016']));            }else{                $msg1 = $res['msg'];                // 数据校验                $msg = mb_substr($msg1, 10);                $t = 0;                for ($i=0; $i < mb_strlen($msg) / 2 - 1; $i++) {                    $s = mb_substr($msg, $i*2,2);                    $t += base_convert($s, 16, 10);                }                $t = base_convert($t, 10, 16);                if (mb_strlen($t) > 2) {                    $t = mb_substr($t, -2);                }elseif($t <= 1){                    $t = '0'.$t;                }                if ($t == mb_substr($msg, -2)) {                      $data = array();                    $dataStr = mb_substr($msg1, 16);                    $data['batterytype']              = base_convert(mb_substr($dataStr, 56,2), 16, 10);//蓄电池类型                    $data['capacity']                 = base_convert(mb_substr($dataStr, 0,4), 16, 10);//蓄电池容量                    $data['capacity1']                 = base_convert(mb_substr($dataStr, 0,4), 16, 10);//蓄电池容量                    $data['vovervoltage']             = round(base_convert(mb_substr($dataStr, 4,4), 16, 10)/10,1);//超压电压                     $data['vlimitedcharge']           = round(base_convert(mb_substr($dataStr, 8,4), 16, 10)/10,1);//充电限制电压                    $data['vbalancecharge']           = round(base_convert(mb_substr($dataStr, 12,4), 16, 10)/10,1);//均衡充电电压                    $data['vpromotecharge0']           = round(base_convert(mb_substr($dataStr, 16,4), 16, 10)/10,1);//提升充电电压/过充电压(锂电池)                    $data['vpromotecharge1']           = round(base_convert(mb_substr($dataStr, 16,4), 16, 10)/10,1);//提升充电电压/过充电压(锂电池)                    $data['vfloatingcharge']          = round(base_convert(mb_substr($dataStr, 20,4), 16, 10)/10,1);//浮充充电电压                    $data['vpromoterecover0']          = round(base_convert(mb_substr($dataStr, 24,4), 16, 10)/10,1);//提升充电恢复电压/过充返回电压(锂电池)                    $data['vpromoterecover1']          = round(base_convert(mb_substr($dataStr, 24,4), 16, 10)/10,1);//提升充电恢复电压/过充返回电压(锂电池)                    $data['voverdischargerecover0']    = round(base_convert(mb_substr($dataStr, 28,4), 16, 10)/10,1);//过放恢复电压                    $data['voverdischargerecover1']    = round(base_convert(mb_substr($dataStr, 28,4), 16, 10)/10,1);//过放恢复电压                    $data['vundervoltagewarn']        = round(base_convert(mb_substr($dataStr, 32,4), 16, 10)/10,1);//欠压警告电压                    $data['voverdischarge0']           = round(base_convert(mb_substr($dataStr, 36,4), 16, 10)/10,1);//过放电压                    $data['voverdischarge1']           = round(base_convert(mb_substr($dataStr, 36,4), 16, 10)/10,1);//过放电压                    $data['balancechargetime']        = base_convert(mb_substr($dataStr, 40,2), 16, 10);//均衡充电时间                    $data['promotechargetime']        = base_convert(mb_substr($dataStr, 42,2), 16, 10);//提升充电时间                     $data['balanceinterval']          = base_convert(mb_substr($dataStr, 44,2), 16, 10);//均衡充电间隔                    $data['tempcompensation']         = base_convert(mb_substr($dataStr, 46,2), 16, 10);//温度补偿系数                    $data['tempcompmax']              = bitDecode(mb_substr($dataStr, 48,2));//温度补偿最高温度                     $data['tempcompmin']              = bitDecode(mb_substr($dataStr, 50,2));//温度补偿最低温度                     $data['turnfloatingcurrent']      = round(base_convert(mb_substr($dataStr, 52,4), 16, 10)/100,2);//转浮充的电流                     $data['vsystem']                  = base_convert(mb_substr($dataStr, 58,2), 16, 10);//系统电压                    $data['minusnocharge']            = base_convert(mb_substr($dataStr, 60,2), 16, 10);//零下禁充                    $data['chargemode']               = base_convert(mb_substr($dataStr, 62,2), 16, 10);//充电模式                    exit(json_result('0000', $this->response['0000'], $data));                }else{                    exit(json_result('0010', $this->response['0010']));                }            }                    }        if (isset($lampData['protocoltype']) && $lampData['protocoltype'] != 0) {            $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);            }        }else{            $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);            if ($cmdret === false) {                sleep(1);                $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);            }        }        if (empty($cmdret)) exit(json_result('0016',$this->response['0016']));        $r = json_decode($cmdret, true);        if ($r['result'] == false) {            $version = $this->session->userdata('version');            if (empty($version)) {                $msg = empty($r['msg']) ? '未知错误' : transfer_error_tips($r['msg']);            }else{                $msg = empty($r['msg']) ? 'Unknown error' : $r['msg'];            }            exit(json_result('other', $msg));        }        $res = $this->Battery_model->getOne($lamp_id);        if (empty($res)) {            $update['batterytype']              = '0';//蓄电池类型            $update['capacity0']                 = '200';//蓄电池容量            $update['capacity1']                 = '';//蓄电池容量            $update['vovervoltage']             = '16';//超压电压             $update['vlimitedcharge']           = '15.5';//充电限制电压            $update['vbalancecharge']           = '14.6';//均衡充电电压            $update['vpromotecharge0']           = '14.4';//提升充电电压/过充电压(锂电池)            $update['vpromotecharge1']           = '12.6';//提升充电电压/过充电压(锂电池)            $update['vfloatingcharge']          = '13.8';//浮充充电电压            $update['vpromoterecover0']          = '13.2';//提升充电恢复电压/过充返回电压(锂电池)            $update['vpromoterecover1']          = '12';//提升充电恢复电压/过充返回电压(锂电池)            $update['voverdischargerecover0']    = '12.6';//过放恢复电压            $update['voverdischargerecover1']    = '11';//过放恢复电压            $update['vundervoltagewarn']        = '12';//欠压警告电压            $update['voverdischarge0']           = '11';//过放电压            $update['voverdischarge1']           = '9';//过放电压            $update['balancechargetime']        = '1';//均衡充电时间            $update['promotechargetime']        = '4';//提升充电时间             $update['balanceinterval']          = '30';//均衡充电间隔            $update['tempcompensation']         = '-4';//温度补偿系数            $update['tempcompmax']              = '99';//温度补偿最高温度             $update['tempcompmin']              = '-40';//温度补偿最低温度             $update['turnfloatingcurrent']      = '20';//转浮充的电流             $update['vsystem']                  = '12';//系统电压            $update['minusnocharge']            = '0';//零下禁充            $update['chargemode']               = '0';//充电模式            $res = $update;        }        $data = $res;        unset($data['id']);        unset($data['updatetime']);        exit(json_result('0000', $this->response['0000'], $data));    }    // 新控制器获取蓄电池设置    public function modbus_get_battery() {        $lamp_id = $this->input->post('lamp_id', true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $lampData = $this->Lamp_model->getOne($lamp_id,'N.status,N.protocoltype,N.deviceid,L.address,L.protocoltype as lampprotocoltype,L.number');        // if ($lampData['status'] == 0) {        //     exit(json_result('0412',$this->response['0412'],array()));        // }        $cmd = '{"cmd_type":"get_battery_setting_cmd","cmd_id":'.$lamp_id.',"broadcast":0}';        if ($lampData['protocoltype'] == 4 && $lampData['lampprotocoltype'] == 1) {            $sendData = '0103e0020020d212';                        $res = lampMqttCmd('/IDCOL/CmdInput/'.$lampData['address'],'/IDCOL/CmdOutput/'.$lampData['address'],pack('H*','0001'.$sendData));            if (empty($res)) {                exit(json_result('0016', $this->response['0016']));            }else{                                if (strtolower(crc16(pack('H*',substr($res['msg'], 0,-4)))) == strtolower(substr($res['msg'],-4))) {                    $data = array();                    $data['system_voltage'] = base_convert(substr($res['msg'], 10,4), 16, 10).''; // 系统电压                    if (substr('00000000'.base_convert(substr($res['msg'], 132,2), 16, 2), -8,1) == 1) {  // 电池类型                        $data['battery_type'] = '1';                    }else{                        $data['battery_type'] = '0';                    }                    $data['overvoltage'] = round(base_convert(substr($res['msg'], 18,4), 16, 10)/10,1).''; // 超压电压                    $data['char_limit_voltage'] = round(base_convert(substr($res['msg'], 22,4), 16, 10)/10,1).''; // 充电限制电压                    $data['equ_char_voltage'] = round(base_convert(substr($res['msg'], 26,4), 16, 10)/10,1).''; // 均衡充电电压                    $data['increa_char_voltage'] = round(base_convert(substr($res['msg'], 30,4), 16, 10)/10,1).''; // 提升充电电压                    $data['float_char_voltage'] = round(base_convert(substr($res['msg'], 34,4), 16, 10)/10,1).''; // 浮充充电电压                    $data['increa_char_return_voltage'] = round(base_convert(substr($res['msg'], 38,4), 16, 10)/10,1).''; // 提升充电返回电压                    $data['over_dischar_return_voltage'] = round(base_convert(substr($res['msg'], 42,4), 16, 10)/10,1).''; // 过放返回电压                    $data['over_dischar_voltage'] = round(base_convert(substr($res['msg'], 50,4), 16, 10)/10,1).''; // 过放电压                    $data['equ_char_time'] = base_convert(substr($res['msg'], 66,4), 16, 10).''; // 均衡充电时间                    $data['increa_char_time'] = base_convert(substr($res['msg'], 70,4), 16, 10).''; // 提升充电时间                    $data['balan_char_interval'] = base_convert(substr($res['msg'], 74,4), 16, 10).''; // 均衡充电间隔                    $data['temper_compen_coeff'] = base_convert(substr($res['msg'], 78,4), 16, 10).''; // 温度补偿系数                    $data['char_upper_limit_temper'] = bitDecode(substr($res['msg'], 84,2)).''; // 充电上限温度                    $data['char_lower_limit_temper'] = bitDecode(substr($res['msg'], 88,2)).''; // 充电下限温度                    $data['dischar_upper_limit_temper'] = bitDecode(substr($res['msg'], 92,2)).''; // 放电上限温度                    $data['dischar_lower_limit_temper'] = bitDecode(substr($res['msg'], 96,2)).''; // 放电下限温度                    $data['light_voltage'] = base_convert(substr($res['msg'], 122,4),16,10).''; // 光控电压                    $info = $this->Modbus_battery_model->getOne($lamp_id);                    if (empty($info)) {                        $data['li_battery_type'] = '0';                    }else{                        $data['li_battery_type'] = $info['li_battery_type'];                    }                    $res = $data;                }else{                    exit(json_result('0010', $this->response['0010']));                }            }                    }        elseif ($lampData['protocoltype'] == 6 && $lampData['lampprotocoltype'] == 1){            $sendData = '0103e0020020d212';            $cmdLine='0103e0020020d212';            //$cmdLine .= crc16(pack('H*',$cmdLine));            device_cmd($lampData['deviceid'],pack('H*',$cmdLine));            $cmdLine = '{"type":"cmd","deviceId":"'.$lampData['address'].'"}';            $res=send_lorawan_915($cmdLine);            if($res){                $res=json_decode($res,true);                //var_dump($res);exit();                if($res['info']=='success'){                    $res =$this->Modbus_battery_model->getOne($lamp_id);                    if (empty($res)) {                        $res['li_battery_type'] = '0';                    }                                    }else{                    exit(json_result('0010', $this->response['0010']));                }            }else{                exit(json_result('0010', $this->response['0010']));            }        }        else{            if (isset($lampData['protocoltype']) && $lampData['protocoltype'] != 0) {                $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);                if ($cmdret === false) {                    sleep(1);                    $cmdret = send_cmd($cmd,1,30,$lampData['protocoltype']);                }            }else{                $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);                if ($cmdret === false) {                    sleep(1);                    $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);                }            }            if (empty($cmdret)) exit(json_result('0016',$this->response['0016']));            $r = json_decode($cmdret, true);            if ($r['result'] == false) {                $version = $this->session->userdata('version');                if (empty($version)) {                    $msg = empty($r['msg']) ? '未知错误' : transfer_error_tips($r['msg']);                }else{                    $msg = empty($r['msg']) ? 'Unknown error' : $r['msg'];                }                exit(json_result('other', $msg));            }            $res = $this->Modbus_battery_model->getOne($lamp_id);            if (empty($res)) {                exit(json_result('0417', $this->response['0417']));            }        }                $data = $res;        $data['equ_char_time'] = intval($data['equ_char_time']/60).'';        $data['increa_char_time'] = intval($data['increa_char_time']/60).'';        unset($data['id']);        unset($data['updatetime']);        exit(json_result('0000', $this->response['0000'], $data));    }    // 灯控相关数据    public function viewloglist() {        $lamp_id = $this->input->post('lamp_id',true);        $datatype = $this->input->post('datatype',true);        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        if ($datatype == 'lampinfo') {            $fields = "number,projectid,address,longitude,latitude,section,boardpower,lamptype,boardtype,batteryah,loadpower,devstatus,loadtype,supplier,upazilla,po,manu,protocoltype,updatetime,status";            $res = $this->Lamp_model->get_one(['id'=>$lamp_id],$fields);            if (empty($res)) {                exit(json_result('0000', $this->response['0006'], array()));            }            $version = $this->session->userdata('version');            if (!empty($version)) {                $polemaType = ['冷镀锌'=>'Cold galvanizing','热镀锌'=>'Hot galvanizing','不锈钢'=>'Stainless steel'];                $lightType = ['LED灯'=>'LED lamp','钠灯'=>'Sodium lamp','节能灯'=>'Energy saving light'];                $lampType = ['太阳能路灯'=>'Solar street lamp','景观灯'=>'Landscape lamp','庭院灯'=>'Garden light'];                $boardType = ['单晶板'=>'Single crystal plate','多晶板'=>'Polycrystalline plate','非晶板'=>'Amorphous plate'];                $batteryType = ['铅酸电池'=>'Lead acid battery','锂电池'=>'Lithium battery'];                if (!preg_match('/^[A-Za-z\s*]+$/', $res['lamptype'])) {                    $res['lamptype'] = empty($lampType[$res['lamptype']]) ? '' : $lampType[$res['lamptype']];                }                if (!preg_match('/^[A-Za-z\s*]+$/', $res['boardtype'])) {                    $res['boardtype'] = empty($boardType[$res['boardtype']]) ? '' : $boardType[$res['boardtype']];                }            }else{                $polemaType = ['Cold galvanizing'=>'冷镀锌','Hot galvanizing'=>'热镀锌','Stainless steel'=>'不锈钢'];                $lightType = ['LED lamp'=>'LED灯','Sodium lamp'=>'钠灯','Energy saving light'=>'节能灯'];                $lampType = ['Solar street lamp'=>'太阳能路灯','Landscape lamp'=>'景观灯','Garden light'=>'庭院灯'];                $boardType = ['Single crystal plate'=>'单晶板','Polycrystalline plate'=>'多晶板','Amorphous plate'=>'非晶板'];                $batteryType = ['Lead acid battery'=>'铅酸电池','Lithium battery'=>'锂电池'];                if (preg_match('/^[A-Za-z\s*]+$/', $res['lamptype'])) {                    $res['lamptype'] = empty($lampType[$res['lamptype']]) ? '' : $lampType[$res['lamptype']];                }                if (preg_match('/^[A-Za-z\s*]+$/', $res['boardtype'])) {                    $res['boardtype'] = empty($boardType[$res['boardtype']]) ? '' : $boardType[$res['boardtype']];                }            }            // if ($res["isfaulted"] == 0) {            //     $res["isfaulted"] = '正常';            // }else{                            // }            $alarmData = $this->Alarm_model->get_one_by_filter(array('lampid'=>$lamp_id,'status'=>0),'stralarmtype');            $version = $this->session->userdata('version');            if (empty($version)) {                $res['isfaulted'] = empty($alarmData['stralarmtype']) ? '正常' : $alarmData['stralarmtype'];            }else{                $res['isfaulted'] = empty($alarmData['stralarmtype']) ? 'Normal' : alarm_translate($alarmData['stralarmtype']);            }                        $timezone = $this->Project_model->get_timezone_by_projectid($res['projectid']);            $res["updatetime"] = date_change($res["updatetime"],8,$timezone['value']);            $data = array(                "lamp_no" => $res["number"],                 "project_name" => $this->Project_model->getNameById($res["projectid"]),                 "address" => $res["address"],                 "longitude" => $res["longitude"],                 "latitude" => $res["latitude"],                 "isfaulted" => $res["devstatus"],                 "section" => $res["section"],                 "boardpower" => floatval($res["boardpower"]),                 "lamptype" => $res['lamptype'],                "boardtype" => $res['boardtype'],                 "batteryah" => $res["batteryah"],                "loadpower" => $res["loadpower"],                'status' => $res['status'],                // 'batterytype' => $res['batterytype'],                'protocoltype'=>intval($res['protocoltype']),                'supplier'=>intval($res['supplier']),                'upazilla'=>intval($res['upazilla']),                'po'=>intval($res['po']),                'manu'=>intval($res['manu']),                "updatetime" => $res["updatetime"],                 'loadtype' => $res['loadtype']            );            // $msisdn = $this->db->query('select iccid from msisdn where imsi = "'.$res['simid'].'"')->row_array();            // if (empty($msisdn) || empty($msisdn['iccid'])) {            //     $data['iccid'] = '';            // }else{            //     $data['iccid'] = $msisdn['iccid'];            // }            // if ($res['protocoltype'] != 1 && $res['protocoltype'] != 2) {            //     unset($data['packageSurplus']);            //     unset($data['simid']);            // }            // $username = $this->get_user_info('username');            // if ($username == 'zns') {            //     $data['monthly_can_usage'] = intval($res['monthly_can_usage']);            //     $data['monthly_already_usage'] = round($res['monthly_already_usage'],2);            // }            exit(json_result('0000', $this->response['0000'], $data));        }        $table_map = array('system_info_log','lamp_info_log','solar_info_log','battery_info_log','electric_info_log','history_info_log');        $table = in_array($datatype, $table_map) ? $datatype : 'system_info_log';        $res = $this->Lamp_model->getForInfoLog($lamp_id, $table);        $lampData = $this->Lamp_model->get_one(['id'=>$lamp_id],'projectid');        $timezone = $this->Project_model->get_timezone_by_projectid($lampData['projectid']);        if(!$res){            exit(json_result('0000', $this->response['0006'], array()));        }        if ($table == 'battery_info_log') {            if (isset($res['daydischargemincurrent'])) {                $h = floor($res['daydischargemincurrent']/3600);                $h = $h < 10 ? '0'.$h : $h;                $i = intval($res['daydischargemincurrent']/60)%60;                $i = $i < 10 ? '0'.$i : $i;                $res['daydischargemincurrent'] = $h.':'.$i;            }            if (isset($res['daychargemincurrent'])) {                $h = floor($res['daychargemincurrent']/3600);                $h = $h < 10 ? '0'.$h : $h;                $i = intval($res['daychargemincurrent']/60)%60;                $i = $i < 10 ? '0'.$i : $i;                $res['daychargemincurrent'] = $h.':'.$i;            }        }        $res["updatetime"] = date_change($res["updatetime"],8,$timezone['value']);        exit(json_result('0000', $this->response['0000'], $res));    }    // 灯控历史数据    public function historylist() {        $lamp_id = $this->input->post('lamp_id',true);        $datatype = $this->input->post('datatype',true);        $page = intval($this->input->post('page',true));        $count = intval($this->input->post('count',true));        $count = empty($count) ? 16 : $count;        if (empty($lamp_id)) {            exit(json_result('0400', $this->response['0400'], array()));        }        $date = $this->input->post('date',true);        $beginDate = '';        $endDate = '';        // 按时区修改时间        $lampData = $this->Lamp_model->get_one(['id'=>$lamp_id],'projectid,protocoltype');        $timezone = $this->Project_model->get_timezone_by_projectid($lampData['projectid']);        if (!empty($date)) {            $dateArr = explode('/', $date);            $beginDate = date('Y-m-d H:i:s',strtotime($dateArr[0]) - 8*3600 + $timezone['value']*3600);            $endDate = date('Y-m-d H:i:s',strtotime($dateArr[1]) - 8*3600 + $timezone['value']*3600);            // $beginDate = $dateArr[0];            // $endDate = $dateArr[1];            if (strtotime($endDate) - strtotime($beginDate) > 31*24*3600) {                exit(json_result('0418',$this->response['0418']));            }        }else{            $beginDate = date('Y-m-d H:i:s',strtotime(date('Y-m-d 00:00:00',time())) - 8*3600 + $timezone['value']*3600);            $endDate = date('Y-m-d H:i:s',strtotime(date('Y-m-d 23:59:59',time())) - 8*3600 + $timezone['value']*3600);        }        if($page < 1){            $page = 1;        }                $download = intval($this->input->post('download'));        if (!empty($download)) {            if (empty($date)) exit(json_result('0007',$this->response['0007']));            $dataList = array();            // 路灯            $lampInfoList = $this->Lamp_model->getListForInfoLog($lamp_id, 'lamp_info_log', null, null,$beginDate,$endDate);            $temp = array();            $i = 1;            if (empty($this->version)) {                $lampStatusArr = array(0=>'关灯',1=>'开灯');                $title = array('序号','亮度%','状态','电压(V)','电流(A)','功率(W)','当天放电最大功率(W)','当天亮灯时长(HH:MM)','更新时间');                $name = '路灯';            }else{                $lampStatusArr = array(0=>'off',1=>'on');                $title = array('Number','Brightness%','Status','Voltage(V)','Current(A)','Power(W)','Maximum discharge power of the day(W)','dayLighting duration(HH:MM)','Update time');                $name = 'Lamp';            }            foreach ($lampInfoList as $k=>$l) {                $temp[$k][] = $i;                $temp[$k][] = $l['lighteness'];                $temp[$k][] = $lampStatusArr[$l['lampstatus']];                $temp[$k][] = $l['lampvoltage'];                $temp[$k][] = $l['lampcurrent'];                $temp[$k][] = $l['lamppower'];                $temp[$k][] = $l['daydischarmaxpow'];                $h = floor($l['daychargemincurrent'] / 3600);                $h = $h < 10 ? '0'.$h : $h;                $m = ceil($l['daychargemincurrent'] % 3600 / 60);                $m = $m < 10 ? '0'.$m : $m;                $temp[$k][] = $h.':'.$m;                $temp[$k][] = date_change($l["updatetime"],8,$timezone['value']);                $i ++;            }            $title1 = [];            foreach ($title as $t) {                $title1[0][] = $t;            }            $data = array_merge($title1,$temp);            $dataList[] = array('name'=>$name,'dataList'=>$data);            // 蓄电池            $lampInfoList = $this->Lamp_model->getListForInfoLog($lamp_id, 'battery_info_log', null, null,$beginDate,$endDate);            $temp = array();            $i = 1;            if (empty($this->version)) {                $name = '蓄电池';                if ($lampData['protocoltype'] == 2) {                    $chargeStageMap = array(0=>'没有充电',1=>'等待',2=>'初始',3=>'MPPT',4=>'恒压',5=>'恒流',6=>'浮充',7=>'均衡',8=>'提升',9=>'涓流',10=>'完成',''=>'未知状态');                }else{                    $chargeStageMap = array(0=>'没有充电',1=>'启动充电',6=>'限流',7=>'充满',16=>'MPPT充电',32=>'均衡充电',48=>'提升充电',64=>'浮充',''=>'未知状态');                }                $battstatusArr = array(0=>'空闲',1=>'放电',2=>'充电',3=>'一边充电一边放电',''=>'未知状态');                $unknown = '未知状态';                $title = array('序号','系统电压(V)','系统电流(A)','MOS温度(℃)','电池状态','充电阶段','电池电压(V)','当天最低电压(V)','当天最高电压(V)','电池温度(℃)','当天电池最低温度(℃)','当天电池最高温度(℃)','更新时间');            }else{                $name = 'Battery';                if ($lampData['protocoltype'] == 2) {                    $chargeStageMap = array(0=>'There is no charge',1=>'wait for',2=>'initial',3=>'MPPT',4=>'Constant voltage',5=>'constant current',6=>'floating charge',7=>'equilibrium',8=>'Promote',9=>'Trickle',10=>'complete',''=>'Unknown state');                }else{                    $chargeStageMap = array(0=>'There is no charge',1=>'Start charging',6=>'Current limiting',7=>'Full',16=>'MPPT charging',32=>'Equalizing charge',48=>'Improve charging',64=>'Floating',''=>'Unknown state');                }                $battstatusArr = array(0=>'Free',1=>'Discharge',2=>'Charge',3=>'Discharge while charging',''=>'Unknown state');                $unknown = 'Unknown state';                $title = array('Serial number','System voltage(V)','System current(A)','MOS temperature(℃)','Battery status','Charging stage','Battery voltage(V)','The lowest voltage of the day(V)','Maximum Voltage of the Day(V)','Battery temperature(℃)','Battery minimum temperature for the day(℃)','The highest temperature of the battery on that day(℃)','Update time');            }            $indexArr = [2=>'16',3=>'32',4=>'48',5=>'64'];            foreach ($lampInfoList as $k=>$l) {                $temp[$k][] = $i;                $temp[$k][] = $l['sysvoltage'];                $temp[$k][] = $l['syscurrent'];                $temp[$k][] = $l['temper'];                $temp[$k][] = $battstatusArr[$l['battstatus']];                if ($lampData['protocoltype'] == 1) {                    $l['chargestage'] = isset($indexArr[intval($l['chargestage'])]) ? $indexArr[intval($l['chargestage'])] : $l['chargestage'];                }                $temp[$k][] = $chargeStageMap[$l['chargestage']];                $temp[$k][] = $l['battvoltage'];                $temp[$k][] = $l['voltagedaymin'];                $temp[$k][] = $l['voltagedaymax'];                $temp[$k][] = $l['batttemper'];                $temp[$k][] = $l['daybattmintemper'];                $temp[$k][] = $l['daybattmaxtemper'];                $temp[$k][] = date_change($l["updatetime"],8,$timezone['value']);                $i ++;            }            $title1 = [];            foreach ($title as $t) {                $title1[0][] = $t;            }            $data = array_merge($title1,$temp);            $dataList[] = array('name'=>$name,'dataList'=>$data);            // 太阳能            $lampInfoList = $this->Lamp_model->getListForInfoLog($lamp_id, 'solar_info_log', null, null,$beginDate,$endDate);            $temp = array();            $i = 1;            if (empty($this->version)) {                $name = '太阳能';                $title = array('序号','电压(V)','电流(A)','功率(W)','当天充电最大功率(WH)','当天充电时长(HH:MM)','更新时间');            }else{                $name = 'Solar';                $title = array('Number','Voltage(V)','Current(A)','Power(W)','Maximum Power Charged on the Day(W)','day Charging time(HH:MM)','Update time');            }            foreach ($lampInfoList as $k=>$l) {                $temp[$k][] = $i;                $temp[$k][] = $l['solarvoltage'];                $temp[$k][] = $l['solarcurrent'];                $temp[$k][] = $l['solarpower'];                $temp[$k][] = $l['daychargemaxpow'];                $h = floor($l['daydischargemincurrent'] / 3600);                $h = $h < 10 ? '0'.$h : $h;                $m = ceil($l['daydischargemincurrent'] % 3600 / 60);                $m = $m < 10 ? '0'.$m : $m;                $temp[$k][] = $h.':'.$m;                $temp[$k][] = date_change($l["updatetime"],8,$timezone['value']);                $i ++;            }            $title1 = [];            foreach ($title as $t) {                $title1[0][] = $t;            }            $data = array_merge($title1,$temp);            $dataList[] = array('name'=>$name,'dataList'=>$data);            // 系统            $lampInfoList = $this->Lamp_model->getListForInfoLog($lamp_id, 'system_info_log', null, null,$beginDate,$endDate);            $temp = array();            $i = 1;            if (empty($this->version)) {                $name = '系统';                $title = array('序号','系统电压(V)','系统电流(A)','控制器温度(℃)','更新时间');            }else{                $name = 'System';                $title = array('Serial number','System voltage(V)','System current(A)','Control temperature(℃)','Update time');            }            foreach ($lampInfoList as $k=>$l) {                $temp[$k][] = $i;                $temp[$k][] = $l['sysvoltage'];                $temp[$k][] = $l['syscurrent'];                $temp[$k][] = $l['temper'];                $temp[$k][] = date_change($l["updatetime"],8,$timezone['value']);                $i ++;            }            $title1 = [];            foreach ($title as $t) {                $title1[0][] = $t;            }            $data = array_merge($title1,$temp);            $dataList[] = array('name'=>$name,'dataList'=>$data);            $path = push_excel($dataList,'historyInfoExcel_'.date('Ymd'),1);            exit(json_result('0000', $this->response['0000'], array('path'=>$path)));        }        // $table_map = array('system_info_log','lamp_info_log','solar_info_log','battery_info_log','electric_info_log','history_info_log');        $table = !empty($datatype) ? $datatype : 'system_info_log';        if ($table == 'lamp_info_log') {            $table = 'realtime_info_log';            $total = $this->RealtimeInfoLog_model->get_count(['lampid'=>$lamp_id,'updatetime >='=>$beginDate,'updatetime <='=>$endDate]);            $res = $this->RealtimeInfoLog_model->get_list(['lampid'=>$lamp_id,'updatetime >='=>$beginDate,'updatetime <='=>$endDate], 'loadvoltage as lampvoltage,loadcurrent as lampcurrent,loadpower as lamppower,updatetime',$count, ($page-1)*$count, 'updatetime desc,id desc', NUll);            // $res = $this->Lamp_model->getListForInfoLog($lamp_id, $table, ($page-1)*$count, $count,$beginDate,$endDate);        }elseif ($table == 'system_info_log') {            $total = $this->Lamp_model->getCountForInfoLog($lamp_id, $table,$beginDate,$endDate);            $res = $this->Lamp_model->getListForInfoLog($lamp_id, $table, ($page-1)*$count, $count,$beginDate,$endDate);        }elseif ($table == 'battery_info_log') {            $join = [                // ['table'=>'history_info_log as HI','cond'=>'HI.lampid = RI.lampid and HI.updatetime = RI.updatetime','type'=>'inner'],            ];            $where = ['lampid'=>$lamp_id,'updatetime >='=>$beginDate,'updatetime <='=>$endDate];            $total = $this->RealtimeInfoLog_model->get_count($where,'count(*) as total');            $fields = 'batvoltage as battvoltage,updatetime,DayOverDisChgTimes as overtimes';            $res = $this->RealtimeInfoLog_model->get_list($where, $fields,$count, ($page-1)*$count, 'updatetime desc,id desc');        }else{            $total = $this->Lamp_model->getCountForInfoLog($lamp_id, $table,$beginDate,$endDate);            $res = $this->Lamp_model->getListForInfoLog($lamp_id, $table, ($page-1)*$count, $count,$beginDate,$endDate);        }                if(!$res){            exit(json_result('0000', $this->response['0006'], array()));        }else{                        $arr = [2=>'16',3=>'32',4=>'48',5=>'64'];            foreach ($res as &$v) {                $v['updatetime'] = date_change($v["updatetime"],8,$timezone['value']);                if ($lampData['protocoltype'] == 1 && $table == 'battery_info_log') {                    $v['chargestage'] = isset($arr[intval($v['chargestage'])]) ? $arr[intval($v['chargestage'])] : $v['chargestage'];                }                if ($table == 'system_info_log') {                    $v['lampid'] = $v['number'];                }            }        }        $data = array(            'total' => ceil($total/$count),            'list' => $res        );        exit(json_result('0000', $this->response['0000'], $data));    }    // 修改路灯位置    public function change_location(){        $id = intval($this->input->post('id',true));        $type = intval($this->input->post('type',true));        $data['longitude'] = $this->input->post('longitude',true);        $data['latitude'] = $this->input->post('latitude',true);        $data['updatetime'] = date('Y-m-d H:i:s',time());        if (empty($id) || empty($type) || !isset($data['longitude']) || !isset($data['latitude'])) {            exit(json_result('0007',$this->response['0007'],array()));        }        if ($type == 1) {            $this->Lamp_model->update($data,array('id'=>$id));        }else{            $this->Videomonitor_model->update($data,array('id'=>$id));        }        exit(json_result('0000',$this->response['0000'],array()));    }    // 同步巡检    public function set_patrol_cmd(){        $id = intval($this->input->post('id',true));        if (empty($id)) exit(json_result('0007',$this->response['0007'],array('id'=>$id)));        $lampData = $this->Lamp_model->getOne($id,'N.status,N.protocoltype,L.address,L.protocoltype as lampprotocoltype,L.number');        $cmd = '{"cmd_type":"set_sync_patrol_cmd","cmd_id":'.$id.'}';        $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);        if ($cmdret === false) {            sleep(1);            $cmdret = send_cmd($cmd,0,30,$lampData['protocoltype']);        }        exit(json_result('0000',$this->response['0000'],array('id'=>$id)));    }    // 批量添加    public function batchInput(){        set_time_limit(0);        $userid = $this->get_user_info('id');        // $idArr = $this->get_section_by_user();        $role = $this->get_user_info('role');        $companyid = $this->get_user_info('companyid');        $type = intval($this->input->post('type',true));        if ($type == 1) {  // 验证            $indexArr = ['A'=>'number','B'=>'address','C'=>'company_name','D'=>'projectid','E'=>'devicetype','F'=>'networkid','G'=>'protocoltype','H'=>'lampprotocoltype','I'=>'section','J'=>'longitude','K'=>'latitude','L'=>'poleheight','M'=>'polediameter','N'=>'polematerial','O'=>'lighttype','P'=>'lamptype','Q'=>'boardtype','R'=>'batterytype','S'=>'boardpower','T'=>'batteryah','U'=>'loadpower','V'=>'loadtype'];            $data = $this->batch_import($indexArr);        }else{  // 创建            $data = $this->input->post('lampData',true);            if (empty($data)) exit(json_result('0007',$this->response['0007']));            $data = json_decode($data,true);        }        foreach ($data as &$v) {            if ($type == 1 && is_float($v['address'])) $v['address'] = strval(intval(ceil($v['address'])));        }        $res = 0;        $typeArr = ['tcp'=>0,'nb'=>1,'gprs'=>2,'lorawan'=>3,'MQTT'=>4,'WeLoraWan'=>6,'onenet'=>7];        $this->db->trans_begin();        $msg = [];        $patrol_arr = array();        foreach ($data as $key => $value) {            $num = $key+2;            $value['number'] = trim($value['number']);            if (!isset($value['number']) || $value['number'] == '') {                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,路灯编号不能为空';                }else{                    $msg[] = 'Table '.$num.' row.Lamp number can not be empty';                }            }else{                if (!is_numeric($value['number']) && ($value['number'] <= 0 || $value['number'] > 999999)) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,路灯编号为1-999999的数字';                    }else{                        $msg[] = 'Table '.$num.' row.The number of street lamps numbered 1-999999';                    }                }            }            // if ($type == 1 && is_float($value['address'])) {            //     $value['address'] = strval(intval(ceil($value['address'])));            // }            $value['address'] = trim($value['address']);            if (empty($value['address'])) {                $res = 1;                                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,无线模块地址不能为空';                }else{                    $msg[] = 'Table '.$num.' row.Address of the wireless module can not be empty';                }            }else{                $status = preg_match('/^[A-Fa-f0-9]+$/', $value['address']);                if (empty($status)) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,无线模块地址为16进制数';                    }else{                        $msg[] = 'Table '.$num.' row.Wireless module address is 16 hexadecimal';                    }                }else{                    if ($this->Lamp_model->getDataCount(['address'=>$value['address']])) {                        $res = 1;                        if (empty($this->version)) {                            $msg[] = '表格第'.$num.'行,无线模块地址已经存在';                        }else{                            $msg[] = 'Table '.$num.' row.Wireless module address already exists';                        }                    }                }            }            $value['company_name'] = trim($value['company_name']);            if (empty($value['company_name'])) {                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,公司名称不能为空';                }else{                    $msg[] = 'Table '.$num.' row.Company name cannot be empty';                }            }            $value['projectid'] = trim($value['projectid']);            if (empty($value['projectid'])) {                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,项目名称不能为空';                }else{                    $msg[] = 'Table '.$num.' row.Project name cannot be empty';                }            }else{                $projectid = $this->Project_model->project_exist_by_name($role,$userid,$companyid,$value['projectid'],$value['company_name']);                if (empty($projectid)) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,项目不存在,请先创建项目';                    }else{                        $msg[] = 'Table '.$num.' row.The project does not exist. Please create a project first.';                    }                    $value['projectid'] = 0;                }else{                    $value['projectid'] = $projectid;                    $this->Project_model->add_lamp_count(array('faultcount'=>0,'projectid'=>$projectid));                    if ($this->Lamp_model->getDataCount(['projectid'=>$value['projectid'],'number'=>$value['number']])) {                        $res = 1;                        if (empty($this->version)) {                            $msg[] = '表格第'.$num.'行,路灯编号已经存在';                        }else{                            $msg[] = 'Table '.$num.' row lamp number already exists';                        }                    }                }            }            if($type != 1 && isset($typeArr[$value['protocoltype']]) && $typeArr[$value['protocoltype']] == 6){                $this->add_device($value['address']);            }            $value['devicetype'] = intval(trim($value['devicetype']));            if ($value['devicetype'] == 0) { // 非直连设备                unset($value['protocoltype']);                $value['networkid'] = trim($value['networkid']);                if (empty($value['networkid'])) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,非直连设备网络编号不能为空';                    }else{                        $msg[] = 'Table '.$num.' row.Indirect device network number cannot be empty';                    }                }else{                    $networkid = $this->Network_model->project_exist_by_name($value['projectid'],$value['networkid']);                    // var_dump($this->db->last_query());die;                    if (empty($networkid)) {                        $res = 1;                        if (empty($this->version)) {                            $msg[] = '表格第'.$num.'行,网络不存在,请先添加网络';                        }else{                            $msg[] = 'Table '.$num.' row.The network does not exist. Please add the network first';                        }                    }else{                        $this->Network_model->add_lamp_count(array('faultcount'=>0,'networkid'=>$networkid));                        $value['networkid'] = $networkid;                    }                }            }elseif ($value['devicetype'] == 1) { // 直连设备                $value['protocoltype'] = trim($value['protocoltype']);                if (empty($value['protocoltype'])) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,协议类型不能为空';                    }else{                        $msg[] = 'Table '.$num.' row.Protocol type cannot be empty';                    }                }else{                    if (!isset($typeArr[$value['protocoltype']])) {                        $res = 1;                        if (empty($this->version)) {                            $msg[] = '表格第'.$num.'行,协议类型不存在';                        }else{                            $msg[] = 'Table '.$num.' row.Protocol type not exists';                        }                    }                }                // 创建直连网络                $number = mb_strlen($value['address']) == 13 ? base_convert($value['address'], 16, 10) : $value['address'];                if ($this->Network_model->getDataCount(array('devicesn'=>$number))) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,无线模块地址已被使用';                    }else{                        $msg[] = 'Table '.$num.' row.Wireless module address has been used';                    }                }                // 创建网络                // $networkData['id']  = $this->Zone_model->insert(array(                //     'name'   => $number,                //     'parent' => $value['projectid'] ,                //     'level'  => 4                // ));                 // 控制器协议类型                $value['lampprotocoltype'] = trim($value['lampprotocoltype']);                if (empty($value['lampprotocoltype'])) {                    $networkData['devicetype'] = 0;                }else{                    if ($value['lampprotocoltype'] == 'ModBus') {                        $networkData['devicetype'] = 3;                    }elseif ($value['lampprotocoltype'] == 'LightBus') {                        $networkData['devicetype'] = 0;                    }else{                        $networkData['devicetype'] = 0;                    }                }                $networkData['networkid'] = $number;                $networkData['gatewaytype'] = 'direct';                $networkData['protocoltype'] = empty($typeArr[$value['protocoltype']]) ? 'tcp' : $typeArr[$value['protocoltype']];                $networkData['projectid'] = $value['projectid'];                $networkData['devicesn'] = $number;                $networkData['networkname'] = $number;                $networkData['type'] = 1;                $networkData['lampcount'] = 1;                $networkData['createtime'] = date('Y-m-d H:i:s',time());                if ($type == 1) {                    $this->db->insert('network',$networkData);                    $value['networkid'] = $this->db->insert_id();                }else{                    $value['networkid'] = $this->Network_model->insert($networkData);                }            }else{                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,设备类型选择错误';                }else{                    $msg[] = 'Table '.$num.' row.Device type selection error';                }            }            unset($value['protocoltype']);            // 控制器协议类型            $value['lampprotocoltype'] = trim($value['lampprotocoltype']);            if (empty($value['lampprotocoltype'])) {                $res = 1;                                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,协议类型不能为空';                }else{                    $msg[] = 'Table '.$num.' row.Protocol type can not be empty';                }            }else{                if ($value['lampprotocoltype'] == 'ModBus') {                    $value['protocoltype'] = 1;                }elseif ($value['lampprotocoltype'] == 'LightBus') {                    $value['protocoltype'] = 0;                }else{                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,协议类型选择错误';                    }else{                        $msg[] = 'Table '.$num.' row.Protocol type selection error';                    }                }            }            unset($value['lampprotocoltype']);            $value['longitude'] = trim($value['longitude']);            if (empty($value['longitude'])) {                $value['longitude'] = 0;            }else{                if (!is_numeric($value['longitude']) || $value['longitude'] > 180 || $value['longitude'] < -180) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,经度输入错误';                    }else{                        $msg[] = 'Table '.$num.' row longitude input error';                    }                }            }            $value['latitude'] = trim($value['latitude']);            if (empty($value['latitude'])) {                $value['latitude'] = 0;            }else{                if (!is_numeric($value['latitude']) || $value['latitude'] > 90 || $value['latitude'] < -90) {                    $res = 1;                    if (empty($this->version)) {                        $msg[] = '表格第'.$num.'行,纬度输入错误';                    }else{                        $msg[] = 'Table '.$num.' row latitude input error';                    }                }            }            if (empty($value['latitude']) && empty($value['longitude']) && !empty($value['projectid'])) {                $projectData = $this->Project_model->getOne($value['projectid'],'cityid');                if (!empty($projectData['cityid'])){                    $globalData = $this->Global_location_model->getOne($projectData['cityid'],'longitude,latitude');                    $value['longitude'] = $globalData['longitude'];                    $value['latitude'] = $globalData['latitude'];                }            }                        $value['loadtype'] = trim($value['loadtype']);            if (empty($value['loadtype']) || $value['loadtype'] == '0' || $value['loadtype'] == '1') {                if ($value['loadtype'] == '1') {                    $value['loadtype'] = 1;                }else{                    $value['loadtype'] = 0;                }            }else{                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,负载类型错误';                }else{                    $msg[] = 'Table '.$num.' row load type error';                }            }            if (trim($value['poleheight']) == '') {                unset($value['poleheight']);            }else{                $value['poleheight'] = trim($value['poleheight']);            }            if (trim($value['polediameter']) == '') {                unset($value['polediameter']);            }else{                $value['polediameter'] = trim($value['polediameter']);            }            if (trim($value['section']) == '') {                $value['section'] = '';                $res = 1;                if (empty($this->version)) {                    $msg[] = '表格第'.$num.'行,路段不能为空';                }else{                    $msg[] = 'Table '.$num.' row. Section cannot be empty';                }            }else{                $value['section'] = trim($value['section']);            }            if (trim($value['polematerial']) == '') {                unset($value['polematerial']);            }else{                $value['polematerial'] = trim($value['polematerial']);            }            if (trim($value['lighttype']) == '') {                unset($value['lighttype']);            }else{                $value['lighttype'] = trim($value['lighttype']);            }            if (trim($value['lamptype']) == '') {                unset($value['lamptype']);            }else{                $value['lamptype'] = trim($value['lamptype']);            }            if (trim($value['boardtype']) == '') {                unset($value['boardtype']);            }else{                $value['boardtype'] = trim($value['boardtype']);            }            if (trim($value['batterytype']) == '') {                unset($value['batterytype']);            }else{                $value['batterytype'] = trim($value['batterytype']);            }            if (trim($value['boardpower']) == '') {                unset($value['boardpower']);            }else{                $value['boardpower'] = trim($value['boardpower']);            }            if (trim($value['batteryah']) == '') {                unset($value['batteryah']);            }else{                $value['batteryah'] = trim($value['batteryah']);            }            if (trim($value['loadpower']) == '') {                unset($value['loadpower']);            }else{                $value['loadpower'] = trim($value['loadpower']);            }            $value['createtime'] = date('Y-m-d H:i:s',time());            $value['updatetime'] = date('Y-m-d H:i:s',time());            unset($value['company_name']);            if (is_null($value['networkid'])) {                unset($value['networkid']);            }            $lamp_id = $this->Lamp_model->insert($value);            $patrol_arr[] = array('lampid'=>$lamp_id,'projectid'=>$value['projectid']);        }        if ($res || $type == 1) {            $this->db->trans_rollback();            exit(json_result('0000',$this->response['0000'],['lampData'=>$data,'msg'=>$msg]));        }else{            $this->db->trans_commit();            foreach ($patrol_arr as $patrol) {                $projectData = $this->Project_model->getOne($patrol['projectid'],'patrolinterval');                $this->patrol_set($patrol['lampid'],$projectData['patrolinterval']);            }            exit(json_result('0000',$this->response['0000']));        }    }    // 路灯历史数据曲线图    public function lamp_history_data(){        $type = intval($this->input->post('type',true));        $lampId = intval($this->input->post('lampid',true));        if (empty($lampId)) exit(json_result('0007',$this->response['0007']));        $dateType = intval($this->input->post('dateType',true));        $date = $this->input->post('date',true);        if ($dateType == 0) { // 一天            $beginDate = date('Y-m-d H:i:s',time()-24*3600);            $endDate = date('Y-m-d H:i:s',time());        }elseif ($dateType == 1) {  // 三天            $beginDate = date('Y-m-d H:i:s',time()-24*3600*3);            $endDate = date('Y-m-d H:i:s',time());        }elseif ($dateType == 2) {  //  七天            $beginDate = date('Y-m-d H:i:s',time()-24*3600*7);            $endDate = date('Y-m-d H:i:s',time());        }elseif ($dateType == 3) {  //  十四天            $beginDate = date('Y-m-d H:i:s',time()-24*3600*14);            $endDate = date('Y-m-d H:i:s',time());        }else{   // 选择时间            if (empty($date)) exit(json_result('0007',$this->response['0007']));            $res = explode('/', $date);            if (strtotime($res[1]) - strtotime($res[0]) > 31 * 24 * 3600) {                exit(json_result('0418',$this->response['0418']));            }            $beginDate = $res[0];            $endDate = $res[1];        }        $sql = "SELECT P.id,P.patrolinterval FROM lampinfo AS L LEFT JOIN project as P on P.id = L.projectid  WHERE L.id = {$lampId} limit 1";                $lampData = $this->db->query($sql)->row_array();        $timezoneData = $this->Project_model->get_timezone_by_projectid($lampData['id']);        $timezone = $timezoneData['value'];        $data = ['patrolinterval'=>$lampData['patrolinterval']];        if ($type == 0) {  // 路灯            $sql = 'select LI.loadvoltage as lampvoltage,LI.loadcurrent as lampcurrent,LI.loadpower as lamppower,LI.updatetime from realtime_info_log as LI where LI.lampid = '.$lampId.' and LI.updatetime >= "'.$beginDate.'" and LI.updatetime <= "'.$endDate.'"';            $list = $this->db->query($sql)->result_array();            $temp = [];            foreach ($list as $value) {                $temp['lampvoltage'][] = $value['lampvoltage'];                $temp['lampcurrent'][] = $value['lampcurrent'];                $temp['lamppower'][] = $value['lamppower'];                // $temp['lighteness'][] = $value['lighteness'];                $temp['updatetime'][] = date_change($value['updatetime'],8,$timezone);                if (!isset($data['maxcurrent'])) {                    $data['maxcurrent'] = $value['lampcurrent'];                }else{                    $data['maxcurrent'] = $value['lampcurrent'] > $data['maxcurrent'] ? $value['lampcurrent'] : $data['maxcurrent'];                }                // if (!isset($data['maxdaychargemincurrent'])) {                //     $data['maxdaychargemincurrent'] = $value['daychargemincurrent'];                // }else{                //     $data['maxdaychargemincurrent'] = $value['daychargemincurrent'] > $data['maxdaychargemincurrent'] ? $value['daychargemincurrent'] : $data['maxdaychargemincurrent'];                // }                if (!isset($data['mincurrent'])) {                    $data['mincurrent'] = $value['lampcurrent'];                }else{                    $data['mincurrent'] = $value['lampcurrent'] < $data['mincurrent'] ? $value['lampcurrent'] : $data['mincurrent'];                }                if (!isset($data['maxvoltage'])) {                    $data['maxvoltage'] = $value['lampvoltage'];                }else{                    $data['maxvoltage'] = $value['lampvoltage'] > $data['maxvoltage'] ? $value['lampvoltage'] : $data['maxvoltage'];                }                if (!isset($data['minvoltage'])) {                    $data['minvoltage'] = $value['lampvoltage'];                }else{                    $data['minvoltage'] = $value['lampvoltage'] < $data['minvoltage'] ? $value['lampvoltage'] : $data['minvoltage'];                }                if (!isset($data['maxpower'])) {                    $data['maxpower'] = $value['lamppower'];                }else{                    $data['maxpower'] = $value['lamppower'] > $data['maxpower'] ? $value['lamppower'] : $data['maxpower'];                }                if (!isset($data['minpower'])) {                    $data['minpower'] = $value['lamppower'];                }else{                    $data['minpower'] = $value['lamppower'] < $data['minpower'] ? $value['lamppower'] : $data['minpower'];                }                // if (!isset($data['maxlighteness'])) {                //     $data['maxlighteness'] = $value['lighteness'];                // }else{                //     $data['maxlighteness'] = $value['lighteness'] > $data['maxlighteness'] ? $value['lighteness'] : $data['maxlighteness'];                // }                // if (!isset($data['minlighteness'])) {                //     $data['minlighteness'] = $value['lighteness'];                // }else{                //     $data['minlighteness'] = $value['lighteness'] < $data['minlighteness'] ? $value['lighteness'] : $data['minlighteness'];                // }                // if (isset($data['maxdaychargemincurrent'])) {                //     $h = floor($data['maxdaychargemincurrent'] / 3600);                //     $h = $h < 10 ? '0'.$h : $h;                //     $m = floor($data['maxdaychargemincurrent'] / 3600 % 60);                //     $m = $m < 10 ? '0'.$m : $m;                //     $data['maxdaychargemincurrent'] = $h.':'.$m;                // }            }            $list = $temp;        }elseif ($type == 1) { // 蓄电池            $sql = 'select batvoltage as battvoltage,batcurrent as chargecurrent,chgtemper as batttemper,batpower as chargepower,updatetime from realtime_info_log where lampid = '.$lampId.' and updatetime >= "'.$beginDate.'" and updatetime <= "'.$endDate.'"';            $list = $this->db->query($sql)->result_array();            $temp = [];            foreach ($list as $value) {                $temp['battvoltage'][] = $value['battvoltage'];                $temp['updatetime'][] = date_change($value['updatetime'],8,$timezone);                                $batterycurrent = $value['chargecurrent'];                $temp['batterycurrent'][] = $batterycurrent;                                $batterypower = $value['chargepower'];                $temp['batterypower'][] = $batterypower;                if (!isset($data['maxcurrent'])) {                    $data['maxcurrent'] = $batterycurrent;                }else{                    $data['maxcurrent'] = $batterycurrent > $data['maxcurrent'] ? $batterycurrent : $data['maxcurrent'];                }                if (!isset($data['mincurrent'])) {                    $data['mincurrent'] = $batterycurrent;                }else{                    $data['mincurrent'] = $batterycurrent < $data['mincurrent'] ? $batterycurrent : $data['mincurrent'];                }                if (!isset($data['maxvoltage'])) {                    $data['maxvoltage'] = $value['battvoltage'];                }else{                    $data['maxvoltage'] = $value['battvoltage'] > $data['maxvoltage'] ? $value['battvoltage'] : $data['maxvoltage'];                }                if (!isset($data['minvoltage'])) {                    $data['minvoltage'] = $value['battvoltage'];                }else{                    $data['minvoltage'] = $value['battvoltage'] < $data['minvoltage'] ? $value['battvoltage'] : $data['minvoltage'];                }                if (!isset($data['maxbatttemper'])) {                    $data['maxbatttemper'] = $value['batttemper'];                }else{                    $data['maxbatttemper'] = $value['batttemper'] > $data['maxbatttemper'] ? $value['batttemper'] : $data['maxbatttemper'];                }                if (!isset($data['minbatttemper'])) {                    $data['minbatttemper'] = $value['batttemper'];                }else{                    $data['minbatttemper'] = $value['batttemper'] < $data['minbatttemper'] ? $value['batttemper'] : $data['minbatttemper'];                }                if (!isset($data['maxpower'])) {                    $data['maxpower'] = round($batterypower,2);                }else{                    $data['maxpower'] = $batterypower > $data['maxpower'] ? round($batterypower,2) : round($data['maxpower'],2);                }                if (!isset($data['minpower'])) {                    $data['minpower'] = round($batterypower,2);                }else{                    $data['minpower'] = $batterypower < $data['minpower'] ? round($batterypower,2) : round($data['minpower'],2);                }            }            $list = $temp;        }elseif ($type == 2) {  // 太阳能板            $sql = 'select SI.panelvoltage as solarvoltage,SI.panelcurrent as solarcurrent,SI.panelpower as solarpower,SI.updatetime from realtime_info_log as SI where SI.lampid = '.$lampId.' and SI.updatetime >= "'.$beginDate.'" and SI.updatetime <= "'.$endDate.'"';            $list = $this->db->query($sql)->result_array();            $temp = [];            foreach ($list as $value) {                $temp['solarvoltage'][] = $value['solarvoltage'];                $temp['solarcurrent'][] = $value['solarcurrent'];                $temp['solarpower'][] = $value['solarpower'];                $temp['updatetime'][] = date_change($value['updatetime'],8,$timezone);                if (!isset($data['maxcurrent'])) {                    $data['maxcurrent'] = $value['solarcurrent'];                }else{                    $data['maxcurrent'] = $value['solarcurrent'] > $data['maxcurrent'] ? $value['solarcurrent'] : $data['maxcurrent'];                }                if (!isset($data['mincurrent'])) {                    $data['mincurrent'] = $value['solarcurrent'];                }else{                    $data['mincurrent'] = $value['solarcurrent'] < $data['mincurrent'] ? $value['solarcurrent'] : $data['mincurrent'];                }                if (!isset($data['maxvoltage'])) {                    $data['maxvoltage'] = $value['solarvoltage'];                }else{                    $data['maxvoltage'] = $value['solarvoltage'] > $data['maxvoltage'] ? $value['solarvoltage'] : $data['maxvoltage'];                }                // if (!isset($data['maxdaydischargemincurrent'])) {                //     $data['maxdaydischargemincurrent'] = $value['daydischargemincurrent'];                // }else{                //     $data['maxdaydischargemincurrent'] = $value['daydischargemincurrent'] > $data['maxdaydischargemincurrent'] ? $value['daydischargemincurrent'] : $data['maxdaydischargemincurrent'];                // }                if (!isset($data['minvoltage'])) {                    $data['minvoltage'] = $value['solarvoltage'];                }else{                    $data['minvoltage'] = $value['solarvoltage'] < $data['minvoltage'] ? $value['solarvoltage'] : $data['minvoltage'];                }                if (!isset($data['maxpower'])) {                    $data['maxpower'] = $value['solarpower'];                }else{                    $data['maxpower'] = $value['solarpower'] > $data['maxpower'] ? $value['solarpower'] : $data['maxpower'];                }                if (!isset($data['minpower'])) {                    $data['minpower'] = $value['solarpower'];                }else{                    $data['minpower'] = $value['solarpower'] < $data['minpower'] ? $value['solarpower'] : $data['minpower'];                }                if (isset($data['maxdaydischargemincurrent'])) {                    $h = floor($data['maxdaydischargemincurrent'] / 3600);                    $h = $h < 10 ? '0'.$h : $h;                    $m = floor($data['maxdaydischargemincurrent'] / 3600 % 60);                    $m = $m < 10 ? '0'.$m : $m;                    $data['maxdaydischargemincurrent'] = $h.':'.$m;                }            }            $list = $temp;        }else{  // 电量            $sql = 'select daychargeah,daydischarah,updatetime from battery_info_log where lampid = '.$lampId.' and updatetime >= "'.$beginDate.'" and updatetime <= "'.$endDate.'"';            $list = $this->db->query($sql)->result_array();            $temp = [];            foreach ($list as $value) {                $temp['daychargeah'][] = $value['daychargeah'];                $temp['daydischarah'][] = $value['daydischarah'];                $temp['updatetime'][] = date_change($value['updatetime'],8,$timezone);                if (!isset($data['maxdaychargeah'])) {                    $data['maxdaychargeah'] = $value['daychargeah'];                }else{                    $data['maxdaychargeah'] = $value['daychargeah'] > $data['maxdaychargeah'] ? $value['daychargeah'] : $data['maxdaychargeah'];                }                if (!isset($data['mindaychargeah'])) {                    $data['mindaychargeah'] = $value['daychargeah'];                }else{                    $data['mindaychargeah'] = $value['daychargeah'] < $data['mindaychargeah'] ? $value['daychargeah'] : $data['mindaychargeah'];                }                if (!isset($data['maxdaydischarah'])) {                    $data['maxdaydischarah'] = $value['daydischarah'];                }else{                    $data['maxdaydischarah'] = $value['daydischarah'] > $data['maxdaydischarah'] ? $value['daydischarah'] : $data['maxdaydischarah'];                }                if (!isset($data['mindaydischarah'])) {                    $data['mindaydischarah'] = $value['daydischarah'];                }else{                    $data['mindaydischarah'] = $value['daydischarah'] < $data['mindaydischarah'] ? $value['daydischarah'] : $data['mindaydischarah'];                }            }            $list = $temp;        }        if (empty($list)) {            $data['list'] = new StdClass();        }else{            $data['list'] = $list;        }        exit(json_result('0000',$this->response['0000'],$data));    }}
 |