This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1021 B
43 lines
1021 B
6 years ago
|
/**
|
||
|
* Copyright (c) 2015-present, Facebook, Inc.
|
||
|
*
|
||
|
* This source code is licensed under the MIT license found in the
|
||
|
* LICENSE file in the root directory of this source tree.
|
||
|
*
|
||
|
* @providesModule VibrationIOS
|
||
|
* @flow
|
||
|
*/
|
||
|
'use strict';
|
||
|
|
||
|
var RCTVibration = require('NativeModules').Vibration;
|
||
|
|
||
|
var invariant = require('fbjs/lib/invariant');
|
||
|
|
||
|
/**
|
||
|
* NOTE: `VibrationIOS` is being deprecated. Use `Vibration` instead.
|
||
|
*
|
||
|
* The Vibration API is exposed at `VibrationIOS.vibrate()`. On iOS, calling this
|
||
|
* function will trigger a one second vibration. The vibration is asynchronous
|
||
|
* so this method will return immediately.
|
||
|
*
|
||
|
* There will be no effect on devices that do not support Vibration, eg. the iOS
|
||
|
* simulator.
|
||
|
*
|
||
|
* Vibration patterns are currently unsupported.
|
||
|
*/
|
||
|
|
||
|
var VibrationIOS = {
|
||
|
/**
|
||
|
* @deprecated
|
||
|
*/
|
||
|
vibrate: function() {
|
||
|
invariant(
|
||
|
arguments[0] === undefined,
|
||
|
'Vibration patterns not supported.'
|
||
|
);
|
||
|
RCTVibration.vibrate();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
module.exports = VibrationIOS;
|