-
Nikkor ED 50-300mm F4.5 Ais
Bahasa Indonesia: Lensa ini di produksi oleh nikon di era Tahun 1980 an, yang sangat menarik untuk saya pribadi adalah besar bukaan rana lensa 4.5 untuk semua Zona Zoom, ini memudahkan penggunaan LIghtmeter untuk pengukuran pencahayaan pada kamera Analog dalam pemotretan. Untuk anda yang tertarik untuk mendapatkan spesifikasi lebih lanjut dari Lensa ini silahkan baca di referensi berikut: Lensa ini saya gunakan untuk pemotretan digital dan analog. Dibawah ini adalah berapa hasil foto secara digital dengan Lensa ini, menggunakan stativ(monopod). Hasil gambar tidak diedit, hanya dikompresi menjadi 2 MP, untuk memudahkan penampilan di internet. Auf Deutsch: Das Objektiv wurde von Nikon in den 1980er‑Jahren produziert. Besonders interessant für mich persönlich…
-
Nikon D500 Remote Control solution from AI prompt
Local LLM Ollama, Deepseek.r1:70b, OpenWebUI Untuk membuat remote control untuk kamera Nikon D500 menggunakan gphoto2 pada Raspberry Pi Zero dan mengaksesnya melalui REST API dengan FastAPI, Anda perlu melakukan beberapa langkah. Berikut adalah panduan lengkah demi langkah: Prerequisites Sebelum memulai, pastikan Anda memiliki: Langkah-langkah 1. Installasi gphoto2 Pastikan gphoto2 sudah terinstall dan dapat mendeteksi kamera Nikon D500: Setelah instalasi, coba perintah berikut untuk memastikan kamera terdeteksi: Anda seharusnya melihat informasi tentang kamera Nikon D500. 2. Installasi FastAPI dan Uvicorn Install fastapi dan uvicorn untuk membuat REST API: 3. Buat File Konfigurasi gphoto2 (Opsional) Jika diperlukan, Anda bisa membuat file konfigurasi sederhana untuk mengatur parameter kamera. 4. Buat Aplikasi FastAPI untuk…
-
Barierfreier(accessibility) Test Mit Robotframework aus AI Prompt
Frage: Local LLM (Olama, deepseek-r1:70b, Open-WebUI ) Antwort: Natürlich, hier ist eine Anleitung, wie Sie barrierefreie Tests mit Robot Framework und der Browser Library für Webanwendungen automatisieren können. Außerdem stelle ich ein Beispiel-Testroboter bereit und erkläre die Voraussetzungen, um den Test auf Raspbian OS mit einem Raspberry Pi 4 durchzuführen. Voraussetzungen für die Ausführung auf Raspbian OS mit Raspberry Pi 4 Bevor Sie beginnen, müssen Sie folgende Voraussetzungen erfüllen: Raspbian OS : Stellen Sie sicher, dass das neueste Raspbian-Betriebssystem auf Ihrem Raspberry Pi 4 installiert ist. Python : Installieren Sie Python 3 auf Ihrem System. Robot Framework : Installieren Sie Robot Framework mithilfe von pip: Browser Library : Installieren Sie…
-
Multiple Versions of Python on your Raspberry Pi
Mengapa anda harus mempunyai konsep dalam penggunaan Python pada linux OS atau MAC OS? Setiap versi Linux OS dan MAC OS, dibuat dengan versi linux tertentu. Seandainya anda menggunakan OS ini adalah penting sekali bagi anda untuk memisahkan Python Versi OS System anda, dengan Python yang anda butuhkan untuk tujuan Projekt atau Program anda. Hal yang paling mudah untuk menerapkan hal ini adalah dengan menggunakan pyenv & pipenv Installiert pyenv: Tambahkan Pyenv di .bashrc: Agar supaya perubahan itu aktiv anda harus aktivasi di Bash shell dengan : Instaliert System Paket: Konfigurasi pyenv: Installasi pipx: sudo apt install pipx Installiert pipenv di dalam pyenv dengan python versi tertentu (Python 3.11.14) pyenv…
-
Build wxPython On Raspberry Pi Bookworm
set pyenv to your python version: switch to your project directory: First update these following Package for you PI: create virtualenv with pipenv: Start Build wxPython in your PI: start build process in wxPython-4.2.1 folder: Created .whl file is in ~/wxPython-4.2.2/dist/ Ref:
-
Imitating WinScp with robotframework for uploading File
Secara Tehnis sebenarnya sangat mudah untuk meniru mimik WinScp untuk File Upload dengan Robotframework. Tehnik yang wajib anda kuasai adalah mengerti secara tehnik fungsi: Komando Window Batch Net use lalu menggunakan Keyword Copy untuk upload File Dengan menggunakan Robot Library: Operating System Contoh Keyword simulasi Upload dengan Mimik Winscp: *** Keywords *** Connect Remote Path dengan Winsp | ${map_remote_path} | Join Command Line | net use | \/persistent\:no | ${remote_path} | | ${map_remote_status} | Run Process | ${map_remote_path} | shell=True | | log many | ${map_remote_status.stdout} | ${map_remote_status.stderr} | | Should Be Empty | ${map_remote_status.stderr} | Disconnect Remote Path dengan Winsp | ${demap_remote_path} | Join Command Line | net |…
-
File download with Robotframework Request Library
precondition: pip install robotframework-requests robot code: Download SW with https | [Documentation] | used http to download SW from : – uri: ${download URI} | | ${download_folder} | catenate | SEPARATOR=\\ | %{SYSTEMDRIVE} | %{HOMEPATH} | Downloads |
-
Install Maria DB on Pi
nstall MariaDB: sudo apt install mariadb-server php-mysql -y sudo service apache2 restart sudo mysql_secure_installation Set root password? -> Y Remove anonymous users? -> Y Disallow root login remotely? -> N Remove test database and access to it? -> N Reload privilege tables now? -> Y
-
Install PHP on Pi
Install PHP: sudo apt-get install php sudo service apache2 restart check Installation with your web-browser http://localhost/phpinfo.php http:///phpinfo.php
-
Install Apache Web Server on Pi
Install Apache: sudo apt-get install apache2 -y sudo service apache2 restart Check installation with your web-browser http://localhost/ http://your raspi IP