Skip to content

Commit

Permalink
Release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
brutella committed May 2, 2019
1 parent 986907a commit a1ab995
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ You only need to

1. download the pre-configured Raspbian image and copy onto an sd card

- [Raspberry Pi 1 , Zero](https://github.com/brutella/hkcam/releases/download/v0.0.5/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.5-armv6.img.zip)
- [Raspberry Pi 2, 3](https://github.com/brutella/hkcam/releases/download/v0.0.5/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.5-armv7.img.zip)
- [Raspberry Pi 1 , Zero](https://github.com/brutella/hkcam/releases/download/v0.0.6/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.6-armv6.img.zip)
- [Raspberry Pi 2, 3](https://github.com/brutella/hkcam/releases/download/v0.0.6/rasbian-stretch-lite-2018-11-13-hkcam-v0.0.6-armv7.img.zip)

2. install [Etcher.app](https://www.balena.io/etcher/) and flash the downloaded image onto your sd card.
<img alt="Etcher.app" src="_img/etcher.png?raw=true"/>
Expand All @@ -67,7 +67,7 @@ You only need to
> diskutil unmountDisk /dev/rdisk3
>
> # copy image on disk3
> sudo dd bs=1m if=~/Downloads/raspbian-stretch-lite-2018-11-13-hkcam-v0.0.5.img of=/dev/rdisk3 conv=sync
> sudo dd bs=1m if=~/Downloads/raspbian-stretch-lite-2018-11-13-hkcam-v0.0.6.img of=/dev/rdisk3 conv=sync
> ```
3. add your WiFi credentials so that the Raspberry Pi can connect to your WiFi
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/hkcam/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
hkcam_version: 'v0.0.5'
hkcam_version: 'v0.0.6'
hkcam_download_file_name: hkcam-{{ hkcam_version }}_linux_armhf.tar.gz
hkcam_download_url: https://github.com/brutella/hkcam/releases/download/{{ hkcam_version }}/{{ hkcam_download_file_name }}
hkcam_download_dir: /tmp
Expand Down
18 changes: 9 additions & 9 deletions ansible/roles/hkcam/tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
state: directory

- name: Download {{ hkcam_download_url }} to {{ hkcam_download_dest }}
copy:
src: /Users/mah/Source/Code/Go/src/github.com/brutella/hkcam/{{ hkcam_download_file_name }}
dest: "{{ hkcam_download_dir }}"
owner: pi
group: pi
mode: 0644
# get_url:
# url: "{{ hkcam_download_url }}"
# dest: "{{ hkcam_download_dest }}"
# copy:
# src: /Users/mah/Source/Code/Go/src/github.com/brutella/hkcam/{{ hkcam_download_file_name }}
# dest: "{{ hkcam_download_dir }}"
# owner: pi
# group: pi
# mode: 0644
get_url:
url: "{{ hkcam_download_url }}"
dest: "{{ hkcam_download_dest }}"
register: pkg_download

- name: Extract {{ hkcam_download_dest }} to {{ hkcam_download_dir }}
Expand Down
2 changes: 1 addition & 1 deletion cmd/hkcam/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func main() {
dnslog.Debug.Enable()
}

switchInfo := accessory.Info{Name: "Camera", FirmwareRevision: "0.0.5", Manufacturer: "Matthias Hochgatterer"}
switchInfo := accessory.Info{Name: "Camera", FirmwareRevision: "0.0.6", Manufacturer: "Matthias Hochgatterer"}
cam := accessory.NewCamera(switchInfo)

cfg := ffmpeg.Config{
Expand Down

0 comments on commit a1ab995

Please sign in to comment.