• Micro Controller Forum

    From Jimmy Anderson@954:100/61 to Mike Dippel on Sunday, November 03, 2024 16:41:54
    Mike Dippel wrote to All <=-

    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.


    Never been into them, but learning to solder at work so I can
    better repair Chromebooks and such. Would like to build
    SOMETHING legit to use for a legit reason. :-)




    ... Federal Law prohibits the removal of this tagline
    === MultiMail/Mac v0.52
    --- SBBSecho 3.20-Linux
    * Origin: CJ's Place, Orange City FL > cjsplace.thruhere.net (954:100/61)
  • From Mike Dippel@954:895/1 to All on Friday, February 25, 2022 19:00:06
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Jesus Saves! Moses Invests!
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Monday, April 25, 2022 19:00:02
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Tis better to be thought a fool, then to open your mouth and remove all doubt.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Tuesday, October 25, 2022 19:00:12
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Take my advice, I don't use it anyway.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Sirronmit@954:895/45 to Mike Dippel on Saturday, November 26, 2022 13:41:32
    This forum must be dead as I had asked upon first joining and posted what all my Raspberry Pis are used for :(

    Timothy Norris
    aka SirRonmit
    admin@f4fbbs.com
    bbs.f4fbbs.com:62323

    --- Mystic BBS v1.12 A44 2020/01/16 (Windows/32)
    * Origin: Files 4 Fun BBS (954:895/45)
  • From Partiersp@954:895/3 to Sirronmit on Saturday, December 31, 2022 18:43:26
    Re: Re: Micro Controller Forum
    By: SirRonmit to Mike Dippel on Sat Nov 26 2022 13:35:32

    I'm not sure what you are using your RPi for, but I'm using mine as a NAS/Web server. I currently can tunnel into the RPi using a BASH script I have on my laptop. This attaches a directory to my home directory that allows for simple file transfer. The script also rsync a directory that I like to have backed up onto RPi. It acts like my own 'clowd' server for my stuff. Here's the script on my laptop:

    #!/bin/bash
    skip=1
    #set address to you're network's address
    address="XXX.XXX.XXX.XXX"
    port=21
    while getops :sh option; do
    case $option in
    h) echo "usage: pitun [-s]";
    exit;;
    s) skip=0;;
    ?) echo "Error: option -$OPTARG is not supported";
    exit;;
    esac
    done
    if [ $skip -eq 1 ]
    then
    rsync -ave "ssh -p$port" ~/Backup/ pi@$address:/home/pi/Backup
    echo
    if
    mkdir ~/pi
    sshfs pi$address:/home/pi ~/pi -p$port
    ssh -L 8080:127.0.0.1:80 -L 8888:192.168.1.3:80 pi@$address -p$port
    fusermount --umount ~/pi
    rmdir ~/pi


    Once I use that script on my laptop, I have an open SSH connection to it if I want to run any commands on the pi itself. I also have port forwarding so I can access the pi's web server by entering 127.0.0.1:8080 into my laptop's webrouser. This eliminates opening up additional ports in my router's firewall.

    On the RPi it's self, I have two identical HDD running in RAID 0 via two identical USB to SATA addapters. This provides data redundancy in case one drive fails (which I have had and this saved my data).

    As far as websites/data on the Pi, it's mainly my photo gallery. I've got 36k photos I've taken over the years. The Backup directory on my laptop has anything I want to by automatically sync'd to the RPi with is typically some work stuff.

    Using Termux on my phone/tablets I can run a very similar script and have the same funtionallity on my devices.

    Mike
    --- SBBSecho 3.20-Linux
    * Origin: End Of The Line BBS - endofthelinebbs.com (954:895/3)
  • From Mike Dippel@954:895/1 to All on Thursday, January 26, 2023 21:52:32
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Doesn't expecting the unexpected make the unexpected become the expected? --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Tuesday, January 25, 2022 19:00:06
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1
    --- A pessimist is never disappointed.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Tuesday, April 25, 2023 19:00:10
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Why are you looking down here? The joke is above!
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Saturday, February 25, 2023 19:00:04
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- I don't have a solution but I admire the problem.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Monday, November 13, 2023 23:00:08
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- Daddy, why doesn't this magnet pick up this floppy disk?
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From SirRonmit@954:895/45 to Mike Dippel on Tuesday, November 14, 2023 09:32:18
    I posted mine before, but don't think my system is sending out unless I hit reply .. I need to install these message areas on my fresh install and see if I can get them working properly.

    --
    Timothy Norris aka SirRonmit
    admin@f4fbbs.com
    bbs.f4fbbs.com:2323 or :62323

    --- Mystic BBS v1.12 A48 (Windows/32)
    * Origin: Files 4 Fun BBS (954:895/45)
  • From John Guillory@954:895/25 to SirRonmit on Tuesday, November 14, 2023 11:38:01
    I posted mine before, but don't think my system is sending out unless I hit reply .. I need to install these message areas on my fresh install
    and see if I can get them working properly.

    Your definitely getting out...

    John H. Guillory
    call sign KF5QEO
    URL: kf5qeo.servebbs.net
    KF5QEO's Shack BBS

    ... (A)bort, (R)etry, (I)nfluence with large hammer.

    --- Mystic BBS v1.12 A49 2023/03/14 (Linux/64)
    * Origin: KF5QEO's Shack -- kf5qeo.servebbs.net (954:895/25)
  • From NerdTower@954:895/51 to Mike Dippel on Tuesday, November 14, 2023 10:24:31
    This should be fun! I have been wanting to expand and do some more home automation stuff using the ESP32 modules. I am controlling some led strips now using WLED and have a few temp sensors placed in my barn that run ESP Easy

    Jim (NerdTower)

    Jim (NerdTower)
    CCX BBS
    bbs.ccxbbs.net:2626

    ... THE fIRST sTEP iS tO tAKE oFF tHE cAPS lOCK

    --- Mystic BBS v1.12 A48 (Windows/64)
    * Origin: CCX BBS | Wilton, CA (954:895/51)
  • From SirRonmit@954:895/45 to John Guillory on Tuesday, November 14, 2023 12:20:02
    Your definitely getting out...

    Thanks, John!
    I think it was because I hit REPLY and changed instead of New Message to All -- lotsa weird problems after latest update and power outages here :(

    --
    Timothy Norris aka SirRonmit
    admin@f4fbbs.com
    bbs.f4fbbs.com:2323 or :62323

    --- Mystic BBS v1.12 A48 (Windows/32)
    * Origin: Files 4 Fun BBS (954:895/45)
  • From Mike Dippel@954:895/1 to All on Saturday, April 13, 2024 23:00:04
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- I think. Therefore I am DANGEROUS.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Monday, May 13, 2024 23:00:08
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- "I tried to think but nothing happened!" - Curly
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Ernie@954:895/69 to All on Sunday, July 21, 2024 22:39:56
    Re: Micro Controller Forum
    By: Mike Dippel to All on Sat Jul 13 2024 11:00 pm

    Hi all,

    Microcontrollers are something I'm definitely interested in. I use Home Assistant in my home to do some home automation.

    I have a couple ESP32's around, one as a bluetooth proxy and one acting as a test voice assistant (M5Stack Atom Echo). Also running a RTLSDR monitoring aircraft in the area.

    I do eventually want to get into using some ESP32's and WLED to do some interesting holiday lighting.

    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.
    --- SBBSecho 3.20-Linux
    * Origin: Lost Cause Halfway House - bbs.lostcause.house (954:895/69)
  • From SirRonmit@954:895/45 to Ernie on Monday, July 22, 2024 07:33:32
    I have a couple ESP32's around, one as a bluetooth proxy and one acting
    as a test voice assistant (M5Stack Atom Echo). Also running a RTLSDR monitoring aircraft in the area.

    I do eventually want to get into using some ESP32's and WLED to do some interesting holiday lighting.

    Hello, Ernie

    I have been playing around with MCs for years. From the Original Rasp Pi to the latest (minus the new v5). PINE64 as well. My Engineers are work all use the ESP32s and gave me a couple to play around with. I used an Arduino Micro to learn and play with various WLEDs - that was neat. My PINE64 was my OctoPrint server, but I got the 7" touch display and installed Android on it to make it my DJI Phantom 4 "cellphone" display. Other Pis are running my weather station, my ADS-B server, remote camera controllers, and a retro gaming "console". Lots of fun, but I haven't played around with them much after I get things programmed and running. Then I have to 're-learn' everything if something breaks. LOL

    --
    Timothy Norris aka SirRonmit
    admin@f4fbbs.com
    bbs.f4fbbs.com:2323 or :62323

    --- Mystic BBS v1.12 A48 (Windows/32)
    * Origin: Files 4 Fun BBS (954:895/45)
  • From Ernie@954:895/69 to SirRonmit on Tuesday, July 23, 2024 16:51:47
    Re: Re: Micro Controller Forum
    By: SirRonmit to Ernie on Mon Jul 22 2024 07:33 am

    Hi SirRonmit,

    Those sound like some great projects. I have a few Pi's around too. My original Pi1, I don't think I have plugged in anymore.

    I have a pi4 that I use as kind of a bastion host. Mostly it's used to run an ansible script to update the other servers in the network and OctaPrint like you.

    I do eventually want to setup a weather station and ADS-B server (capture some satallite images, etc.)

    I have been playing around with MCs for years. From the Original Rasp Pi to the latest (minus the new v5). PINE64 as well. My Engineers are work all use the ESP32s and gave me a couple to play around with. I used an Arduino Micro to learn and play with various WLEDs - that was neat. My PINE64 was my OctoPrint server, but I got the 7" touch display and installed Android on it to make it my DJI Phantom 4 "cellphone" display. Other Pis are running my weather station, my ADS-B server, remote camera controllers, and a retro gaming "console". Lots of fun, but I haven't played around with them much after I get things programmed and running. Then I have to 're-learn' everything if something breaks. LOL

    ===
    Ernest J Gainey III
    Lost Cause Halfway House
    bbs.lostcause.house
    --- SBBSecho 3.20-Linux
    * Origin: Lost Cause Halfway House - bbs.lostcause.house (954:895/69)
  • From Mike Dippel@954:895/1 to All on Sunday, October 13, 2024 23:00:06
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- I have the heart of a child. I keep it in a jar.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)
  • From Mike Dippel@954:895/1 to All on Wednesday, November 13, 2024 23:00:06
    This forum is for discussion of MICROCONTROLLER_PROJECTS.
    Past discussions include: Christmas lights using a Arduino.
    Let's keep it going.

    Mike Dippel


    Posted by takWebPost v1.0.1 (Reg [The Hobby Line! BBS])
    --- A conscience does not prevent sin.
    --- Platinum Xpress/Win/WINServer v7.0
    * Origin: The Hobby Line! BBS - hobbylinebbs.com (954:895/1)