Articles Comments

{ Berbagi, Menulis, Dan Mengajar } Ilmu… » Raspberry

cara upgrade Kodi di Raspberry

Raspberry Pi Assembling your own Raspberry Pi computer can be a highly educational process. If you already know how to install Kodi on Raspberry Pi, you know that you can use LibreELEC. To install Kodi 18 Leia, you actually need to update your LibreELEC installation – and the final 9.0 supports the latest Kodi installation. Open Settings > LibreELEC/OpenELEC; Navigate to ‘System’, which is where you’ll see the ‘Updates’ section; Select ‘Update Channel’ and choose the ‘Main Version’; Next, select ‘Available Versions’ and choose the latest available version; Confirm your decision, and LibreELEC will update on its own. In case of any problems, or if you want to start with Kodi from scratch, here’s how to install Kodi on Raspberry Pi. … Read entire article »

Filed under: Raspberry

Konfigurasi nginx dan php5.6 fpm untuk raspberry {Milik Resto Andayani Pamekasan}

nginx.conf php5.conf etc … Read entire article »

Filed under: Raspberry

Install php5.6 FPM di Linux Raspberry

Filed under: 7. Operating System, Raspberry

Toko Penjual Raspberry Surabaya

Digiware RMI https://digiwarestore.com  — Isee Robot https://iseerobot.com/ —- Akhishop Keputih Surabaya https://www.tokopedia.com/akhishop … Read entire article »

Filed under: Raspberry

Cara Menghilangkan Cursor Mouse di Raspberry

1. Install Unclutter Log in to your Raspberry Pi via SSH – or open terminal directly on the Pi. Then install Unclutter, like this: sudo apt-get install unclutter 2. Edit LXDE Autostart Script Next we need to edit the LXDE Autostart script – for us this means running: nano ~/.config/lxsession/LXDE-pi/autostart 3. Turn the Cursor Off Finally you need to add this line to the autostart script: @unclutter -idle 0 Press ctrl+X and then hit Y to save your changes. 4. Reboot Finally, reboot your Pi using: sudo reboot … Read entire article »

Filed under: Raspberry

Wiring Pi .. Read Sensor Raspberry

import wiringpi as wpi from time import sleep PIR_SENSOR = 1 LED_MODULE = 21 wpi.wiringPiSetup() wpi.pinMode(PIR_SENSOR, wpi.INPUT) wpi.pinMode(LED_MODULE, wpi.OUTPUT) try: while True: if wpi.digitalRead(PIR_SENSOR) == wpi.HIGH: print(“Moving Object Detected”) sleep(0.5) wpi.digitalWrite(LED_MODULE, wpi.HIGH) else: print(“No Object Detected”) sleep(0.5) wpi.digitalWrite(LED_MODULE, wpi.LOW) except KeyboardInterrupt: wpi.pinMode(LED_MODULE, wpi.OUTPUT) wpi.digitalWrite(LED_MODULE, wpi.LOW) print(“exit”) … Read entire article »

Filed under: Raspberry

Auto Start On Raspberry GUI

Masukkan Kesini ~/.config/lxsession/LXDE-pi/autostart —- @pcmanfm –desktop –profile LXDE-pi @xscreensaver -no-splash @point-rpi @python3 /home/pi/Projects/Pasuruan.py  –> Script tambahan … Read entire article »

Filed under: 7. Operating System, Raspberry

Konfigurasi Network Raspberry tanpa Password SSID, wlan0

Setingan /etc/network/interfaces ——————– auto eth0 iface eth0 inet static # address 192.168.2.100 address 192.168.1.150 netmask 255.255.255.0 #network 192.168.2.0 # gateway 192.168.1.1 #gateway 192.168.2.1 dns-nameservers 8.8.8.8 8.8.4.4 auto wlan0 iface wlan0 inet dhcp wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf ££——————- ## Setingan untuk wpa_supplicant.conf ## network={ ssid=”Iphone X_Ganti SSID yang Susuai” key_mgmt=NONE }   … Read entire article »

Filed under: Raspberry

Installer USB, Linux to USB, Android, Raspberry

Gunakan : Sediakan Software : Rufus or Unet Boot In Untuk Partisi Gunakan : Mini Tools Partition … Read entire article »

Filed under: Raspberry