-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMePm25Sensor.cpp
736 lines (729 loc) · 19.3 KB
/
MePm25Sensor.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
/**
* \par Copyright (C), 2012-2016, MakeBlock
* \class MePm25Sensor
* \brief Driver for Me PM2.5 sensor device.
* @file MePm25Sensor.cpp
* @author MakeBlock
* @version V1.0.0
* @date 2016/12/13
* @brief Driver for Me PM2.5 sensor device.
*
* \par Copyright
* This software is Copyright (C), 2012-2016, MakeBlock. Use is subject to license \n
* conditions. The main licensing options available are GPL V2 or Commercial: \n
*
* \par Open Source Licensing GPL V2
* This is the appropriate option if you want to share the source code of your \n
* application with everyone you distribute it to, and you also want to give them \n
* the right to share who uses it. If you wish to use this software under Open \n
* Source Licensing, you must contribute all your source code to the open source \n
* community in accordance with the GPL Version 2 when your application is \n
* distributed. See http://www.gnu.org/copyleft/gpl.html
*
* \par Description
* This file is a drive for Smart Servo device, The Smart Servo inherited the
* MeSerial class from SoftwareSerial.
*
*
* \par Method List:
* 1. uint16_t MePm25Sensor::readPm1_0Concentration(void);
* 2. uint16_t MePm25Sensor::readPm2_5Concentration(void);
* 3. uint16_t MePm25Sensor::readPm10Concentration(void);
* 4. uint16_t MePm25Sensor::read0_3NumIn100ml(void);
* 5. uint16_t MePm25Sensor::read0_5NumIn100ml(void);
* 6. uint16_t MePm25Sensor::read1_0NumIn100ml(void);
* 7. uint16_t MePm25Sensor::read2_5NumIn100ml(void);
* 8. uint16_t MePm25Sensor::read5_0NumIn100ml(void);
* 9. uint16_t MePm25Sensor::read10NumIn100ml(void);
* 10. uint16_t MePm25Sensor::setOuputCompatibility(void);
* 11. uint16_t MePm25Sensor::turnOnFanLaser(void);
* 12. uint16_t MePm25Sensor::turnOffFanLaser(void);
* 13. uint16_t MePm25Sensor::OutputIntimeOn(void);
* 14. uint16_t MePm25Sensor::OutputIntimeOff(void);
* 15. uint16_t MePm25Sensor::setOutputIntimePeriod(uint16_t settime);
* 16. uint16_t MePm25Sensor::askForData(void);
* 17. uint16_t MePm25Sensor::coreSelfTest(void);
* 18. uint16_t MePm25Sensor::setCoreSelfTestTime(uint8_t settime);
* 19. uint16_t MePm25Sensor::setCoreEfficient(uint8_t efficent);
* 20. uint16_t MePm25Sensor::rxloop(void);
* 21. uint16_t MePm25Sensor::returnlen(void);
* 22. uint16_t MePm25Sensor::returnchecksum(void);
*
* \par History:
* <pre>
* `<Author>` `<Time>` `<Version>` `<Descr>`
* Zzipeng 2016/12/13 1.0.0 Build the new.
* </pre>
*
* @example Pm25Sensor.ino
* @Orion PORT3 PORT4 PORT5
*/
#include "MePm25Sensor.h"
#include "MeSerial.h"
#ifdef ME_PORT_DEFINED
/**
* Alternate Constructor which can call your own function to map the Me Smart Servo to arduino port,
* no pins are used or initialized here.
* \param[in]
* None
*/
MePm25Sensor::MePm25Sensor() : MeSerial(0)
{
parsingSysex = false;
sysex = {0};
rxbuf = {0};
sysexBytesRead = 0;
}
/**
* Alternate Constructor which can call your own function to map the Me Smart Servo to arduino port,
* If the hardware serial was selected, it will used the hardware serial.
* \param[in]
* port - RJ25 port from PORT_1 to M2.
*/
MePm25Sensor::MePm25Sensor(uint8_t port) : MeSerial(port)
{
parsingSysex = false;
sysex = {0};
rxbuf = {0};
sysexBytesRead = 0;
}
#else // ME_PORT_DEFINED
/**
* Alternate Constructor which can call your own function to map the Me Smart Servo to arduino port,
* If the hardware serial was selected, it will used the hardware serial.
* \param[in]
* receivePin - the rx pin of serial(arduino port).
* \param[in]
* transmitPin - the tx pin of serial(arduino port).
* \param[in]
* inverse_logic - Whether the Serial level need inv.
*/
MePm25Sensor::MePm25Sensor(uint8_t receivePin, uint8_t transmitPin, bool inverse_logic)\
: MeSerial(receivePin, transmitPin, inverse_logic)
{
parsingSysex = false;
sysex = {0};
rxbuf = {0};
sysexBytesRead = 0;
}
#endif // ME_PORT_DEFINED
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::readPm1_0Concentration(void)//PM1.0 ug/m^3
{
//return sysex.val.data1;
return (uint16_t)sysex.storedInputData[3]<<8|sysex.storedInputData[4];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::readPm2_5Concentration(void)//PM2.5 ug/m^3
{
// return sysex.val.data2;
return (uint16_t)sysex.storedInputData[5]<<8|sysex.storedInputData[6];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::readPm10Concentration(void)//PM10 ug/m^3
{
//return sysex.val.data3;
return (uint16_t)sysex.storedInputData[7]<<8|sysex.storedInputData[8];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read0_3NumIn100ml(void)//0.1L空气中直径在0.3um的颗粒物个数
{
// return sysex.val.data4;
return (uint16_t)sysex.storedInputData[9]<<8|sysex.storedInputData[10];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read0_5NumIn100ml(void)//0.1L空气中直径在0.5um的颗粒物个数
{
//return sysex.val.data5;
return (uint16_t)sysex.storedInputData[11]<<8|sysex.storedInputData[12];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read1_0NumIn100ml(void)//0.1L空气中直径在1.0um的颗粒物个数
{
// return sysex.val.data6;
return (uint16_t)sysex.storedInputData[13]<<8|sysex.storedInputData[14];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read2_5NumIn100ml(void)//0.1L空气中直径在2.5um的颗粒物个数
{
//return sysex.val.data7;
return (uint16_t)sysex.storedInputData[15]<<8|sysex.storedInputData[16];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read5_0NumIn100ml(void)//0.1L空气中直径在5.0um的颗粒物个数
{
//return sysex.val.data8;
return (uint16_t)sysex.storedInputData[17]<<8|sysex.storedInputData[18];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::read10NumIn100ml(void)//0.1L空气中直径在10um的颗粒物个数
{
// return sysex.val.data9;
return (uint16_t)sysex.storedInputData[19]<<8|sysex.storedInputData[20];
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::setOuputCompatibility(void)//设置输出兼容
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA0,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X1D};//默认益杉
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::turnOnFanLaser(void)//打开风扇激光
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA1,0X00,0X00,0X01,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X1F};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::turnOffFanLaser(void)//关闭风扇激光
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA1,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X1E};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::OutputIntimeOn(void)//定时输出开
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA2,0X00,0X00,0X01,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X20};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::OutputIntimeOff(void)//定时输出关
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA2,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X1F};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::setOutputIntimePeriod(uint16_t settime)//设定定时输出间隔 0~65535s
{
uint8_t d1 = settime>>8;//msb
uint8_t d2 = settime;//lsb
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA3,0X00,d1,d2,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X25};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::askForData(void)//请求输出数据
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA4,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X21};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::coreSelfTest(void)//滤芯检测
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA5,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X22};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::returnCoreSelfTest(void)//返回自检结果 0要更换 1 正常
{
uint8_t rxflag=0,cnt=0,inputData=0;
while (available())
{
// get the new byte:
inputData = read();
if(rxflag & 0x80 == 0x80)
{
//normal data byte - add to buffer
cnt++;
if(cnt==6 && inputData==0x02)
{
rxflag=0;
cnt=0;
return 0;
}
else if(cnt==6 && inputData==0x01)
{
rxflag=0;
cnt=0;
return 1;
}
else
{
rxflag=0;
cnt=0;
}
}
else if(inputData == 0X4E)
{
if(rxflag & 0x01)
{
rxflag |= 0x80;//successful
cnt = 0;
}
else
{
rxflag = 0;//failed
cnt = 0;
}
}
else if(inputData == 0X42)
{
rxflag |= 0x01;
}
}
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::setCoreSelfTestTime(uint8_t settime)//设定检测时间 0~255s
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA6,0X00,0X00,settime,0X00,0X00,0X00,0X00,0X00,0X00,0X02,0X22};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* readByte
* \par Description
* change 2byte 7bit read date to 1byte byte data.
* \param[in]
* *argv - the buffer for input data.\n
* \param[in]
* idx - the index used to identify the first address of read data.\n
* \par Output
* return the converted data.
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::setCoreEfficient(uint8_t efficent)//设定滤芯使用效率 0~100%
{
uint8_t temp[16]={0X33,0X3E,0X00,0X0C,0XA7,0X00,0X00,efficent,0X00,0X00,0X00,0X00,0X00,0X00,0X01,0X74};
uint8_t i=0;
for(i=0;i<16;i++)
{
write(temp[i]);
}
return 0;
}
/**
* \par Function
* smartServoEventHandle
* \par Description
* This function is used to process protocol messages of smart servo.
* \param[in]
* None
* \par Output
* None
* \return
* None
* \par Others
* None
*/
void MePm25Sensor::rxloop(void)
{
uint8_t inputData=0,i=0;
uint16_t checksum=0x006F;//0x3d+0x32
while (available())
{
// get the new byte:
inputData = read();
if(parsingSysex & 0x81 == 0x81)
{
//normal data byte - add to buffer
rxbuf.storedInputData[sysexBytesRead] = inputData;
// Serial.println(sysex.storedInputData[0]);
sysexBytesRead++;
if(sysexBytesRead >= 31)
{
for(i=0;i<28;i++)
{
checksum +=rxbuf.storedInputData[i+1]; //cal checksum
}
// Serial.println(checksum);
if(checksum == ((uint16_t)rxbuf.storedInputData[29]<<8|rxbuf.storedInputData[30]))
{
for(i=0;i<31;i++)
{
sysex.storedInputData[i] = rxbuf.storedInputData[i]; //data swap
}
}
parsingSysex = false;
sysexBytesRead = 0;
}
}
else if(inputData == START_SYSEX2)
{
if(parsingSysex == 0x01)
{
parsingSysex |= 0x80;//successful
sysexBytesRead = 0;
inputData=0;
}
else
{
parsingSysex = 0;//failed
sysexBytesRead = 0;
inputData=0;
}
}
else if(inputData == START_SYSEX1)
{
parsingSysex |= 0x01;
inputData=0;
}
}
}
/**
* \par Function
* smartServoEventHandle
* \par Description
* This function is used to process protocol messages of smart servo.
* \param[in]
* None
* \par Output
* None
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::returnlen(void)//返回有效数据长度
{
//return sysex.val.len;
return (uint16_t)sysex.storedInputData[1]<<8|sysex.storedInputData[2];
}
/**
* \par Function
* smartServoEventHandle
* \par Description
* This function is used to process protocol messages of smart servo.
* \param[in]
* None
* \par Output
* None
* \return
* None
* \par Others
* None
*/
uint16_t MePm25Sensor::returnchecksum(void)//返回校验
{ //return sysex.val.checksum;
return (uint16_t)sysex.storedInputData[29]<<8|sysex.storedInputData[30];
}