SYMBOL INDEX (179 symbols across 15 files) FILE: Aurora.py class AuroraManager (line 27) | class AuroraManager: method __init__ (line 28) | def __init__(self): method setupNeoPixels (line 79) | def setupNeoPixels(self): method setupHDMI (line 92) | def setupHDMI(self): method saveConfig (line 164) | def saveConfig(self): method log (line 169) | def log(self, message): method loadConfig (line 173) | def loadConfig(self): method getExtensionClass (line 199) | def getExtensionClass(self, extension_name, extension_dir): method fetchMeta (line 227) | def fetchMeta(self, extension, filename): method populateExtensions (line 238) | def populateExtensions(self): method addMessage (line 254) | def addMessage(self, msg): method getCurrentExtension (line 260) | def getCurrentExtension(self): method setCurrentExtension (line 268) | def setCurrentExtension(self, new_current_extension): method takeScreenshot (line 296) | def takeScreenshot(self): method makePixelImage (line 299) | def makePixelImage(self): method setupExtension (line 302) | def setupExtension(self): method tearDownExtension (line 306) | def tearDownExtension(self): method loop (line 310) | def loop(self): class Aurora_Webserver (line 322) | class Aurora_Webserver(object): method __init__ (line 323) | def __init__(self, Manager): method status (line 328) | def status(self): method about (line 344) | def about(self): method index (line 380) | def index(self): method view (line 413) | def view(self): method configure (line 446) | def configure(self): method toggleEnable (line 489) | def toggleEnable(self): method update_config (line 502) | def update_config(self): method update_HDMI_config (line 531) | def update_HDMI_config(self): method update_LED_config (line 578) | def update_LED_config(self): method update_extension (line 691) | def update_extension(self): method screenshot (line 701) | def screenshot(self): method load_screenshot (line 714) | def load_screenshot(self, **params): method load_pixel_image (line 740) | def load_pixel_image(self, **params): FILE: extensions/Aurora_Ambient_16x9.py class Aurora_Ambient_16x9 (line 9) | class Aurora_Ambient_16x9(AuroraExtension): method __init__ (line 10) | def __init__(self, NeoPixels, HDMI): method aspectCrop (line 21) | def aspectCrop(self, image, ratio): method takeScreenShot (line 30) | def takeScreenShot(self, filepath): method visualise (line 39) | def visualise(self): FILE: extensions/Aurora_Ambient_AutoCrop.py class Aurora_Ambient_AutoCrop (line 9) | class Aurora_Ambient_AutoCrop(AuroraExtension): method __init__ (line 10) | def __init__(self, NeoPixels, HDMI): method takeScreenShot (line 23) | def takeScreenShot(self, filepath, autocrop=False): method autocrop (line 26) | def autocrop(self, image, threshold=0): method visualise (line 46) | def visualise(self): FILE: extensions/Aurora_Ambient_NoCrop.py class Aurora_Ambient_NoCrop (line 9) | class Aurora_Ambient_NoCrop(AuroraExtension): method __init__ (line 10) | def __init__(self, NeoPixels, HDMI): method autocrop (line 19) | def autocrop(self, image, threshold=0): method takeScreenShot (line 39) | def takeScreenShot(self, filepath): method visualise (line 74) | def visualise(self): FILE: extensions/Aurora_AudioSpectogram.py class Aurora_AudioSpectogram (line 13) | class Aurora_AudioSpectogram(AuroraExtension): method __init__ (line 14) | def __init__(self, NeoPixels, HDMI): method takeScreenShot (line 40) | def takeScreenShot(self, filepath): method startAudioStream (line 44) | def startAudioStream(self): method teardown (line 57) | def teardown(self): method fadeToBlack (line 63) | def fadeToBlack(self, pixelPos): method wheel (line 73) | def wheel(self, pos): method rainbow_cycle (line 86) | def rainbow_cycle(self, j): method visualiseAudio (line 93) | def visualiseAudio(self, indata, frames, time, status): method visualise (line 146) | def visualise(self): FILE: extensions/Aurora_Configure.py class Aurora_Configure (line 12) | class Aurora_Configure(AuroraExtension): method __init__ (line 13) | def __init__(self, NeoPixels, HDMI): method setup (line 22) | def setup(self): method visualise (line 25) | def visualise(self): FILE: extensions/Aurora_Meteor.py class Aurora_Meteor (line 10) | class Aurora_Meteor(AuroraExtension): method __init__ (line 11) | def __init__(self, NeoPixels, HDMI): method takeScreenShot (line 25) | def takeScreenShot(self, filepath): method fadeToBlack (line 29) | def fadeToBlack(self, pixelPos): method meteorRain (line 39) | def meteorRain(self, i, col): method visualise (line 52) | def visualise(self): FILE: extensions/Aurora_Rainbow.py class Aurora_Rainbow (line 9) | class Aurora_Rainbow(AuroraExtension): method __init__ (line 10) | def __init__(self, NeoPixels, HDMI): method takeScreenShot (line 19) | def takeScreenShot(self, filepath): method wheel (line 23) | def wheel(self, pos): method rainbow_cycle (line 36) | def rainbow_cycle(self, j): method visualise (line 43) | def visualise(self): FILE: extensions/exampleExtension.py class exampleExtension (line 8) | class exampleExtension(AuroraExtension): method __init__ (line 9) | def __init__(self, NeoPixels, HDMI): method fadeToBlack (line 23) | def fadeToBlack(self, pixelPos): method fadeToBright (line 33) | def fadeToBright(self, pixelPos): method visualise (line 47) | def visualise(self): FILE: webserver/static/js/aurora-configure.js function fetch_config_data (line 1) | function fetch_config_data() { function save_hdmi_image (line 51) | function save_hdmi_image() function reloadImages (line 62) | function reloadImages() { function setHDMIValues (line 70) | function setHDMIValues() function reset_gamma (line 79) | function reset_gamma(hue_gamma) FILE: webserver/static/js/aurora-generic.js function togglePower (line 3) | function togglePower() function make_AJAX_Call (line 10) | function make_AJAX_Call(url, data_dict, callback_function = false) { function create_snackbar (line 51) | function create_snackbar(heading, message, type) { function showExtensionDetails (line 73) | function showExtensionDetails(name) { function loadExtension (line 86) | function loadExtension(extension_name = false) { function reload_pixel_image (line 100) | function reload_pixel_image() { function reload_hdmi_image (line 113) | function reload_hdmi_image() { FILE: webserver/static/js/aurora-index.js function change_system_status (line 1) | function change_system_status() function toast_system_status (line 16) | function toast_system_status(system_status_call) FILE: webserver/static/js/aurora-view.js function change_system_status (line 1) | function change_system_status() { function toast_system_status (line 15) | function toast_system_status(system_status_call) { function reloadImages (line 30) | function reloadImages() { function reloadCounter (line 37) | function reloadCounter() { FILE: webserver/static/js/custom.js function init_template (line 29) | function init_template(){ FILE: webserver/static/js/jquery.js function m (line 2) | function m(e,t,n){var i,o=(t=t||r).createElement("script");if(o.text=e,n... function x (line 2) | function x(e){return null==e?e+"":"object"==typeof e||"function"==typeof... function C (line 2) | function C(e){var t=!!e&&"length"in e&&e.length,n=x(e);return!g(e)&&!y(e... function oe (line 2) | function oe(e,t,r,i){var o,s,l,c,f,h,v,m=t&&t.ownerDocument,T=t?t.nodeTy... function ae (line 2) | function ae(){var e=[];function t(n,i){return e.push(n+" ")>r.cacheLengt... function se (line 2) | function se(e){return e[b]=!0,e} function ue (line 2) | function ue(e){var t=d.createElement("fieldset");try{return!!e(t)}catch(... function le (line 2) | function le(e,t){var n=e.split("|"),i=n.length;while(i--)r.attrHandle[n[... function ce (line 2) | function ce(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourc... function fe (line 2) | function fe(e){return function(t){return"input"===t.nodeName.toLowerCase... function pe (line 2) | function pe(e){return function(t){var n=t.nodeName.toLowerCase();return(... function de (line 2) | function de(e){return function(t){return"form"in t?t.parentNode&&!1===t.... function he (line 2) | function he(e){return se(function(t){return t=+t,se(function(n,r){var i,... function ge (line 2) | function ge(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e} function ye (line 2) | function ye(){} function ve (line 2) | function ve(e){for(var t=0,n=e.length,r="";t1?function(t,n,r){var i=e.length;while(i-... function be (line 2) | function be(e,t,n){for(var r=0,i=t.length;r0,i=e.length>0,o=function(o,a,s,u,c){var... function N (line 2) | function N(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerC... function j (line 2) | function j(e,t,n){return g(t)?w.grep(e,function(e,r){return!!t.call(e,r,... function P (line 2) | function P(e,t){while((e=e[t])&&1!==e.nodeType);return e} function R (line 2) | function R(e){var t={};return w.each(e.match(M)||[],function(e,n){t[n]=!... function I (line 2) | function I(e){return e} function W (line 2) | function W(e){throw e} function $ (line 2) | function $(e,t,n,r){var i;try{e&&g(i=e.promise)?i.call(e).done(t).fail(n... function a (line 2) | function a(t,n,r,i){return function(){var s=this,u=arguments,l=function(... function _ (line 2) | function _(){r.removeEventListener("DOMContentLoaded",_),e.removeEventLi... function V (line 2) | function V(e,t){return t.toUpperCase()} function G (line 2) | function G(e){return e.replace(X,"ms-").replace(U,V)} function Q (line 2) | function Q(){this.expando=w.expando+Q.uid++} function te (line 2) | function te(e){return"true"===e||"false"!==e&&("null"===e?null:e===+e+""... function ne (line 2) | function ne(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.re... function ue (line 2) | function ue(e,t,n,r){var i,o,a=20,s=r?function(){return r.cur()}:functio... function ce (line 2) | function ce(e){var t,n=e.ownerDocument,r=e.nodeName,i=le[r];return i||(t... function fe (line 2) | function fe(e,t){for(var n,r,i=[],o=0,a=e.length;o