From b942191b08b40423ed30c6adf8a4c33c73810fcd Mon Sep 17 00:00:00 2001 From: Robin Vobruba Date: Mon, 6 Jan 2025 17:12:54 +0100 Subject: [PATCH] TOML template: Uses actual number syntax for numbers [fix] --- res/sample_data/okh-TEMPLATE.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/res/sample_data/okh-TEMPLATE.toml b/res/sample_data/okh-TEMPLATE.toml index d3aa1d9..ccc6951 100644 --- a/res/sample_data/okh-TEMPLATE.toml +++ b/res/sample_data/okh-TEMPLATE.toml @@ -64,9 +64,9 @@ mass= 50330.0 [outer-dimensions] # Any dimension value always has to be in [mm] (millimeters) -width = "400" -depth = "350" -height = "150" +width = 400 +depth = 350.8 +height = 150 [[part]] name = "your-awesome-part" @@ -80,9 +80,9 @@ export = [ mass = 330.0 [part.outer-dimensions] -width = "120" -depth = "100" -height = "3" +width = 120 +depth = 100 +height = 3.5 [[software]] release = "https://github.com/arduino/ArduinoCore-mbed/releases/tag/1.3.2"