All Projects → jensb89 → Matlab-Pushbullet

jensb89 / Matlab-Pushbullet

Licence: MIT license
Matlab class to connect with pushbullet

Programming Languages

matlab
3953 projects

Projects that are alternatives of or similar to Matlab-Pushbullet

laravel-pushbullet
PushBullet for Laravel
Stars: ✭ 16 (-5.88%)
Mutual labels:  pushbullet
pushbullet
Pushbullet notifications channel for Laravel
Stars: ✭ 14 (-17.65%)
Mutual labels:  pushbullet
maven-notifier
Desktop notifications for Maven 3.x.
Stars: ✭ 71 (+317.65%)
Mutual labels:  pushbullet
PFMonitor
PFMonitor -- for deep learning engineer's freedom
Stars: ✭ 17 (+0%)
Mutual labels:  pushbullet
Intrusion Detection
Whenever founds internet connectivity confirms is it you, if not log you off and send you image of intruder.
Stars: ✭ 24 (+41.18%)
Mutual labels:  pushbullet
statapush
Stata module for sending push notifications.
Stars: ✭ 15 (-11.76%)
Mutual labels:  pushbullet
ConsolePi
Raspberry Pi Based Serial Console Server, with PushBullet Notification of IP changes, Automatic VPN termination, custom menu, Power Outlet Control, and a lot more
Stars: ✭ 109 (+541.18%)
Mutual labels:  pushbullet

Matlab-Pushbullet

This Matlab class can be used to send push notifications via pushbullet to your smartphone right from within Matlab. This could for example inform you that your measurement or simulation is done.

What you need is a Pushbullet Account and the corresponding App for Android or iOS.

In order to use the API you need an API key that can be obtained here.

Matlab Pushbullet Notification on iPhone

Important: The Matlab class now uses the new webwrite and webread functions from Matlab. The webwrite was introduced in Matlab R2015a. If you are using an older matlab version, use the older release of Matlab-Pushbullet here.

#Usage

##Initialize object

p = Pushbullet(apikey)

##Push

##Pushing a text note

p.pushNote(device_iden,'Matlab Pushbullet Test','This is the message')

##Pushing a link

p.pushLink(device_iden, 'Test Link', 'Message to the link', 'http://www.github.com')

##Pushing a file

p.pushFile(device_iden, file_name, file_type, file_url) 

to push a file which has already been uploaded somewhere.

##Pushing to specific devices

device_iden can either be [] to send a push notification to all the connected devices or the specific device_iden, which can be displayed by:

p.load_devices()

Furthermore device_iden can be an e-mail adress.

License

MIT license. See LICENSE for full text.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].