Практическая кибернетика для школьников >>>
sudo raspi-config
Для перезапуска (перезагрузки) можно выполнить следующую командную строку:
sudo shutdown -r now
Для выключения:
sudo shutdown -h now
http://raspberrypi.ru/blog/readblog/42.html
http://debback.blogspot.ru/2008/03/linux-windows-xming-ssh.html !!!
Для этого нужно на компьютер установить две маленькие программы: PuTTY и Xming.
PuTTY- это универсальный SSH клиент типа Телнета, только с шифрованием.
Xming- это локальный X-сервер для Windows. Именно он будет отображать рабочий стол на вашем компьютере.
На Raspberry ничего устанавливать ненужно. Единственное, вам нужно включить SSH сервер, если вы этого не сделали раньше.
sudo apt-get update sudo apt-get install arduino
void setup() { Serial.begin(9600); } void loop() { for (byte n = 0; n < 255; n++) { Serial.write(n); delay(50); } }
Python + pySerial
import serial port = "/dev/ttyACM0" serialFromArduino = serial.Serial(port,9600) serialFromArduino.flushInput() while True: if(serialFromArduino.inWaiting() > 0): input = serialFromArduino.read(1) print(ord(input))
http://robocraft.ru/blog/arduino/104.html - Arduino/CraftDuino и RSS
https://learn.adafruit.com/arduino-lesson-17-email-sending-movement-detector/python-code - Arduino Lesson 17. Email Sending Movement Detector
http://brewpi.com/brewpi-case-assembly-guide/
http://www.kickstarter.com/projects/1842571016/pi-pan-a-pan-tilt-for-raspberry-pi-camera?ref=search
http://www.iammer.com/raspi/case.html
http://www.petervis.com/Raspberry_PI/Raspberry_Pi_Case/Raspberry_Pi_Case_Construction.html
https://github.com/AltJ/raspberry-pi-case
http://www.altj.com/raspberry-pi-case-made-from-cardboard-cardstock-paper-or-plastic/
http://dx.com/p/smpd01-protective-acrylic-storage-case-for-raspberry-pi-transparent-202095
http://fomori.org/blog/?p=451#more-451 !!!
Master the Raspberry Pi with these easy to follow lessons. We’re pleased to announce our new Raspberry Pi Lessons by Dr. Simon Monk & Ladyada! Simon is one of the best educational writers in the world and we also stock his fantastic books here in the Adafruit store!
GPIO
Где купить в Москве:
Other
Музыкальный секвенсер
Комментарии:
Для перезапуска (перезагрузки) можно выполнить следующую командную строку:
sudo shutdown -r now
Для выключения:
sudo shutdown -h now
http://chingachgook.net/raspberry-pi/raspberry-pi-udalennyj-dostup.html
Удаленный доступ к raspberry pi посредством SSH
Что бы определить ip адреса, находящихся в сети компьютеров можно воспользоваться программой http://www.advanced-ip-scanner.com/ (описание http://www.hobbytronics.co.uk/raspberry-pi-ssh)
В операционных системах Linux и Mac OS используем shell. В Windows устанавливаем клиента PuTTY: http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html
Доступ к файлам посредством WinSCP
http://winscp.net/eng/download.php
Настройка сетевого подключения в Raspberry Pi (как установить постоянный ip)
Переходим к файлу /etc/network/interfaces Закомментируйте (#) строку iface eth0 inet dhcp Ниже пропишите следующие значения: iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 gateway 192.168.1.1
http://habrahabr.ru/post/149890/ - Raspberry Pi: подробная настройка с нуля до TorrentBox
# Устанавливаем MySQL: sudo apt-get install mysql-server mysql-client # Когда запросит установить пароль для root – укажите любой пароль, который Вы запомните. # Устанавливаем Lighttpd: sudo apt-get install lighttpd # С этого момента Rpi будет откликаться тестовой страницей, если набрать ее IP адрес в браузере любого компьютера в сети! # При желании, если сервер используется для домашнего тестирования sudo chmod 777 /var/www # Устанавливаем PHP5: sudo apt-get install php5-cgi # Теперь необходимо активировать PHP в настройках сервера. Открываем файл в редакторе nano: sudo nano /etc/lighttpd/lighttpd.conf server.modules = ( "mod_access", "mod_fastcgi", "mod_alias", "mod_compress", "mod_redirect", "mod_rewrite", ) # Установка и настройка сервера Samba # Наберите в консоли sudo apt-get update # Затем sudo apt-get upgrade # Теперь переходим к установке Samba. # Набираем в консоли команду sudo apt-get install samba samba-common-bin
http://ru.wikipedia.org/wiki/Chmod
http://debiania.blogspot.ru/2009/05/samba-debian-gnulinux-ubuntu-linux.html
http://linux.yaroslavl.ru/docs/serv/samba/samba_conf.html
http://debian-help.ru/articles/ustanovka-nastroika-samba-debian/#.Ui9P3Ma9nTo
Удаленное администрирование, удаленный рабочий стол.
http://elinux.org/RPi_VNC_Server
http://www.skpang.co.uk/blog/archives/398
http://learn.adafruit.com/downloads/pdf/adafruit-raspberry-pi-lesson-7-remote-control-with-vnc.pdf
http://raspi.tv/rpi-gpio - отлично подобранная документация
How to check what RPi.GPIO version you have
http://raspi.tv/2013/rpi-gpio-basics-1-how-to-check-what-rpi-gpio-version-you-have
RPi.GPIO basics 2 – how to check what Pi board Revision you have
http://raspi.tv/2013/rpi-gpio-basics-2-how-to-check-what-pi-board-revision-you-have
RPi.GPIO Quick Reference “cheat sheet”
RPi.GPIO 0.5.2a now has software PWM – How to use it (Широтно-импульсная модуляция ШИМ)
http://raspi.tv/2013/rpi-gpio-0-5-2a-now-has-software-pwm-how-to-use-it
Working safely with your Pi - http://quick2wire.com/articles/working-safely-with-your-pi/
GPIO Traffic Light demo on the Raspberry Pi with Python or C!!!
http://www.skpang.co.uk/blog/archives/656 !!! - протестировал…
http://vk.com/doc-33212447_238191656?hash=af7c8e0d0e7e503f13&dl=d5dcb95c9a12ec83f3 !!!
http://www.electronshik.ru/card/plata-rasshireniya-atsp--tsap--8-portov-dlya-raspberry-pi-119538 !!!
http://elinux.org/RPi_Low-level_peripherals документация
e-Health Sensor Platform V2.0 for Arduino and Raspberry Pi [Biometric / Medical Applications]
http://www.cooking-hacks.com/shop/raspberry-pi
Raspberry Pi V-Plotter
http://elinux.org/Rpi_Camera_Module
http://www.designspark.com/knowledge-item/r-pi-ffc-connectors
sudo raspi-config
http://chingachgook.net/raspberry-pi/raspberry-pi-udalennyj-dostup.html
http://raspberrypi.ru/readblog/400/ !!! +++
http://www.raspberrypi.org/camera
http://www.raspberrypi-spy.co.uk/2013/05/capturing-hd-video-with-the-pi-camera-module/ !!! mp4
-?, --help : This help information -w, --width : Set image width <size>. Default 1920 -h, --height : Set image height <size>. Default 1080 -b, --bitrate : Set bitrate. Use bits per second (e.g. 10MBits/s would be -b 10000000) -o, --output : Output filename <filename> -v, --verbose : Output verbose information during run -t, --timeout : Duration of video (in ms) -d, --demo : Demo mode(cycle through range of camera options, no capture) -fps, --framerate : Specify the frames per second to record -e, --penc : Display preview image *after* encoding (shows compression artifacts) -p, --preview : Preview window settings <'x,y,w,h'> -f, --fullscreen : Fullscreen preview mode -n, --nopreview : Do not display a preview window -sh, --sharpness : Set image sharpness (-100 to 100) -co, --contrast : Set image contrast (-100 to 100) -br, --brightness : Set image brightness (0 to 100) -sa, --saturation : Set image saturation (-100 to 100) -ISO, --ISO : Set capture ISO -vs, --vstab : Turn on video stablisation -ev, --ev : Set EV compensation -ex, --exposure : Set exposure mode (see Notes) -awb, --awb : Set AWB mode (see Notes) -ifx, --imxfx : Set image effect (see Notes) -cfx, --colfx : Set colour effect (U:V) -mm, --metering : Set metering mode (see Notes) -rot, --rotation : Set image rotation (0, 90, 180, 270) -hf, --hflip : Set horizontal flip -vf, --vflip : Set vertical flip
http://www.raspberrypi.org/phpBB3/viewtopic.php?t=52401
http://www.xakep.ru/post/61404/ !!!
http://designspark.com/blog/time-lapse-photography-with-the-raspberry-pi-camera !!!
Как из Raspberry Pi сделать живую камеру.
http://linux.cpms.ru/?p=7732 !!!
http://www.raspberrypi.org/phpBB3/viewtopic.php?t=48597
http://www.raspberrypi.org/archives/3890
http://www.raspberrypi-spy.co.uk/2013/05/installing-the-raspberry-pi-camera-module/
http://www.raspberrypi-spy.co.uk/2013/05/creating-timelapse-videos-with-the-raspberry-pi-camera/ !!!!!
http://www.raspberrypi-spy.co.uk/2013/05/taking-hi-res-photos-with-the-pi-camera-module/
http://www.stuffaboutcode.com/2013/05/time-lapse-video-with-raspberry-pi.html
http://blog.davidsingleton.org/raspberry-pi-timelapse-controller/
http://www.davidhunt.ie/?p=2822
http://www.davidhunt.ie/?cat=61 - ALL TUTOTRIAL
https://github.com/quick2wire/quick2wire-gpio-admin – gpio-admin
http://www.instructables.com/id/Raspberry-Pi-powered-time-lapse-dolly-RasPiLapse/
music http://www.royaltyfreekings.com/store/free-dramatic-music/
http://www.mybigideas.co.uk/RPi/RPiCamera/
raspivid -o - -t 9999999 |cvlc -vvv stream:///dev/stdin --sout '#rtp{sdp=rtsp://:8554/}' :demux=h264 rtsp://<IPofRaspberryPi>:8554/
http://habrahabr.ru/post/196598/
http://raspberrypi.stackexchange.com/questions/10091/unable-to-run-raspistill-from-php
https://www.modmypi.com/blog/raspberry-pi-camera-board-raspistill-command-list
RaspiCam-Documentation
http://www.raspberrypi.org/wp-content/uploads/2013/07/RaspiCam-Documentation.pdf
https://github.com/raspberrypi/userland/tree/master/host_applications/linux/apps/raspicam
http://deadlime.hu/2013/09/08/time-lapse-video-keszitese-rpi-vel/
http://www.fotosyn.com/simple-timelapse-camera-using-raspberry-pi-and-a-coffee-tin/
http://www.raspberrypi.org/phpBB3/viewtopic.php?p=358259#p362915
http://www.raspberrypi-spy.co.uk/2013/05/creating-timelapse-videos-with-the-raspberry-pi-camera/
Creating a Time-Lapse Camera with the Raspberry Pi and Python!!!
http://trevorappleton.blogspot.co.uk/2013/11/creating-time-lapse-camera-with.html
#! /usr/bin/python import time, os #import RPi.GPIO as GPIO #RED = 17 #GPIO.setmode(GPIO.BCM) #GPIO.setup(RED, GPIO.OUT) print "START" f = int(input("FRAMES = (1000)")) fps = int(input("FPS = (10)")) tb = int(input("TIMEBETWEEN = (min 6 s)")) #out_paf = input("out data path = ") FRAMES = f FPS_IN = fps FPS_OUT = 24 TIMEBETWEEN = tb FILMLENGTH = float(FRAMES / FPS_IN) frameCount = 0 while frameCount < FRAMES: imageNumber = str(frameCount).zfill(7) os.system("raspistill -o simage%s.jpg"%(imageNumber)) frameCount += 1 time.sleep(TIMEBETWEEN - 6) #Takes roughly 6 seconds to take a picture os.system("avconv -r %s -i simage%s.jpg -r %s -vcodec libx264 -crf 20 -g 15 -vf crop=2592:1458,scale=1280:720 stimelapse.mp4"%(FPS_IN,'%7d',FPS_OUT)) # GPIO.output(RED, True) #ALL red # GPIO.output(RED, False) # time.sleep (delay) #GPIO.cleanup() print "END!"
pi@raspberrypi /var/www/video $ sudo cp ~/pi_lab1/data/*.mp4 test.mp4 pi@raspberrypi /var/www/video $ ls test.mp4 pi@raspberrypi /var/www/video $ sudo raspistill -o img.jpg
Taking Hi-Res Photos With The Pi Camera Module
http://www.raspberrypi-spy.co.uk/2013/05/taking-hi-res-photos-with-the-pi-camera-module/
terminate raspistill command from python
http://stackoverflow.com/questions/18825899/raspberry-pi-terminate-raspistill-command-from-python
http://shemopedia.ru/web-upravlenie-raspberry-pi-gpio.html
http://www.youtube.com/watch?v=1rs9o5DI6fQ
http://habrahabr.ru/post/183112/
http://www.raspberrypi.org/phpBB3/viewtopic.php?f=84&t=35840
http://robocraft.ru/blog/arduino/170.html
http://citydelo.ru/p21306472-l298n-drajver-shagovogo.html
http://habrahabr.ru/post/130384/
http://habrahabr.ru/sandbox/57095/
http://www.rlocman.ru/shem/schematics.html?di=54961
http://citydelo.ru/p21306472-l298n-drajver-shagovogo.html
http://amperka.ru/collection/components/product/uln2003-darlington-assembly
http://amperka.ru/collection/stepper-motor/product/stepper-motor-ldo-36ht20-0504ma
http://amperka.ru/collection/components/product/l293d-motor-driver
http://arduino.cc/en/Tutorial/MotorKnob
http://habrahabr.ru/company/zeptobars/blog/189388/
http://russian.alibaba.com/product-gs/stepper-motor-driver-board-uln2003-for-arduino-961119276.html
http://sun-store.ru/index.php?search_string_0=Step&searchstring=%F8%E0%E3%EE%E2%FB%E9&x=0&y=0
Plotly just launched a beta for streaming data, and I wanted to pass along this graph. It's here: (https://plot.ly/~jensb89/12/) and uses Plotly APIs ( plot.ly/api ) to check Raspberry Pi temperature from your browser.
You can fork the code here:
http://www.raspberrypi-spy.co.uk/2012/11/raspberry-pi-mounting-hole-positions-and-template/
http://www.raspberrypi-spy.co.uk/wp-content/uploads/2012/11/Raspberry-Pi-Mounting-Hole-Template.pdf
https://dl.dropboxusercontent.com/u/93551/RPi/RPi_rev2_pcb_print.pdf
http://easyelectronics.ru/ispolzovanie-oscillografa.html - Использование осциллографа http://easyelectronics.ru/ispolzovanie-oscillografa-video-urok.html http://www.roboclub.ru/master/2005/06/01/instruments_81.html
http://24gadget.ru/1161055631-chpu-stanok-iz-vodoprovodnyh-trub-video.html - ЧПУ-станок
http://24gadget.ru/tags/%D1%81%D0%B0%D0%BC%D0%BE%D0%B4%D0%B5%D0%BB%D0%BA%D0%B0/
https://github.com/makeitlab/makeitlab/blob/master/equipment.md
http://avc-eire.livejournal.com/384372.html
http://www.electronshik.ru/item/2803-sp-step-motor-board-for-raspberry-pi-1139273
http://habrahabr.ru/post/196598/ Фотонаблюдение или timelapse видео на Raspberry Pi
http://www.imelcom.by/index.php?all_cat=14030907%20%20%20%20&sub0=14&sub1=3&sub2=9&sub3=7&sub4=0
http://fotopult.com/focus-stacking-scanner-macro/
http://getarduino.ru/product/shagovyij-dvigatel-s-kontrollerom/
http://www.makeuseof.com/pages/great-things-small-package-your-unofficial-raspberry-pi-manual