基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)
在eTS調(diào)用C++方法的過(guò)程中,需要使用到Node_API、Cmake等工具來(lái)做中間轉(zhuǎn)換。
想了解更多關(guān)于開(kāi)源的內(nèi)容,請(qǐng)?jiān)L問(wèn):
(資料圖片)
清一色開(kāi)源基礎(chǔ)軟件社區(qū)
https://ost.51cto.com
DevEco創(chuàng)建項(xiàng)目和模塊
創(chuàng)建項(xiàng)目只要是API9就行。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
創(chuàng)建一個(gè)S7模塊要用到這個(gè)C++模板。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
應(yīng)用架構(gòu)。整個(gè)應(yīng)用架構(gòu)可以分為三部分:C++側(cè)、eTS側(cè)、工具鏈。
C側(cè):包含各種文件的引用、C或者C代碼、Node_API將C++函數(shù)與JavaScript關(guān)聯(lián)的信息等。eTS側(cè):包含界面UI、自身方法,調(diào)用引用包的方法等。工具鏈:包含Cmake打包工具在內(nèi)的系列工具。在eTS調(diào)用C++方法的過(guò)程中,需要使用到Node_API、Cmake等工具來(lái)做中間轉(zhuǎn)換,整個(gè)架構(gòu)及其關(guān)聯(lián)關(guān)系如下:調(diào)用、打包流程。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
在eTS調(diào)用C++方法的過(guò)程中,調(diào)用、打包流程如下:
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
移植SNAP7到OpenHarmony
SNAP7移植框架文件在此開(kāi)源倉(cāng)庫(kù)的cpp文件夾里面。
庫(kù)文件:
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
cpp文件:
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
把上面文件加入編譯,加入hilog。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
把測(cè)試代碼執(zhí)行起來(lái)
在add中加入s7_main函數(shù)。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
修改IP地址,機(jī)架號(hào),插槽號(hào),和DB塊讀取的地址。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
在module.json5中添加網(wǎng)絡(luò)權(quán)限。
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
運(yùn)行調(diào)試
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)-開(kāi)源基礎(chǔ)軟件社區(qū)
#include #include #include "snap7/snap7.h"#include "snap7/client.h"#include "hilog/log.h"#ifdef OS_WINDOWS# define WIN32_LEAN_AND_MEAN# include #endif TS7Client *Client; byte Buffer[65536]; // 64 K buffer int SampleDBNum = 1000; char *Address = "10.168.100.2"; // PLC IP Address int Rack = 0,Slot = 1; // Default Rack and Slot int ok = 0; // Number of test pass int ko = 0; // Number of test failure bool JobDone=false; int JobResult=0;//------------------------------------------------------------------------------// Async completion callback //------------------------------------------------------------------------------// This is a simply text demo, we use callback only to set an internal flag...void S7API CliCompletion(void *usrPtr, int opCode, int opResult){ JobResult=opResult; JobDone = true;}//------------------------------------------------------------------------------// SysSleep (copied from snap_sysutils.cpp) multiplatform millisec sleep//------------------------------------------------------------------------------void SysSleep(longword Delay_ms){#ifdef OS_WINDOWS Sleep(Delay_ms);#else struct timespec ts; ts.tv_sec = (time_t)(Delay_ms / 1000); ts.tv_nsec =(long)((Delay_ms - ts.tv_sec) * 1000000); nanosleep(&ts, (struct timespec *)0);#endif}//------------------------------------------------------------------------------// Usage Syntax//------------------------------------------------------------------------------void Usage(){ printf("Usage\n"); printf(" client [Rack=0 Slot=2]\n"); printf("Example\n"); printf(" client 192.168.1.101 0 2\n"); printf("or\n"); printf(" client 192.168.1.101\n"); getchar();}//------------------------------------------------------------------------------// hexdump, a very nice function, it"s not mine.// I found it on the net somewhere some time ago... thanks to the author ;-)//------------------------------------------------------------------------------#ifndef HEXDUMP_COLS#define HEXDUMP_COLS 16#endifvoid hexdump(void *mem, unsigned int len){ unsigned int i, j; for(i = 0; i < len + ((len % HEXDUMP_COLS) ? (HEXDUMP_COLS - len % HEXDUMP_COLS) : 0); i++) { /* print offset */ if(i % HEXDUMP_COLS == 0) { printf("0x%04x: ", i); } /* print hex data */ if(i < len) { printf("%02x ", 0xFF & ((char*)mem)[i]); } else /* end of block, just aligning for ASCII dump */ { printf(" "); } /* print ASCII dump */ if(i % HEXDUMP_COLS == (HEXDUMP_COLS - 1)) { for(j = i - (HEXDUMP_COLS - 1); j <= i; j++) { if(j >= len) /* end of block, not really printing */ { putchar(" "); } else if(isprint((((char*)mem)[j] & 0x7F))) /* printable char */ { putchar(0xFF & ((char*)mem)[j]); } else /* other char */ { putchar("."); } } putchar("\n"); } }}//------------------------------------------------------------------------------// Check error//------------------------------------------------------------------------------bool Check(int Result, const char * function){ printf("\n"); printf("+-----------------------------------------------------\n"); printf("| %s\n",function); printf("+-----------------------------------------------------\n"); if (Result==0) { printf("| Result : OK\n"); printf("| Execution time : %d ms\n",Client->ExecTime()); printf("+-----------------------------------------------------\n"); ok++; } else { printf("| ERROR !!! \n"); if (Result<0) printf("| Library Error (-1)\n"); else printf("| %s\n",CliErrorText(Result).c_str()); printf("+-----------------------------------------------------\n"); ko++; } return Result==0;}//------------------------------------------------------------------------------// Multi Read//------------------------------------------------------------------------------void MultiRead(){ // Multiread buffers byte MB[16]; // 16 Merker bytes byte EB[16]; // 16 Digital Input bytes byte AB[16]; // 16 Digital Output bytes word TM[8]; // 8 timers word CT[8]; // 8 counters // Prepare struct TS7DataItem Items[5]; // NOTE : *AMOUNT IS NOT SIZE* , it"s the number of items // Merkers Items[0].Area =S7AreaMK; Items[0].WordLen =S7WLByte; Items[0].DBNumber =0; // Don"t need DB Items[0].Start =0; // Starting from 0 Items[0].Amount =16; // 16 Items (bytes) Items[0].pdata =&MB; // Digital Input bytes Items[1].Area =S7AreaPE; Items[1].WordLen =S7WLByte; Items[1].DBNumber =0; // Don"t need DB Items[1].Start =0; // Starting from 0 Items[1].Amount =16; // 16 Items (bytes) Items[1].pdata =&EB; // Digital Output bytes Items[2].Area =S7AreaPA; Items[2].WordLen =S7WLByte; Items[2].DBNumber =0; // Don"t need DB Items[2].Start =0; // Starting from 0 Items[2].Amount =16; // 16 Items (bytes) Items[2].pdata =&AB; // Timers Items[3].Area =S7AreaTM; Items[3].WordLen =S7WLTimer; Items[3].DBNumber =0; // Don"t need DB Items[3].Start =0; // Starting from 0 Items[3].Amount =8; // 8 Timers Items[3].pdata =&TM; // Counters Items[4].Area =S7AreaCT; Items[4].WordLen =S7WLCounter; Items[4].DBNumber =0; // Don"t need DB Items[4].Start =0; // Starting from 0 Items[4].Amount =8; // 8 Counters Items[4].pdata =&CT; int res=Client->ReadMultiVars(&Items[0],5); if (Check(res,"Multiread Vars")) { // Result of Client->ReadMultivars is the "global result" of // the function, it"s OK if something was exchanged. // But we need to check single Var results. // Let shall suppose that we ask for 5 vars, 4 of them are ok but // the 5th is inexistent, we will have 4 results ok and 1 not ok. printf("Dump MB0..MB15 - Var Result : %d\n",Items[0].Result); if (Items[0].Result==0) hexdump(&MB,16); printf("Dump EB0..EB15 - Var Result : %d\n",Items[1].Result); if (Items[1].Result==0) hexdump(&EB,16); printf("Dump AB0..AB15 - Var Result : %d\n",Items[2].Result); if (Items[2].Result==0) hexdump(&AB,16); printf("Dump T0..T7 - Var Result : %d\n",Items[3].Result); if (Items[3].Result==0) hexdump(&TM,16); // 8 Timers -> 16 bytes printf("Dump Z0..Z7 - Var Result : %d\n",Items[4].Result); if (Items[4].Result==0) hexdump(&CT,16); // 8 Counters -> 16 bytes };}//------------------------------------------------------------------------------// List blocks in AG//------------------------------------------------------------------------------void ListBlocks(){ TS7BlocksList List; int res=Client->ListBlocks(&List); if (Check(res,"List Blocks in AG")) { printf(" OBCount : %d\n",List.OBCount); printf(" FBCount : %d\n",List.FBCount); printf(" FCCount : %d\n",List.FCCount); printf(" SFBCount : %d\n",List.SFBCount); printf(" SFCCount : %d\n",List.SFCCount); printf(" DBCount : %d\n",List.DBCount); printf(" SDBCount : %d\n",List.SDBCount); };}//------------------------------------------------------------------------------// CPU Info : catalog//------------------------------------------------------------------------------void OrderCode(){ TS7OrderCode Info; int res=Client->GetOrderCode(&Info); if (Check(res,"Catalog")) { printf(" Order Code : %s\n",Info.Code); printf(" Version : %d.%d.%d\n",Info.V1,Info.V2,Info.V3); };}//------------------------------------------------------------------------------// CPU Info : unit info//------------------------------------------------------------------------------void CpuInfo(){ TS7CpuInfo Info; int res=Client->GetCpuInfo(&Info); if (Check(res,"Unit Info")) { printf(" Module Type Name : %s\n",Info.ModuleTypeName); printf(" Serial Number : %s\n",Info.SerialNumber); printf(" AS Name : %s\n",Info.ASName); printf(" Module Name : %s\n",Info.ModuleName); };}//------------------------------------------------------------------------------// CP Info//------------------------------------------------------------------------------void CpInfo(){ TS7CpInfo Info; int res=Client->GetCpInfo(&Info); if (Check(res,"Communication processor Info")) { printf(" Max PDU Length : %d bytes\n",Info.MaxPduLengt); printf(" Max Connections : %d \n",Info.MaxConnections); printf(" Max MPI Rate : %d bps\n",Info.MaxMpiRate); printf(" Max Bus Rate : %d bps\n",Info.MaxBusRate); };}//------------------------------------------------------------------------------// PLC Status//------------------------------------------------------------------------------void UnitStatus(){ int res=0; int Status=Client->PlcStatus(); if (Check(res,"CPU Status")) { switch (Status) { case S7CpuStatusRun : printf(" RUN\n"); break; case S7CpuStatusStop: printf(" STOP\n"); break; default : printf(" UNKNOWN\n"); break; } };}//------------------------------------------------------------------------------// Upload DB0 (surely exists in AG)//------------------------------------------------------------------------------void UploadDB0(){ int Size = sizeof(Buffer); // Size is IN/OUT par // In input it tells the client the size available // In output it tells us how many bytes were uploaded. int res=Client->Upload(Block_SDB, 0, &Buffer, &Size); if (Check(res,"Block Upload (SDB 0)")) { printf("Dump (%d bytes) :\n",Size); hexdump(&Buffer,Size); }}//------------------------------------------------------------------------------// Async Upload DB0 (using callback as completion trigger)//------------------------------------------------------------------------------void AsCBUploadDB0(){ int Size = sizeof(Buffer); // Size is IN/OUT par // In input it tells the client the size available // In output it tells us how many bytes were uploaded. JobDone=false; int res=Client->AsUpload(Block_SDB, 0, &Buffer, &Size); if (res==0) { while (!JobDone) { SysSleep(100); } res=JobResult; } if (Check(res,"Async (callback) Block Upload (SDB 0)")) { printf("Dump (%d bytes) :\n",Size); hexdump(&Buffer,Size); }}//------------------------------------------------------------------------------// Async Upload DB0 (using event wait as completion trigger)//------------------------------------------------------------------------------void AsEWUploadDB0(){ int Size = sizeof(Buffer); // Size is IN/OUT par // In input it tells the client the size available // In output it tells us how many bytes were uploaded. JobDone=false; int res=Client->AsUpload(Block_SDB, 0, &Buffer, &Size); if (res==0) { res=Client->WaitAsCompletion(3000); } if (Check(res,"Async (Wait event) Block Upload (SDB 0)")) { printf("Dump (%d bytes) :\n",Size); hexdump(&Buffer,Size); }}//------------------------------------------------------------------------------// Async Upload DB0 (using polling as completion trigger)//------------------------------------------------------------------------------void AsPOUploadDB0(){ int Size = sizeof(Buffer); // Size is IN/OUT par // In input it tells the client the size available // In output it tells us how many bytes were uploaded. JobDone=false; int res=Client->AsUpload(Block_SDB, 0, &Buffer, &Size); if (res==0) { while (!Client->CheckAsCompletion(&res)) { SysSleep(100); }; } if (Check(res,"Async (polling) Block Upload (SDB 0)")) { printf("Dump (%d bytes) :\n",Size); hexdump(&Buffer,Size); }}//------------------------------------------------------------------------------// Read a sample SZL Block//------------------------------------------------------------------------------void ReadSzl_0011_0000(){ PS7SZL SZL = PS7SZL(&Buffer); // use our buffer casted as TS7SZL int Size = sizeof(Buffer); // Block ID 0x0011 IDX 0x0000 normally exists in every CPU int res=Client->ReadSZL(0x0011, 0x0000, SZL, &Size); if (Check(res,"Read SZL - ID : 0x0011, IDX 0x0000")) { printf(" LENTHDR : %d\n",SZL->Header.LENTHDR); printf(" N_DR : %d\n",SZL->Header.N_DR); printf("Dump (%d bytes) :\n",Size); hexdump(&Buffer,Size); }}//------------------------------------------------------------------------------// Unit Connection//------------------------------------------------------------------------------bool CliConnect(){ Client->SetConnectionType(3); int res = Client->ConnectTo(Address,Rack,Slot); if (Check(res,"UNIT Connection")) { printf(" Connected to : %s (Rack=%d, Slot=%d)\n",Address,Rack,Slot); printf(" PDU Requested : %d bytes\n",Client->PDURequested()); printf(" PDU Negotiated : %d bytes\n",Client->PDULength()); }; return res==0;}//------------------------------------------------------------------------------// Unit Disconnection//------------------------------------------------------------------------------void CliDisconnect(){ Client->Disconnect();}//------------------------------------------------------------------------------// Perform readonly tests, no cpu status modification//------------------------------------------------------------------------------void PerformTests(){ OrderCode(); CpuInfo(); CpInfo(); UnitStatus(); ReadSzl_0011_0000(); UploadDB0(); AsCBUploadDB0(); AsEWUploadDB0(); AsPOUploadDB0(); MultiRead();}//------------------------------------------------------------------------------// Tests Summary//------------------------------------------------------------------------------void Summary(){ printf("\n"); printf("+-----------------------------------------------------\n"); printf("| Test Summary \n"); printf("+-----------------------------------------------------\n"); printf("| Performed : %d\n",(ok+ko)); printf("| Passed : %d\n",ok); printf("| Failed : %d\n",ko); printf("+----------------------------------------[press a key]\n"); getchar();}float GetPLCData(){ float value0 = 0; byte value1[4]= {0}; Client->DBRead(1,1244,4,value1); *((byte*)&value0 + 0) = value1[3]; *((byte*)&value0 + 1) = value1[2]; *((byte*)&value0 + 2) = value1[1]; *((byte*)&value0 + 3) = value1[0]; return value0;}//------------------------------------------------------------------------------// Main //------------------------------------------------------------------------------float s7_main(){ float result = 0; Client = new TS7Client(); Client->SetConnectionType(3); Client->ConnectTo("192.168.1.2", 0, 1); //PLC的IP地址,機(jī)架號(hào),插槽號(hào) OH_LOG_Print(LOG_APP, LOG_INFO, 0xFF00, "PluginManager", "[S7 CONNECT]Connected"); if(Client->Connected() == true){ OH_LOG_Print(LOG_APP, LOG_INFO, 0xFF00, "PluginManager", "[S7 CONNECT]連接成功"); } float value0 = 0; byte value1[4]= {0}; Client->DBRead(1,1111,4,value1); *((byte*)&value0 + 0) = value1[3]; *((byte*)&value0 + 1) = value1[2]; *((byte*)&value0 + 2) = value1[1]; *((byte*)&value0 + 3) = value1[0]; result = value0; delete Client; return result;}
想了解更多關(guān)于開(kāi)源的內(nèi)容,請(qǐng)?jiān)L問(wèn):
清一色開(kāi)源基礎(chǔ)軟件社區(qū)
https://ost.51cto.com
關(guān)鍵詞:
您可能也感興趣:
今日熱點(diǎn)
為您推薦
能吃能喝能上天,還能保存上千年!多地高校錄取通知書上新
遠(yuǎn)大住工控股股東張劍擬增持1000萬(wàn)-3000萬(wàn)股H股股份
內(nèi)蒙古“教育招生考試中心填報(bào)志愿輔助系統(tǒng)”上線,助力考生填報(bào)志愿|全球微動(dòng)態(tài)
更多
- 信息:北京銀保監(jiān)局:轄內(nèi)農(nóng)業(yè)保險(xiǎn)密度和保險(xiǎn)深度處于全國(guó)領(lǐng)...
- 今年端午檔票房位列影史第二!接下來(lái)的暑期檔更爆
- 天天報(bào)道:怡合達(dá)(301029):6月27日北向資金增持4.07萬(wàn)股
- 長(zhǎng)白山:目前生產(chǎn)經(jīng)營(yíng)正常 內(nèi)外部經(jīng)營(yíng)環(huán)境沒(méi)有發(fā)生重大變化
- 湖南出臺(tái)入境旅游獎(jiǎng)勵(lì)辦法_天天熱點(diǎn)評(píng)
- 完美關(guān)系角色介紹 完美關(guān)系角色簡(jiǎn)介
- 郵儲(chǔ)銀行漯河市分行開(kāi)展大走訪活動(dòng) 助力實(shí)體經(jīng)濟(jì)發(fā)展_當(dāng)前熱門
- 北京:指定石景山區(qū)部分道路作為自動(dòng)駕駛車輛測(cè)試道路 當(dāng)前短訊
排行
- 可以讓眼部飽滿的眼霜推薦 4款補(bǔ)水保濕抗皺眼霜推薦_每日資訊
- 兩部門印發(fā)辦法明確 消防員面向社會(huì)公開(kāi)招錄
- 低價(jià)出售410萬(wàn)旅客信息?12306回應(yīng):為第三方泄漏
- 2019年這些新規(guī)將落地 又一次普惠“加薪”
- 北京8家醫(yī)院試點(diǎn)將推錯(cuò)峰就診 率先開(kāi)展“治堵”
- 數(shù)字化的城商行們?cè)趺礃恿???shù)字化轉(zhuǎn)型背后的故事
- 四川省稅務(wù)系統(tǒng)將推出10大類舉措服務(wù)納稅人、繳費(fèi)人
- 長(zhǎng)三角禁限塑新規(guī)實(shí)施尚存3個(gè)堵點(diǎn) 仍需多方合力推進(jìn)
- 中國(guó)鐵建高溢價(jià)溫州奪地 去年毛利率低于行業(yè)約10個(gè)百分點(diǎn)
- 推行郵件快件包裝“綠色革命” 從根源上解決問(wèn)題
最近更新
- 基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)
- 動(dòng)態(tài)焦點(diǎn):航程超600公里 第130次中老緬泰湄公河聯(lián)合巡航結(jié)束
- 速遞!奧特萊斯是什么店_奧特萊斯是什么
- 可以讓眼部飽滿的眼霜推薦 4款補(bǔ)水保濕抗皺眼霜推薦_每日資訊
- 山西國(guó)企改革板塊7月3日漲3.75%,山西汾酒領(lǐng)漲,主力資金凈流...
- 點(diǎn)燈游戲_關(guān)于點(diǎn)燈游戲介紹
- 女生夏季穿衣搭配的方法_女生夏季穿衣服搭配技巧介紹
- 環(huán)球報(bào)道:和曼聯(lián)搶門將!記者:利雅得勝利向奧納納提供了一份...
- 最優(yōu)性必要條件(關(guān)于最優(yōu)性必要條件介紹)-當(dāng)前看點(diǎn)
- 斗羅大陸199集劇情分析 斗羅大陸199集劇情分析
- 截胡曼聯(lián)?美媒:利雅得勝利為奧納納提供豐厚報(bào)價(jià) 最新資訊
- 【全球新要聞】有情有義有愛(ài)的體壇:朱婷郎平似母女,馬龍最...
- 定西漢服雅集會(huì)-世界聚焦
- 環(huán)球精選!定西金帆現(xiàn)代物流有限公司
- 世界消息!繼偉+周琦專訪!回應(yīng)歐洲拉練+李凱爾,周琦恢復(fù)傷...
- 白云蒼狗什么意思(白云蒼狗)_焦點(diǎn)
- 名還行營(yíng)銷網(wǎng)_名還行營(yíng)銷
- 宋子貞 環(huán)球關(guān)注
- 小心中暑!京津冀等地高溫將再度加強(qiáng) 一圖了解如何防治熱射...
- 詩(shī)人李季對(duì)土地和人民_詩(shī)人李季
- 課題文獻(xiàn)綜述(課題文獻(xiàn)綜述怎么寫)
- 楞次定律課件ppt動(dòng)畫_楞次定律課件|全球新動(dòng)態(tài)
- 世界視點(diǎn)!絕地求生游戲進(jìn)程崩潰怎么解決(lol為什么游戲崩潰)
- 全球時(shí)訊:【李俊昊x林允兒戀愛(ài)中?】公司回應(yīng):“不是戀愛(ài)事...
- 紫光公開(kāi)嵌入式多層SeDRAM內(nèi)存:帶寬、能效遙遙領(lǐng)先
- German Chemical Giant BASF Sets up an Innovation Center in Shanghai|天天速訊
- 廣州家庭能買三套?業(yè)內(nèi):或局部放開(kāi)! 速讀
- 假如給我三天光明讀書筆記1000字 假如給我三天光明讀書筆記...
- 聯(lián)勤保障部隊(duì)2人晉升專業(yè)技術(shù)少將軍銜
- 正當(dāng)防衛(wèi)四是不是需要氪金 Epic平臺(tái)可以免費(fèi)領(lǐng)正當(dāng)防衛(wèi)4_全球播報(bào)
今日要聞
- 基于OpenHarmony 系統(tǒng)通過(guò)S7協(xié)議讀取西門子PLC數(shù)據(jù)
- 可以讓眼部飽滿的眼霜推薦 4款補(bǔ)水保濕抗皺眼霜推薦_每日資訊
- 斗羅大陸199集劇情分析 斗羅大陸199集劇情分析
- 宋子貞 環(huán)球關(guān)注
- 全球時(shí)訊:【李俊昊x林允兒戀愛(ài)中?】公司回應(yīng):“不是戀愛(ài)事實(shí),本來(lái)就很親近!”
- 滬寧沿江高鐵,新進(jìn)展!
- 高塘嶺街道舉行慶祝中國(guó)共產(chǎn)黨成立102周年系列活動(dòng)
- 當(dāng)前焦點(diǎn)!清華-貴州大數(shù)據(jù)研究生實(shí)踐教育基地產(chǎn)出一批研究成果
- 白銀高新區(qū)牽線搭橋?助力園區(qū)企業(yè)發(fā)展-新要聞
- 天天觀熱點(diǎn):濟(jì)南高新區(qū)聚力打造城鄉(xiāng)產(chǎn)業(yè)融合發(fā)展“高新”示范