-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArduinoPID.asv
136 lines (107 loc) · 4.99 KB
/
ArduinoPID.asv
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
classdef ArduinoPID
properties
arduino;
sensorPin = 'A1';
%Hysterisis thresholds for when the button is being clicked /
%released
hysON = 235;
hysOFF = 100;
bnDown = false; %Is the button down or not
% Button LED pins
LED1 = "A2";
LED2 = "A3";
end
% HOW TO ARDUINO IN MATLAB
% https://se.mathworks.com/help/supportpkg/arduinoio/getting-started-with-matlab-support-package-for-arduino-hardware.html
%
%
% Or use the source code: run once -> right click arduino the the
% properties list -> click 'Open 'arduino'
%Error: MATLAB connection to Arduino Uno at COM_ exists in your workspace. To create a new connection, clear the existing
% object.
% Find 'a' in the variable list (Workspace - should be on the right
% side) -> right click -> delete.
methods
function obj = ArduinoPID()
try
obj.arduino = arduino('COM4', 'uno'); %CHANGE COM NUMBER! You can find it in the device manager
disp('Arduino connected');
%Setup pins
obj.arduino.configurePin(obj.sensorPin, 'AnalogInput');
obj.arduino.configurePin(obj.LED1, 'AnalogOutput');
obj.arduino.configurePin(obj.LED2, 'AnalogOutput');
catch
disp('Arduino NOT connected');
end
end
function obj = loop(obj)
%use this one as Arduino's loop. (It is just being called in the
%while loop in the Main.m)
%Read Sensor
SensorVal = obj.arduino.readVoltage("A1") * (1024 / 5); %Read and convert it into a scale from 0 - 1024
%disp(SensorVal)
%Hysterisis on the sensor value
if (SensorVal >= obj.hysON && obj.bnDown == false)
obj.bnDown = true;
obj.ClearAll();
elseif (SensorVal <= obj.hysOFF && obj.bnDown == true)
obj.bnDown = false;
writeDigitalPin(obj.arduino, 'A2', 0);
writeDigitalPin(obj.arduino, 'A3', 0);
disp("RELEASED")
end
%Read knob value and adjust volume
end
% PLEASE keep the functionality inside methods
function ClearAll(obj)
global Interactables
disp("CLICKED")
writeDigitalPin(obj.arduino, 'A2', 1);
writeDigitalPin(obj.arduino, 'A3', 1);
index = 1;
while index <= length(Interactables)
length(Interactables)
if isa(Interactables{index}, 'Node')
if ~isa(Interactables{index}, 'InputNode') && ~isa(Interactables{index}, 'OutputNode')
if Interactables{index}.settingsOpened == false
Interactables{index}.openSettings();
Interactables{index}.pressDelete();
else
Interactables{index}.pressDelete();
end
length(Interactables)
index = 1; %Re
end
end
index = index + 1;
end
% writeDigitalPin(a, 'A3', 1);
% for j = 1:length(Interactables)
% if isa(Interactables{j}, 'FlangerNode') || isa(Interactables{j}, 'LowpassNode') || isa(Interactables{j}, 'DelayNode') || isa(Interactables{j}, 'ReverbNode') || isa(Interactables{j}, 'SpectrumNode') %Only want to check through nodes, since only nodes have delete buttons in them
% if ishandle(Interactables{j}.anno) %Check if the annotion for the delete button exists
% if Interactables{j}.settingsOpened == false
% Interactables{j}.openSettings();
% end
% try
% Interactables{j}.pressDelete();
% catch
% end
% break;
% end
% end
% end
end
function AdjustVolume(obj)
global output;
analogKnob = readVoltage(a,'A5');
output.volume = analogKnob - 4;
end
% Methods used for the example -- Can be deleted.
function turnOnLED(obj)
obj.arduino.writeDigitalPin(obj.ledPin, 1);
end
function turnOffLED(obj)
obj.arduino.writeDigitalPin(obj.ledPin, 0);
end
end
end