@xela What modules are you using? This seems like voicecontrol
, but what are you using for a camera module? Does it already include receivers for those notifications?
Read the statement by Michael Teeuw here.
Posts made by ninjabreadman
-
RE: Help with the camera
-
RE: Help with the camera
Are you able to use the webcam normally, as described here? If you’re having trouble making it work, I would ensure it’s first working as expected outside of MM.
-
RE: How to setup repository for collaboration?
@mbeiswenger Suggest you take the free TryGit course. You can also consult the Git documentation and ask questions here (search first!).
In terms of collaborating, it depends if you will all be working on the same or different features. You will want at least one fork. Also, make your commits small and related (not “here is MM3.0” but “added optional config param
capitalizeAll
tonewsfeed
“). You can either share contributor access to a single branch, or all have them fork-your-fork and submit Pull Requests to your fork/branch. You shouldn’t need to modify.gitignore
– it should already ignore the right files plus a lot of OS-specific cruft.If you ever intend on submitting your changes to the MM
develop
(notmaster
) branch, see the contributing notes in Contributing.md. -
RE: Maximum File Size of ics FIle?
@Stef That’s awesome, congrats. Thanks for letting us know!
If anything, comment on @Beh’s post with any edits or additions you suggest to help others.
Cheers!
-
RE: show integer logs from python script as diagram in MM ?
@cruunnerr @doubleT It would certainly be more easily handled in JSON or even a CSV (easiest to append readings). You can then set up
cron
torsync
the file to your mirror, load the file with annpm
package likecsv
orfast-csv
, and display inMMM-Chart
(I would modifyMMM-Chart
to load the CSV directly). -
RE: show integer logs from python script as diagram in MM ?
@cruunnerr You could use a
mysql
module to query your database, create a route to output a JSON file, then useMMM-Charts
to display. -
RE: Shared Google Calendar Access
@dsmith76 You make the URL accessible or you can try authenticating per the module config.
Otherwise, see this post to learn how to use
vdirsyncer
to download and display your calendar. -
RE: Local file copy to Pi instead of using Github
@Cyberwrights You can still download Git for Windows, or any other
git
client, and clone the repo. So long as you copy the entire folder to your USB, it should (afaik) also copy all of the git-specific repo files, and appear as a git repo on your Pi. -
RE: Local file copy to Pi instead of using Github
@Cyberwrights Yes, if you cannot download to the RPi directly, clone and transfer should work (via USB, FTP, etc). Unzip it to your USB, then transfer, or use a utility like
unzip
.