Skip to content

Commit

Permalink
Add GUI-script
Browse files Browse the repository at this point in the history
Add screens
Add README file
  • Loading branch information
EXL committed Jun 7, 2014
1 parent ee9d70e commit f4956dd
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
zPulse
==============

Demonstrate the different styles and modes of vibration like on Siemens phones on MotoMAGX phones.

## Interface

### MotoMAGX:
![MotoMAGX](https://raw.github.com/EXL/zPulse/master/screens/MotoMAGX_ZN5.png)
Binary file added screens/MotoMAGX_ZN5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions zPulse.pro
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,6 @@ INCLUDEPATH += .
# Input

SOURCES += main.c

OTHER_FILES += README.md \
zPulse_GUI.sh
29 changes: 29 additions & 0 deletions zPulse_GUI.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
#!/bin/bash
mypath=${0%/*}
showRadio "zPulse" "" "1. Standard" "2. Helicopter" "3. UFO" "4. Shock" "5. Mosquito" "6. Train" "7. Pulse"
case "$?" in
1)
exec $mypath/zPulse -standard
;;
2)
exec $mypath/zPulse -helicopter
;;
3)
exec $mypath/zPulse -ufo
;;
4)
exec $mypath/zPulse -shock
;;
5)
exec $mypath/zPulse -mosquito
;;
6)
exec $mypath/zPulse -train
;;
7)
exec $mypath/zPulse -pulse
;;
*)
exit 0
;;
esac

0 comments on commit f4956dd

Please sign in to comment.