The Raspberry Pi Thread [4]


  1. Posts : 5,707
    insider build 10586.3 win10 pro 64
       #781

    I don't use mine enough to notice something like that .but will keep it in mind for when i do get it hooked up and use it more regular ....
    alphanumeric said:
    I've been trying something out on my Pirate Radio. I was having an issue where it wouldn't always remember what channel it was last on after shutting down and starting up again. And more often than not I had to press the next of back button to start it actually playing. I went into the Raspbian configuration settings and checked the box for "wait for network". Now its keeping my channel and starting on its own. So far anyway. I've only booted it up maybe 3 times since changing the setting. Its a definite improvement over how it was working though. Be advised though, that I don't know what happens if your WIFI goes down. Really long delay in booting up I would imagine. I would think it will still eventually give you the command line and or desktop? I haven't tested it though?
    I leave mine with the power supply always plugged in. I do the shut down with the pHat Beat button and just leave it plugged in. I have another button wired to the run terminals I push to boot it up again when I want to listen to my classic rock radio.
      My Computer


  2. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #782

    caperjack said:
    I don't use mine enough to notice something like that .but will keep it in mind for when i do get it hooked up and use it more regular ....
    It was something that kind of annoyed me. I'd know from the songs played it wasn't Classic Rock 109. Just didn't know what channel it was? I'd have to listen for them to ID themselves and then do a channel up down to get back to Classic Rock 109. I have a printout of my playlist sitting right in front of my Pirate Radio. I toyed with editing my playlist to just the one station but every once in a while I do listen to some of the others. I also think having to hit the up down button to start it was changing the channel on me sometimes. Anyway, we'll see how it goes. My next mod may be adding a small display that's shows the channel and the song playing.
      My Computer


  3. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #783

    My Pimoroni order arrived. Did a quick boot up of my 3B+ to make sure it works. Then got my soldering iron out and removed that POE header that I will never use on this Pi. Still had a lot of modifications to do to my Pibow Midnight Eclipse case to get the 3B+ to fit in it. I bought a Pibow Ninja Coupe for the 3B+ hoping it would be that same black color buts not an exact match. I was going to just swap the one layer into my Midnight Eclipse. Didn't work out that way though. I only hade to trim out that one layer with all the weird zigs and zags in it. The top one that I had already cut for the heatsink lined up perfectly. The locking bars on the CSI and DSI ZIF connectors are black on this Pi and will look better. The ones on the 3B were white. Now I just have to go find my camera and take a pic before I remount it.

    The Raspberry Pi Thread [4]-dscf1079m.jpg
      My Computer


  4. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #784

    Got it all mounted and hooked up in my bread board rig. Pi foundation screen works, WIFI is working on my 5G channel. USB is good as far as I can tell, keyboard works. Will have to test the camera when I get a chance. And the sound I guess. The suns finally come out so maybe latter on if it worms up I'll take it out on my beck and put it through its passes.

    . Anybody want to buy a Pibow Ninja coupe case for a 3B+ https://shop.pimoroni.com/products/p...ry-pi-3-b-plus :) Brand new but not in its original packaging lol

    Scratch that, from the description it looks like it will fit my 3B so maybe I better hang on to it.
      My Computer


  5. Posts : 5,707
    insider build 10586.3 win10 pro 64
       #785

    I have at least 2 ,maybe 3 unused cases
    alphanumeric said:
    Got it all mounted and hooked up in my bread board rig. Pi foundation screen works, WIFI is working on my 5G channel. USB is good as far as I can tell, keyboard works. Will have to test the camera when I get a chance. And the sound I guess. The suns finally come out so maybe latter on if it worms up I'll take it out on my beck and put it through its passes.

    . Anybody want to buy a Pibow Ninja coupe case for a 3B+ https://shop.pimoroni.com/products/p...ry-pi-3-b-plus :) Brand new but not in its original packaging lol

    Scratch that, from the description it looks like it will fit my 3B so maybe I better hang on to it.
      My Computer


  6. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #786

    Wired up my BME680 to my portable weather clock. Took me a little while to get my python code working. The examples on the Pimoroni GitHub site didn't really work all that well for me. They might have if I knew a little more Python to sort out what they were trying to display. In the end simplifying them worked. Stuff like this
    Code:
      output = "{0:.2f} C,{1:.2f} hPa,{2:.2f} %RH".format(sensor.data.temperature, sensor.data.pressure, sensor.data.humidity)
    had me
    But I split it up and simplified so as an example, this worked for the temp
    Code:
      if sensor.get_sensor_data(): 
           t = (sensor.data.temperature) 
           t = (round(t))
    I was a while getting there though. I still have no idea what the "{0:.2f} " etc stuff does, except give me all kinds or weird errors I've never seen before lol.
      My Computer


  7. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #787

    caperjack said:
    I have at least 2 ,maybe 3 unused cases
    I have one Pibow for an A+ unused and that's about it. If the 3A is ever released an A+ will go back into it when I swap it out for the 3A+.
      My Computer


  8. Posts : 5,707
    insider build 10586.3 win10 pro 64
       #788

    i actually only have one un-used case ,I for got i had recently put a Pi3 into my KODI aluminum case,[it looks pretty sitting on the shelf ]..i have this one that came with a canakit bundle . it has a few cracks inside form removing the Pi ,its a weird case inside ,has a built in camera mount .that views out through the Raspberry emblem
    Raspberry Pi Case - Premium Black (High-Gloss)
      My Computer


  9. Posts : 5,707
    insider build 10586.3 win10 pro 64
       #789

    I dont fully understand the English language ,defiantly don't under stand Python ,LOL
    alphanumeric said:
    Wired up my BME680 to my portable weather clock. Took me a little while to get my python code working. The examples on the Pimoroni GitHub site didn't really work all that well for me. They might have if I knew a little more Python to sort out what they were trying to display. In the end simplifying them worked. Stuff like this
    Code:
      output = "{0:.2f} C,{1:.2f} hPa,{2:.2f} %RH".format(sensor.data.temperature, sensor.data.pressure, sensor.data.humidity)
    had me
    But I split it up and simplified so as an example, this worked for the temp
    Code:
      if sensor.get_sensor_data(): 
           t = (sensor.data.temperature) 
           t = (round(t))
    I was a while getting there though. I still have no idea what the "{0:.2f} " etc stuff does, except give me all kinds or weird errors I've never seen before lol.
      My Computer


  10. Posts : 15,037
    Windows 10 IoT
    Thread Starter
       #790

    It's working so I'm happy, and I didn't lose any functionality in the process. All my colored text works and auto dimming etc. Next mod will be to replace the sense hat with a Unicorn Hat HD. The only thing I'm using on it, in my portable weather clock is the LED matrix. And I guess the joystick? I'd have to take the front cover off to get at it so its not really used now.


    My Pirate Radio is starting up on Classic Rock 109 every time now, and playing on its own. All I have to do is press the RUN button, a wait a little bit for it to boot up. The "wait for network" option was the fix.=)
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 00:28.
Find Us




Windows 10 Forums