ppamidimarri

Results 41 comments of ppamidimarri

@EissaAl Got it, sounds like there is a bigger problem somewhere that makes the application freeze when the OctoPrint server doesn't respond for a while. I am totally out of...

@mrcg Excellent progress! Removing updateTemperature is a no-brainer for me. I never look at that when I want to know how hot my printer is, I look at the printer's...

You definitely need to do a manual setup. One-step setup will not work with TeslaDashcamWeb. It looks like teslausb has not been merged, so you need to use marcone's fork....

@dhtguru Not yet. It will be ready in a few days. I will put a note on there when it is ready to download and use. Please note that the...

@dhtguru My [other project](https://github.com/ppamidimarri/TeslaCamMerge) is now ready for download and use. Give it a shot and let me know how it goes. I will try to get some screenshots up...

I had the same issue. Apparently the Tesla browser won't load local IP addresses. The only workaround I found is to make my Pi accessible from the internet, behind an...

@Tesla-Birne Yes, it is somewhat complicated. The key steps are: **To make TeslaDashcamWeb accessible in the Tesla Browser** 1. On your main router, assign a fixed LAN IP address to...

You need to add a few lines to `/etc/rc.local`, before the line `exit 0`: ``` LOGFILE=/tmp/rc.local.log function log () { echo -n "$( date )" >> "$LOGFILE" echo -n ":...

You are missing an important line: `LOGFILE=/tmp/rc.local.log` This must be present before the line `function log() {`

Please change this line in the /etc/rc.local, it has a bug: `/bin/mkdir -p /var/log/nginx >> "$LOGFILE" 2>&1` The `-p` is necessary.