-
Notifications
You must be signed in to change notification settings - Fork 322
/
NexGpio.cpp
executable file
·105 lines (88 loc) · 2.18 KB
/
NexGpio.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
/**
* @file NexGpio.cpp
*
* The implementation of class NexGpio.
*
* @author Wu Pengfei (email:<pengfei.wu@itead.cc>)
* @date 2015/8/13
* @copyright
* Copyright (C) 2014-2015 ITEAD Intelligent Systems Co., Ltd. \n
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*/
#include "NexGpio.h"
bool NexGpio::pin_mode(uint32_t port,uint32_t mode,uint32_t control_id)
{
char buf;
String cmd;
cmd += "cfgpio ";
buf = port + '0';
cmd += buf;
cmd += ',';
buf = mode + '0';
cmd += buf;
cmd += ',';
buf = control_id = '0';
cmd += buf;
sendCommand(cmd.c_str());
return recvRetCommandFinished();
}
bool NexGpio::digital_write(uint32_t port,uint32_t value)
{
String cmd;
char buf;
cmd += "pio";
buf = port + '0';
cmd += buf;
cmd += '=';
buf = value + '0';
cmd += buf;
sendCommand(cmd.c_str());
return recvRetCommandFinished();
}
uint32_t NexGpio::digital_read(uint32_t port)
{
uint32_t number;
char buf;
String cmd = String("get ");
cmd += "pio";
buf = port + '0';
cmd += buf;
sendCommand(cmd.c_str());
recvRetNumber(&number);
return number;
}
bool NexGpio::analog_write(uint32_t port,uint32_t value)
{
char buf[10] = {0};
char c;
String cmd;
utoa(value, buf, 10);
cmd += "pwm";
c = port + '0';
cmd += c;
cmd += '=';
cmd += buf;
Serial.print(cmd);
sendCommand(cmd.c_str());
return recvRetCommandFinished();
}
bool NexGpio::set_pwmfreq(uint32_t value)
{
char buf[10] = {0};
String cmd;
utoa(value, buf, 10);
cmd += "pwmf";
cmd += '=';
cmd += buf;
sendCommand(cmd.c_str());
return recvRetCommandFinished();
}
uint32_t NexGpio::get_pwmfreq(uint32_t *number)
{
String cmd = String("get pwmf");
sendCommand(cmd.c_str());
return recvRetNumber(number);
}