MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    1. Home
    2. popeye2002
    3. Posts
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 14
    • Groups 0

    Posts

    Recent Best Controversial
    • RE: [MMM-JaST] Just another Stock Ticker (new: version 2.x)

      @Jalibu I would really like to see this working in my mirror! so far I have had no luck getting data from Alpha avantage. Is there a way to test and see what data is returned? or maybe what error code comes back? The ticker itself is running well with 15 stocks in it but no values are showing. I went back and used your sample config code and still no values returned. Your thoughts?
      Here is what i used for my code:

      		{
      	module: "MMM-Jast",
      	position: "bottom_bar",
      	config: {
      		updateIntervalInSeconds: 1800,
      		fadeSpeedInSeconds: 3.5,	
      			stocks: [
      			{ name: "Amazon", symbol: "AMZN" },
      			{ name: "Disney", symbol: "DIS" },
      			{ name: "Ford", symbol: "F" },
      			{ name: "Starbucks", symbol: "SBUX" },
      			{ name: "JD.com", symbol: "JD" },
      			{ name: "Microsoft", symbol: "MSFT" },
      			{ name: "Verizon", symbol: "VZ" },
      			{ name: "Phizer", symbol: "PFE" },
      			{ name: "Intuit", symbol: "INTU" },
      			{ name: "Zinga", symbol: "ZNGA" },
      			{ name: "Cognex", symbol: "CGNX" },
      			{ name: "Fortnet", symbol: "FTNT" },
      			{ name: "Ilumina", symbol: "ILMN" },
      			{ name: "KinderMorgen", symbol: "KMI" },
      			{ name: "NewBev", symbol: "NBEV" },
      			{ name: "Neptune", symbol: "NEPT" },
      			{ name: "Alibaba", symbol: "BABA", tradeCurrency: "USD", displayCurrency: "USD" },
      		],
      				defaultCurrency: "USD",
      				apiKey: "My_API_KEY_HERE",
      				scroll: "horizontal", //"<none, vertical, horizontal>"
      				maxWidth: "100%",
      				showDepotGrowth: true
      	}
      },
      
      
      posted in Utilities
      popeye2002P
      popeye2002
    • RE: weather forecast and current weather modules

      wow… RESOLVED… smart me somewhere along the way I entered my location into the currentweather.js file… that was a mistake I made and I shall remember!! @Mykle1 Thank you for your patients and I give to you something to smile and laugh about… betting you may have touched something you shouldn’t have as well… but that was a tough lesson!

      posted in General Discussion
      popeye2002P
      popeye2002
    • RE: weather forecast and current weather modules

      sadly no, only the forecast works, not the current weather :( that’s why jumped in this thread because it should work but the current weather does not so there may be a problem elsewhere. That’s where i don’t know where to begin to troubleshoot since it’s a brand new install.
      BTW, I ran your current weather code for NY and that did not work either

      posted in General Discussion
      popeye2002P
      popeye2002
    • RE: weather forecast and current weather modules

      @Mykle1
      I believe that there may be a new issue. I’ve spent the last few days with the same problem. Current weather does not show but forcast does… I’m also very new… just started MM2 this weekend from knowing nothing to knowing very little … anyway from the very first try the forcast was working but not the current weather.

      	{
      		//disabled: true,
      		module: "currentweather",
      		position: "top_right",
      		config: {
      			location: "Silverdale",
      			locationID: "5810490", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      			appid: "getyourownapikey"
      		}
      	},
      	{	//disabled: true,
      		module: "weatherforecast",
      		position: "top_right",
      		header: "5-Day Weather Forecast",
      		config: {
      			location: "Silverdale",
      			locationID: "5810490", //ID from http://bulk.openweathermap.org/sample/city.list.json.gz; unzip the gz file and find your city
      			appid: "getyourownapikey",
      			colored:'true',
      			roundTemp:'true',
      			maxNumberOfDays:'14',
      			initialLoadDelay: '1000',
      			iconTable: {
      				    '01d': 'wi-day-sunny',
      				    '02d': 'wi-day-cloudy',
      				    '03d': 'wi-cloudy',
      				    '04d': 'wi-cloudy-windy',
      				    '09d': 'wi-showers',
      				    '10d': 'wi-rain',
      				    '11d': 'wi-thunderstorm',
      				    '13d': 'wi-snow',
      				    '50d': 'wi-fog',
      				    '01n': 'wi-night-clear',
      				    '02n': 'wi-night-cloudy',
      				    '03n': 'wi-night-cloudy',
      				    '04n': 'wi-night-cloudy',
      				    '09n': 'wi-night-showers',
      				    '10n': 'wi-night-rain',
      				    '11n': 'wi-night-thunderstorm',
      				    '13n': 'wi-night-snow',
      				    '50n': 'wi-night-alt-cloudy-windy'
      				}
      		}
      	},
      

      I am using Geany for an editor on my RPI4 … it just showed up… like magic.
      thanks for any help you may have

      posted in General Discussion
      popeye2002P
      popeye2002
    • 1 / 1