Skip to content

Commit b8a6fa9

Browse files
committed
corrections/markdown conversion using zim
1 parent 75798d2 commit b8a6fa9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

user-guide/quick_user_guide.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ Perovskino is currently undergoing development; your patience is appreciated.
44
**Data logging**
55

66
1. Install Python 3.x (preferably from the Anaconda or Miniconda distribution <https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html> )
7-
2. Dependencies for data logging and plotting will be pyserial (pip install pyserial) and Pandas, Matplotlib and Scipy (last three dependencies installaed via conda install ...)
7+
2. Dependencies for data logging and plotting will be pyserial (pip install pyserial) and Pandas, Matplotlib and Scipy (last three dependencies installed via conda install ...)
88
3. Connect a solar cell in the Perovskino and plug it in one USB port of the computer.
99
4. Identify the assigned serial port for Perovskino (typically /dev/ttyUSB0 on Linux and COM3 in Windows, see Tips section below) .
10-
5. Using the Anaconda Prompt or plain terminal in linux run: ``python capture-data-mpp-temperature.py`` in the ~/codes/02_MPP-algorithms/capture_and_grapher folder. The serial data is simultaneoulsy displayed on the terminal window and stored in the dataraw folder as CSV files named date-time_hour.csv.
10+
5. Using the Anaconda Prompt or plain terminal in linux run: ``python capture-data-mpp-temperature.py`` in the ~/codes/02_MPP-algorithms/capture_and_grapher folder. The serial data is simultaneously displayed on the terminal window and stored in the dataraw folder as CSV files named date-time_hour.csv.
1111
6. Utilize your preferred program or the grapherX.py scripts to plot the the CSV files stored in the dataraw folder (it is the default folder, change this folder modifying the corresponding line in the grapherX.py scripts)
1212

1313

@@ -20,10 +20,10 @@ Once we have obtained and stored data in the CSV files named date-time.csv we ha
2020

2121
**Tips:**
2222

23-
1. Easily determine the serial address assigned to the Arduino on the computer by installing the Arduino IDE ( <https://www.arduino.cc/en/software>) ) and checking the tools/port menu. Later, this IDE is used for reprogramming the microcontroller to upload modified SOP or PO .ino sketches. Once the serial port is known, modify the line number 8 in the file ~/codes/02_MPP-algorithms/capture_and_grapher/capture-datos-mpp-temperature.py accordingly if neccesary.
23+
1. Easily determine the serial address assigned to the Arduino on the computer by installing the Arduino IDE ( <https://www.arduino.cc/en/software>) and checking the tools/port menu. Later, this IDE is used for reprogramming the micro-controller to upload modified SOP or PO .ino sketches. Once the serial port is known, modify the line number 8 in the file ~/codes/02_MPP-algorithms/capture_and_grapher/capture-datos-mpp-temperature.py accordingly if necessary.
2424
2. Stop capturing data using control + C
2525
3. If we have a problem graphing with grapher4_alive.py related with “Lato font” open the grapher4_alive.py in notebook and comment the corresponding line #plt.reParams[“font.family”]=”Lato”
26-
4. If there’s any package or library not included in the Anaconda an error message will show up. Install them using pip or conda as requeried.
26+
4. If there’s any package or library not included in the Anaconda an error message will show up. Install them using pip or conda as required.
2727
5. Data logging is obtained without device area normalization. Modify the variable square centimeters 'area' in the grapherX.py scripts for area normalization.
2828

2929

user-guide/quick_user_guide.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Perovskino is currently undergoing development; your patience is appreciated.
88

99
**Data logging**
1010
1. Install Python 3.x (preferably from the Anaconda or Miniconda distribution https://docs.conda.io/projects/miniconda/en/latest/miniconda-install.html )
11-
2. Dependencies for data logging and plotting will be pyserial (pip install pyserial) and Pandas, Matplotlib and Scipy (last three dependencies installaed via conda install ...)
11+
2. Dependencies for data logging and plotting will be pyserial (pip install pyserial) and Pandas, Matplotlib and Scipy (last three dependencies installed via conda install ...)
1212
3. Connect a solar cell in the Perovskino and plug it in one USB port of the computer.
1313
4. Identify the assigned serial port for Perovskino (typically /dev/ttyUSB0 on Linux and COM3 in Windows, see Tips section below) .
14-
5. Using the Anaconda Prompt or plain terminal in linux run: ''python capture-data-mpp-temperature.py'' in the ~/codes/02_MPP-algorithms/capture_and_grapher folder. The serial data is simultaneoulsy displayed on the terminal window and stored in the dataraw folder as CSV files named date-time_hour.csv.
14+
5. Using the Anaconda Prompt or plain terminal in linux run: ''python capture-data-mpp-temperature.py'' in the ~/codes/02_MPP-algorithms/capture_and_grapher folder. The serial data is simultaneously displayed on the terminal window and stored in the dataraw folder as CSV files named date-time_hour.csv.
1515
6. Utilize your preferred program or the grapherX.py scripts to plot the the CSV files stored in the dataraw folder (it is the default folder, change this folder modifying the corresponding line in the grapherX.py scripts)
1616

1717
**Data plotting**
@@ -20,8 +20,8 @@ Once we have obtained and stored data in the CSV files named date-time.csv we ha
2020
2. If we want to plot the data while they are being obtained, open another anaconda terminal and execute ''python grapher4_alive.py''
2121

2222
**Tips:**
23-
1. Easily determine the serial address assigned to the Arduino on the computer by installing the Arduino IDE ( https://www.arduino.cc/en/software) ) and checking the tools/port menu. Later, this IDE is used for reprogramming the microcontroller to upload modified SOP or PO .ino sketches. Once the serial port is known, modify the line number 8 in the file ~/codes/02_MPP-algorithms/capture_and_grapher/capture-datos-mpp-temperature.py accordingly if neccesary.
23+
1. Easily determine the serial address assigned to the Arduino on the computer by installing the Arduino IDE ( https://www.arduino.cc/en/software) and checking the tools/port menu. Later, this IDE is used for reprogramming the micro-controller to upload modified SOP or PO .ino sketches. Once the serial port is known, modify the line number 8 in the file ~/codes/02_MPP-algorithms/capture_and_grapher/capture-datos-mpp-temperature.py accordingly if necessary.
2424
2. Stop capturing data using control + C
2525
3. If we have a problem graphing with grapher4_alive.py related with “Lato font” open the grapher4_alive.py in notebook and comment the corresponding line #plt.reParams[“font.family”]=”Lato”
26-
4. If there’s any package or library not included in the Anaconda an error message will show up. Install them using pip or conda as requeried.
26+
4. If there’s any package or library not included in the Anaconda an error message will show up. Install them using pip or conda as required.
2727
5. Data logging is obtained without device area normalization. Modify the variable square centimeters 'area' in the grapherX.py scripts for area normalization.

0 commit comments

Comments
 (0)