@sdetweil Hi, you are right. My mistake. The installer uses chromium and everything works fine. Sorry
Read the statement by Michael Teeuw here.
Posts
-
RE: MagicMirror on Pi Zero W Sept 2020
-
RE: MagicMirror on Pi Zero W Sept 2020
@sdetweil Hi, I tried the script today to install an Mirror on an Pi Zero W. The electron installation fails. As of http://emmanuelcontreras.com/how-to/how-to-create-a-magic-mirror-2-with-pi-zero-w/ this can be fixed with “npm install - arch=armv7l”. After this fix everything seems to work now.
-
RE: Looking for a European weather provider
Hi, if you are still interested…
I currently use the free Weatherbit api to display German weather in the NOOA3 module. -
[ MMM-LEDStripControl ] - Control a LED strip with optional Pong game support
Description:
This module controls a led strip (in my case a WS2801 strip with 160 leds or an WS2813 strip with 300 leds) with notifications that are converted to MQTT messages with help of the module MMM-MQTTbridge of sergge1 ([https://github.com/sergge1/MMM-MQTTbridge]). The led strip will be controlled with a Python based script that runs on a second Raspberry Pi which is connected to the network and registers to the MQTT topics. The different configuration options of the led strip are grouped into element groups. It is possible to hide unneeded groups. The current active element is marked with an red square. The active element can be changed either by touch or notification. Also the values can be changed by notification or touch. The touch icons provide two different steppings for up and down.
The Python script supports the pong game. If the second button is pressed within a configured interval after the first one the pong mode starts. An running light will be initiated and the two players need to press their button in the moment the running light reaches their end of the strip. If the players hit the button to early or late the other player gets an hit. After an configurable amount of games the final result will be displayed and the strip changes back to normal mode. Each time the running light turns around it gets faster.
This script is provided within the following repository: PythonLedControl. It currently supports all WS2801 and WS281X strips.Download:
MMM-LEDStripControl
[card:Tom-Hirschberger/MMM-LEDStripControl]
Version 0.0.3
- prefixed all CSS classes with the module name
- fixed all issues reported by the new automatic module scanning script developed by @KristjanESPERAN
Version 0.0.2
- Multi-Instance-support
- Fixed a issue which caused config values to be send in a wrong format
- added examples of howto control led strips with ESP8266 or ESP32 micro controllers
Version 0.0.1
The initial release provides the following features
- All elements are included to change the output state, color and pong game options of an led strip either with notifications or via touch elements
- The to be displayed elements can be configured
- The initial values, the steppings and the minimum values and maximum values can be configured
- The module will react to configuration changes of the led strip
- The layout is based on flexbox and can be changed easy in CSS
Screenshots
-
RE: Is it possible to ad an Arduino?
@Shinji0912 Hi, I wrote a module which converts messages received at serial interfaces to notifications (https://github.com/Tom-Hirschberger/MMM-Serial-Notifications). I have two Arduinos connected to my Pi with gesture and distance sensors.
My temperature module (https://github.com/Tom-Hirschberger/MMM-Temperature) can receive notifications to update the values.
Edit: The notification feature is only available in the development branch at the moment. I will mere it to the master the next days.
There are examples integrated which show how to connect an esp32 board with WiFi to get temperature and humidity.
Currently I am working on a module which should use MQTT to control an WS2801 LED Strip. But this one is in a very early state and will take a while to develop. -
RE: MMM-MplayerRadio
@Bugsounet Hi, thank you for your work. I checked the code, your notifications should work as planned. Play will start with the last station played or with the first one initially.
-
RE: MMM-MplayerRadio
@Bugsounet Hi, great idea. At the moment my mirror is only controlled by sensors and touch.
The volume control buttons of my module only send an notification to MMM-Volume that’s way there isn’t any api in this module.
Everything else can be controlled by notifications. There is a small section about the notifications in the readme. -
RE: MMM-MplayerRadio
Hi,
just published an new version (0.0.3) which provides an autoplay feature. Simply add the station index you want to play to the config option “autoplay”. If you only configured one station it is 0. The station will start to play after about 1 second after the mirror started.
-
RE: MMM-MplayerRadio
@bryan_1 Hi, currently there is no autoplay feature implemented. But I will check it the next days. Maybe it is not a big deal
-
RE: MMM-Temperature
@Hadr1en Hi, the module expects an json string as output of the script it executes. There is a section in the readme which shows an example:
{ "humidity": 32.61236572265625, "temperature_c": 25.50150878906249, //Temperature in °C "temperature_f": 77.9027158203125, //Temperature in °F "error": false }
What kind of error do you get?