Wiki update #893
Replies: 4 comments 2 replies
-
Thanks for this! Sorry for the delay on responding. I'm hoping to get to this next week. |
Beta Was this translation helpful? Give feedback.
-
No problem. If you want me to do something, let me know. |
Beta Was this translation helpful? Give feedback.
-
Sorry again for the delay!
We could, but it's a little ugly to make sure we're doing it idempotently. If we run the same command 10 times, it shouldn't just add the same line, but it's a bit more complicated to implement it to prevent that.
The user can't set the ustreamer_capture_device: tc358743 It didn't take effect before because the documentation had quotes around
The two variables are independent. Both only have meaning locally within the script/example.
Ah, you're right. That should have been a first step in the advanced installation instructions. I've added that to the examples.
Github doesn't have tools for letting us review wiki changes effectively, so it's basically just that anyone's allowed to edit, and everyone does their best to keep it accurate and clear.
We unfortunately don't have resources to support multi-language documentation or UI, but if you publish a Spanish-language tutorial, I'll link to it. |
Beta Was this translation helpful? Give feedback.
-
There are definitely tools that we could use to support translation. That part is not too hard. The hard part is rearchitecting our app so that all UI strings go through a translation layer. Like this error message: this.dispatchEvent(
new DialogFailedEvent({
title: "Failed to Load Video JPEG Quality",
details: error,
})
); I think would have to become: this.dispatchEvent(
new DialogFailedEvent({
title: {{ "Failed to Load Video JPEG Quality" | translate }},
details: error,
})
); So that's no longer valid JS because Flask would have to pre-render it. We'd have to use different formatters and linters. And then if we change UI strings, we need to find volunteers to re-translate, and then we're in a bad position if a page is just partially translated. So it's unfortunately a big cost to the dev workflow, and it's hard for us to accommodate that with the size of TinyPilot's dev team. |
Beta Was this translation helpful? Give feedback.
-
Hey guys!
Awesome work done on the project 🥳 . I just finished setting up my first device with tinypilot and looks promising 😃 .
I wanted to contribute with some minor issues I found on the documentation. Before I list them down let me first tell you about my setup.
SBC: Raspberry Pi Zero W
HDMI capture: C779 CSI-HDMI bridge module
Steps I followed:
README.md
(everything went smooth) you can see the output if needed on the installation_001.log file.settings.yml
with the needed attributes/variables for the rpi 0 (It failed) the output is in the installation_002.log file.settings.yml
with theustreamer_use_dv_timings: true
attribute/variable as I saw it on the issue #93 ending with asetting.yaml
file like this:Now to the files I visited that IMHO, have missing or wrong information:
settings.yml
via command line as in other pages.USE_TC358743_DEFAULTS
variable seen in the quick-install script. (I know it's being set by reading thesettings.yaml
file but for some reason on the 3rd tried it work setting that variable before executing the script (Even with the script setting it up as empty on that line).TINYPILOT_SETTINGS
variable which seems not correct as per the quick-install looks for aTINYPILOT_SETTINGS_FILE
sudo useradd --create-home --system --user-group tinypilot
settings.yml
fileP.D:
Beta Was this translation helpful? Give feedback.
All reactions