Skip to content

Commit

Permalink
Really fixed collector mix up.
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephEoff committed Oct 5, 2021
1 parent 95927dc commit e5e4d04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Rodriguez/Rodriguez.ino
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ void makeMeasurementsAndSendMessage(){
while (counter--){
VBias = VBias + analogRead(A0);
VBase = VBase + analogRead(A1);
VCollector = VCollector + analogRead(A2);
VCollectorBias = VCollectorBias + analogRead(A3);
VCollector = VCollector + analogRead(A3);
VCollectorBias = VCollectorBias + analogRead(A2);
}
Serial.println(String(VBias) + "\t" + String(VBase) + "\t" + String(VCollector) + "\t" + String(VCollectorBias));
}
2 changes: 1 addition & 1 deletion rodriguez.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if __name__ == "__main__":
QCoreApplication.setOrganizationName("JRE")
QCoreApplication.setApplicationName("Rodriguez")
QCoreApplication.setApplicationVersion('1.0.0')
QCoreApplication.setApplicationVersion('1.0.1')
import sys
app = QtWidgets.QApplication(sys.argv)
MainWindow = QtWidgets.QMainWindow()
Expand Down

0 comments on commit e5e4d04

Please sign in to comment.