Size: 215
Comment:
|
Size: 1529
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 2: | Line 2: |
* https://en.wikipedia.org/wiki/Raspberry_Pi | |
Line 4: | Line 5: |
* https://elinux.org/RPi_GPIO_Code_Samples#sysfs == BCM2835 == * Timers * Interrupt controller * GPIO * USB * PCM / I2S * DMA controller * I2C master * I2C / SPI slave * SPI0, SPI1, SPI2 * PWM * UART0, UART1 == Install and configure screensaver and lock screen == * sudo apt-get install xscreensaver * Preferences, Screen saver * Auto lock after 2 minutes * Create new menu item (Preferences, Main menu editor) * Menu item name Lock * Command: xscreensaver-comand -lock * Icon: /usr/share/lxpanel/images/ns-lock.png == Info == {{{ $ lsb_release -a No LSB modules are available. Distributor ID: Raspbian Description: Raspbian GNU/Linux 9.4 (stretch) Release: 9.4 Codename: stretch $ uname -a Linux raspberrypi 4.14.71-v7+ #1145 SMP Fri Sep 21 15:38:35 BST 2018 armv7l GNU/Linux }}} == Install eclipse == * apt-get install eclipse-platform == Blink led port 26 == * https://www.raspberrypi.org/documentation/usage/gpio/python/README.md * https://gpiozero.readthedocs.io/en/stable/ * python drive_gpio26.py {{{#!highlight python # drive_gpio26.py from gpiozero import LED from time import sleep led = LED(26) while True: led.on() sleep(1) led.off() sleep(1) }}} |
RaspberryPi
Access GPIO https://elinux.org/RPi_GPIO_Code_Samples#C
BCM2835
- Timers
- Interrupt controller
- GPIO
- USB
- PCM / I2S
- DMA controller
- I2C master
- I2C / SPI slave
- SPI0, SPI1, SPI2
- PWM
- UART0, UART1
Install and configure screensaver and lock screen
- sudo apt-get install xscreensaver
- Preferences, Screen saver
- Auto lock after 2 minutes
- Create new menu item (Preferences, Main menu editor)
- Menu item name Lock
- Command: xscreensaver-comand -lock
- Icon: /usr/share/lxpanel/images/ns-lock.png
Info
$ lsb_release -a No LSB modules are available. Distributor ID: Raspbian Description: Raspbian GNU/Linux 9.4 (stretch) Release: 9.4 Codename: stretch $ uname -a Linux raspberrypi 4.14.71-v7+ #1145 SMP Fri Sep 21 15:38:35 BST 2018 armv7l GNU/Linux
Install eclipse
- apt-get install eclipse-platform
Blink led port 26
https://www.raspberrypi.org/documentation/usage/gpio/python/README.md
- python drive_gpio26.py