From 28558dfb6d376669d3cee9b74fd2f942f0d15644 Mon Sep 17 00:00:00 2001 From: Leonhard Masche <67312077+leonhma@users.noreply.github.com> Date: Sat, 10 Jul 2021 14:22:47 +0200 Subject: [PATCH 1/5] polished issue tempates --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 1 - .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml | 8 +++----- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 20b4deb..8231a93 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -21,7 +21,6 @@ body: label: Any solutions? description: If you have an idea on how to fix this, please add it here. placeholder: Tell us what you think! - value: None - type: textarea id: additional attributes: diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml index b3b0ffc..507048f 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -1,7 +1,7 @@ name: Feature request description: Request a new feature -title: "[Bug]: " -labels: [bug] +title: "[FR]: " +labels: [new-feature] body: - type: textarea id: related @@ -9,7 +9,6 @@ body: label: Any related problems? description: Is your feature request related to a problem? Please describe. placeholder: Related problems.. - value: None - type: textarea id: request attributes: @@ -23,5 +22,4 @@ body: attributes: label: Additional context? description: If you want to add screenshots, code, etc., please do it here. - placeholder: Additional info - value: None \ No newline at end of file + placeholder: Additional info \ No newline at end of file From ac19952999a13f07082c9b614fb14b7c83369e47 Mon Sep 17 00:00:00 2001 From: Leonhard Masche <67312077+leonhma@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:14:10 +0200 Subject: [PATCH 2/5] added firmware.rst --- .../{gh-pages.yml => build-docs.yml} | 6 +- .../_static}/host_to_sensor_arduino.PNG | Bin docs/assembly_and_setup.rst | 5 +- docs/firmware.rst | 219 ++++++++++++++++++ docs/index.rst | 1 + firmware/README.md | 174 -------------- 6 files changed, 227 insertions(+), 178 deletions(-) rename .github/workflows/{gh-pages.yml => build-docs.yml} (91%) rename {firmware => docs/_static}/host_to_sensor_arduino.PNG (100%) create mode 100644 docs/firmware.rst delete mode 100644 firmware/README.md diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/build-docs.yml similarity index 91% rename from .github/workflows/gh-pages.yml rename to .github/workflows/build-docs.yml index 795966c..2f20ddd 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/build-docs.yml @@ -1,4 +1,4 @@ -name: documentation +name: build-docs on: release: @@ -6,7 +6,7 @@ on: jobs: update-gh-pages: - runs-on: ubuntu-latest + runs-on: ubuntu-18.04 steps: - uses: actions/checkout@v2 @@ -32,4 +32,4 @@ jobs: uses: JamesIves/github-pages-deploy-action@4.1.0 with: branch: gh-pages - folder: build/html + folder: build/html \ No newline at end of file diff --git a/firmware/host_to_sensor_arduino.PNG b/docs/_static/host_to_sensor_arduino.PNG similarity index 100% rename from firmware/host_to_sensor_arduino.PNG rename to docs/_static/host_to_sensor_arduino.PNG diff --git a/docs/assembly_and_setup.rst b/docs/assembly_and_setup.rst index fa45b56..4834a1c 100644 --- a/docs/assembly_and_setup.rst +++ b/docs/assembly_and_setup.rst @@ -15,7 +15,10 @@ Calibration - Finally, flash driver.ino with your values filled out - Hub should now output exact diameter values - Note: Analog output is currently not enabled in driver.ino (I2C and FAULT pin only) + Note: + Analog output is currently not enabled in driver.ino (I2C and FAULT pin only). + If you need analog output, you can use Infidel_release_ee.ino. + See :doc:`firmware` for more details. .. |Image| image:: https://img.youtube.com/vi/RYgdLPe_T0c/0.jpg :alt: Assembly and Setup Instructions on Youtube diff --git a/docs/firmware.rst b/docs/firmware.rst new file mode 100644 index 0000000..e0d2368 --- /dev/null +++ b/docs/firmware.rst @@ -0,0 +1,219 @@ +Firmware +======== + +.. raw:: html + +

+ + + Originally created by Thomas Sanladerer + +.. raw:: html + +

+ +Files +----- + ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| File | Note | ++============================+===================================================================================================================================================================================================================+ +| calibration.ino | First test firmware by Thomas Sanladerer, it sends the ADC raw value over I2C, insert some drills of known diameters into the sensor and note the ADC value, then put the values into driver.ino and re compile | ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| driver.ino | Code for the sensor, it uses a hardcoded table to convert the ADC to Diameter, and sends 2 bytes over I2C -- no analog out | ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| host-example.ino | Reads the 2 bytes of diameter over I2C, and displays it over the UART, used to test the sensor | ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| Host\_ee\_prog.ino | Code for the Host Arduino, uses bidirectional communication with the sensor and has a simple UART Console to do the calibration and sensor testing | ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ +| Infidel\_release\_ee.ino | Firmware for the sensor, table in EEPROM, sets values over I2C | ++----------------------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+ + +Setup and Programming +--------------------- + +Requirements +~~~~~~~~~~~~ + +- Arduino > V1.8.8 +- TinyWireS LIbary from https://github.com/nadavmatalon/TinyWireS +- ATtiny85 Board for Arduino from https://github.com/damellis/attiny +- ISP Programmer like Arduino over ISP --> + https://www.arduino.cc/en/Tutorial/BuiltInExamples/ArduinoISP + +Load the code, wire the ISP program to the ISP port on the sensor and +program it. + +Remember to set the processor to Attiny85. + +Tools --> Processor: Attiny85 + +Tools --> Clock: Internal 1 MHz + +Tools --> Burn bootloader to set the fuses + +Sketch --> Upload with Programmer + +After programming, the LED should flash two times. + +Wiring to the Host Board +------------------------ + +.. figure:: _static/host_to_sensor_arduino.PNG + :alt: Wire Diagram + +Connect the the sensor to the host board, such as an Arduino Uno or +Mega. + +Program the Host with Host\_ee\_prog.ino and start the console with +19200 baudrate. + +Console +------- + +On start, the following is shown: + +.. code:: sh + + Infidel Sensor Programmer + Scanning... + I2C device found at address 43 + + Version: 3.12 + Table [ADC] [DIA in um]: + 00: 0000 / 3000 + 01: 0619 / 2090 + 02: 0702 / 1700 + 03: 0817 / 1400 + 04: 1000 / 1000 + 05: 1023 / 0000 + Table [DAC min Uout in uV] [DAC max Uout in uV]: + 09: 1344 / 2017 + Command Input 0 - val / 1 - RAW val / 2 - Version / 3 - Table / 4 - Set Tabel Val / 5 - Ongoing raw read / 6 - sample Mean ADC Val + Command Input 7 - DAC 0 PWW / 8 - DAC 255 PWM + ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| Commands | Note | Output | ++============+=====================================================================================================+=================================================================+ +| 0 | Read the Diameter value | Diameter [mm]: 2.242 | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 1 | Read the Diameter + raw ADC Value | Diameter [mm] / [ADC]: 2.242 / RAW: 515 | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 2 | Read the Version | Version: 1.11 | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 3 | Read the Diameter Table | Table [idx] [ADC] [DIA in um] | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 4 | Set the Value in the Table | Input values for Table [IDX],[ADC],[DIA um] like (1,619,2090) | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 5 | Ongoing reading the ADC raw Value, stop when the command 5 is sent one more time | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 6 | Read Meanvalue from Sensor (100 Samples), Display Min / Max / Mean / cnt, used it for Calibration | ADC Mean: 704 / Min: 688 / Max: 713 / Cnt: 100 | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 7 | Set DAC to PWM 0 --> for check Output Voltage at LOW | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| 8 | Set DAC to PWM 255 --> for check Output Voltage at HIGH | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ +| h | Show the command list | ++------------+-----------------------------------------------------------------------------------------------------+-----------------------------------------------------------------+ + +Calibration +----------- + +Start with the bigger shaft of known diameter (e.g., 2 mm), insert it +into the sensor and read the raw ADC value with command "6". Command "6" +determines the mean value over 100 measurements and removes the outliers + +.. code:: sh + + ADC Mean: 704 / Min: 688 / Max: 713 / Cnt: 100 + +Note the ADC value and use the command "4". The console should show: + +.. code:: sh + + Input values for Table [IDX],[ADC],[DIA um] like (1,619,2090) + Input: + +Input this string: ``1,503,2000`` Means, Table Index 1 (Command "3"), +ADC Val 503, Diameter 3 + +Repeat this for the next two Ddiameter (1,7mm, 1,4 mm) and write the +values to the sensor. + +At the end check the settings with Command "3". + +.. code:: sh + + Table [ADC] [DIA in um]: + 00: 0001 / 2999 + 01: 0617 / 2092 + 02: 0722 / 1711 + 03: 0816 / 1401 + 04: 0999 / 1001 + 05: 1022 / 0001 + +The values are stored in the EEPROM and will load from the EEPROM at the +next power up. + +If you program the sensor with a new firmware over the ISP the EEPROM +will be erased and the sensor will start with default settings. + +Calibration with Button (Standalone) +------------------------------------ + +Press the Button at Powerup for 3 sec, if the Calibrationmode start the +LED flashes 10 times The sensor sends an analog signal to Pin 5 [OUT]. + +- Step 1, Led Flash 1 Times + + - Insert Drill with 1,4mm + - Wait a short Time, 1-2 sec + - Press the Button for 1 sec + - The Led light for 2 sec, the Sensor is getting 100 Samples from + the ADC + - If the messure is Ok the Led flash fast + - Remove the drill an press the Button + +- Step 2 Led flashes 2 Times (1,7mm Drill) + + - Insert the Drill 1,7mm and repeat Step 1 + +- Step 3, Led flash 3 times (2mm Drill) + + - Insert the Drill with 2mm and repeat Step 1 + +The Calibration is done + +Analog Output +------------- + +The sensor sends an analog signal to Pin 5 [OUT]. + +The range goes from 1.42 VDC to 2.14 VDC . The voltage is the analog for +the diameter: 1.73V is equal to 1.73mm diameter. + +Calibrate the Analog Output +--------------------------- + +Connect a Multimeter to GND and OUT. The Analog Output depend on the VCC +Voltage, so make the Calibration when the Sensor is connected to the +Printerboard and not to the unstable USB Port. + +- Set with the command "7" the PWM to LOW, meassure the Voltage on + Analog OUT and note it (like 1,344 V) +- Set with the command "8" the PWM to HIGH, meassure the Voltage on + Analog OUT and note it (like 2,017 V) + +Set with the command "4" the table Value for Index 9 (Calibration Values +for DAC) IDX 9 then LOW Voltage and the HIGH Voltage --> like: +9,1344,2017 + +Check the table with command "3". The Values are stored in the EEPROM +for the next Start + +Fault Pin +--------- + +The fault pin is high when the diameter is bigger than 3mm and smaller +than 1.5mm. This indicates that the sensor is outside of the normal +working range. diff --git a/docs/index.rst b/docs/index.rst index 01a89d2..56f0838 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -22,3 +22,4 @@ Based on this proof-of-concept: https://www.youmagine.com/designs/filament-diame license bom assembly_and_setup + firmware diff --git a/firmware/README.md b/firmware/README.md deleted file mode 100644 index dbf05f8..0000000 --- a/firmware/README.md +++ /dev/null @@ -1,174 +0,0 @@ -# Inline Filament Diameter Estimator, Lowcost (InFiDEL) - Firmware - -

- - CC0 - - Originally created by Thomas Sanladerer -

- -## Files -| File | Note | -| ------ | ------ | -| calibration.ino | First test firmware by Thomas Sanladerer, it sends the ADC raw value over I2C, insert some drills of known diameters into the sensor and note the ADC value, then put the values into driver.ino and re compile | -| driver.ino | Code for the sensor, it uses a hardcoded table to convert the ADC to Diameter, and sends 2 bytes over I2C -- no analog out | -| host-example.ino | Reads the 2 bytes of diameter over I2C, and displays it over the UART, used to test the sensor | -| Host_ee_prog.ino | Code for the Host Arduino, uses bidirectional communication with the sensor and has a simple UART Console to do the calibration and sensor testing | -| Infidel_release_ee.ino | Firmware for the sensor, table in EEPROM, sets values over I2C | - -## Setup and Programming - -### Requirements -- Arduino > V1.8.8 -- TinyWireS LIbary from https://github.com/nadavmatalon/TinyWireS -- ATtiny85 Board for Arduino from https://github.com/damellis/attiny -- ISP Programmer like Arduino over ISP --> https://www.arduino.cc/en/Tutorial/BuiltInExamples/ArduinoISP - -Load the code, wire the ISP program to the ISP port on the sensor and program it. - -Remember to set the processor to Attiny85. - -Tools --> Processor: Attiny85 - -Tools --> Clock: Internal 1 MHz - -Tools --> Burn bootloader to set the fuses - - -Sketch --> Upload with Programmer - -After programming, the LED should flash two times. - -## Wiring to the Host Board - -![Alt text](host_to_sensor_arduino.PNG?raw=true "Wire Diagram") - -Connect the the sensor to the host board, such as an Arduino Uno or Mega. - -Program the Host with Host_ee_prog.ino and start the console with 19200 baudrate. - -## Console - -On start, the following is shown: -```sh -Infidel Sensor Programmer -Scanning... -I2C device found at address 43 - -Version: 3.12 -Table [ADC] [DIA in um]: -00: 0000 / 3000 -01: 0619 / 2090 -02: 0702 / 1700 -03: 0817 / 1400 -04: 1000 / 1000 -05: 1023 / 0000 -Table [DAC min Uout in uV] [DAC max Uout in uV]: -09: 1344 / 2017 -Command Input 0 - val / 1 - RAW val / 2 - Version / 3 - Table / 4 - Set Tabel Val / 5 - Ongoing raw read / 6 - sample Mean ADC Val -Command Input 7 - DAC 0 PWW / 8 - DAC 255 PWM - -``` - -| Commands | Note | Output | -| ------ | ------ | ------ | -| 0 | Read the Diameter value | Diameter [mm]: 2.242 | -| 1 | Read the Diameter + raw ADC Value | Diameter [mm] / [ADC]: 2.242 / RAW: 515 | -| 2 | Read the Version | Version: 1.11 | -| 3 | Read the Diameter Table | Table [idx] [ADC] [DIA in um] | -| 4 | Set the Value in the Table | Input values for Table [IDX],[ADC],[DIA um] like (1,619,2090) | -| 5 | Ongoing reading the ADC raw Value, stop when the command 5 is sent one more time | -| 6 | Read Meanvalue from Sensor (100 Samples), Display Min / Max / Mean / cnt, used it for Calibration | ADC Mean: 704 / Min: 688 / Max: 713 / Cnt: 100 | -| 7 | Set DAC to PWM 0 --> for check Output Voltage at LOW | -| 8 | Set DAC to PWM 255 --> for check Output Voltage at HIGH | -| h | Show the command list | - -## Calibration - -Start with the bigger shaft of known diameter (e.g., 2 mm), insert it into the sensor and read the raw ADC value with command "6". -Command "6" determines the mean value over 100 measurements and removes the outliers - -```sh -ADC Mean: 704 / Min: 688 / Max: 713 / Cnt: 100 -``` -Note the ADC value and use the command "4". -The console should show: - -```sh -Input values for Table [IDX],[ADC],[DIA um] like (1,619,2090) -Input: -``` - -Input this string: `1,503,2000` -Means, Table Index 1 (Command "3"), ADC Val 503, Diameter 3 - -Repeat this for the next two Ddiameter (1,7mm, 1,4 mm) and write the values to the sensor. - -At the end check the settings with Command "3". - -```sh -Table [ADC] [DIA in um]: -00: 0001 / 2999 -01: 0617 / 2092 -02: 0722 / 1711 -03: 0816 / 1401 -04: 0999 / 1001 -05: 1022 / 0001 -``` - -The values are stored in the EEPROM and will load from the EEPROM at the next power up. - -If you program the sensor with a new firmware over the ISP the EEPROM will be erased and the sensor will start with default settings. - -## Calibration with Button (Standalone) - -Press the Button at Powerup for 3 sec, if the Calibrationmode start the LED flashes 10 times -The sensor sends an analog signal to Pin 5 [OUT]. - -* Step 1, Led Flash 1 Times - * Insert Drill with 1,4mm - * Wait a short Time, 1-2 sec - * Press the Button for 1 sec - * The Led light for 2 sec, the Sensor is getting 100 Samples from the ADC - * If the messure is Ok the Led flash fast - * Remove the drill an press the Button -* Step 2 Led flashes 2 Times (1,7mm Drill) - * Insert the Drill 1,7mm and repeat Step 1 -* Step 3, Led flash 3 times (2mm Drill) - * Insert the Drill with 2mm and repeat Step 1 - -The Calibration is done - -## Analog Output - -The sensor sends an analog signal to Pin 5 [OUT]. - -The range goes from 1.42 VDC to 2.14 VDC . -The voltage is the analog for the diameter: 1.73V is equal to 1.73mm diameter. - -## Calibrate the Analog Output - -Connect a Multimeter to GND and OUT. -The Analog Output depend on the VCC Voltage, so make the Calibration when the Sensor is connected to the Printerboard -and not to the unstable USB Port. - -* Set with the command "7" the PWM to LOW, meassure the Voltage on Analog OUT and note it (like 1,344 V) -* Set with the command "8" the PWM to HIGH, meassure the Voltage on Analog OUT and note it (like 2,017 V) - -Set with the command "4" the table Value for Index 9 (Calibration Values for DAC) -IDX 9 then LOW Voltage and the HIGH Voltage --> like: 9,1344,2017 - -Check the table with command "3". -The Values are stored in the EEPROM for the next Start - -## Fault Pin - -The fault pin is high when the diameter is bigger than 3mm and smaller than 1.5mm. -This indicates that the sensor is outside of the normal working range. - - - - - - From ca662702be636458684de24c75b63130e41547a3 Mon Sep 17 00:00:00 2001 From: leonhma <67312077+leonhma@users.noreply.github.com> Date: Sun, 11 Jul 2021 12:26:46 +0200 Subject: [PATCH 3/5] Delete build-docs.yml --- .github/workflows/build-docs.yml | 35 -------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 .github/workflows/build-docs.yml diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml deleted file mode 100644 index 2f20ddd..0000000 --- a/.github/workflows/build-docs.yml +++ /dev/null @@ -1,35 +0,0 @@ -name: build-docs - -on: - release: - types: [published] - -jobs: - update-gh-pages: - runs-on: ubuntu-18.04 - - steps: - - uses: actions/checkout@v2 - - - uses: actions/setup-python@v2 - with: - python-version: "3.x" - - - name: Install dependencies - run: | - THEME=$(grep -oP '(?<=html_theme = ").+?(?=")' docs/conf.py) - python3 -m pip install --upgrade pip - pip install sphinx $THEME - - name: Change conf.py version - run: | - sed -i -E 's|release = ".*?"|release = "${{ github.event.release.tag_name }}"|g' docs/conf.py - - name: Build using sphinx - run: | - sphinx-build -M html docs/ build/ - cd build/html - touch .nojekyll - - name: Deploy to gh-pages - uses: JamesIves/github-pages-deploy-action@4.1.0 - with: - branch: gh-pages - folder: build/html \ No newline at end of file From f8015da9fc0442c3d1f9d55af8c1d51921bcea73 Mon Sep 17 00:00:00 2001 From: Leonhard Masche <67312077+leonhma@users.noreply.github.com> Date: Sun, 11 Jul 2021 13:00:39 +0200 Subject: [PATCH 4/5] changed label from 'feature-req' to 'enhancement' --- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml index 507048f..03c06a1 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -1,7 +1,7 @@ name: Feature request description: Request a new feature title: "[FR]: " -labels: [new-feature] +labels: [enhancement] body: - type: textarea id: related From 85844e020affcb73a74748cf353f9d52a9c25d1b Mon Sep 17 00:00:00 2001 From: Leonhard Masche <67312077+leonhma@users.noreply.github.com> Date: Tue, 13 Jul 2021 16:30:56 +0200 Subject: [PATCH 5/5] punctuation changes --- .github/ISSUE_TEMPLATE/BUG-REPORT.yml | 4 ++-- .github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 8231a93..12f9f65 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -12,7 +12,7 @@ body: attributes: label: What happened? description: Also tell us, what did you expect to happen? - placeholder: Tell us what happened! + placeholder: Tell us what happened.. validations: required: true - type: textarea @@ -20,7 +20,7 @@ body: attributes: label: Any solutions? description: If you have an idea on how to fix this, please add it here. - placeholder: Tell us what you think! + placeholder: Tell us what you think.. - type: textarea id: additional attributes: diff --git a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml index 03c06a1..3d68474 100644 --- a/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml +++ b/.github/ISSUE_TEMPLATE/FEATURE-REQUEST.yml @@ -13,8 +13,8 @@ body: id: request attributes: label: What's your feature? - description: Describe the feature you want? - placeholder: Description of your solution! + description: Describe the feature you want! + placeholder: Description of your solution.. validations: required: true - type: textarea @@ -22,4 +22,4 @@ body: attributes: label: Additional context? description: If you want to add screenshots, code, etc., please do it here. - placeholder: Additional info \ No newline at end of file + placeholder: Additional info.. \ No newline at end of file