Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Need some inspiration, a solution in search of a problem

Need some inspiration, a solution in search of a problem

Scheduled Pinned Locked Moved The Lounge
designcsharpcomgraphicsiot
12 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H Offline
    H Offline
    honey the codewitch
    wrote on last edited by
    #1

    I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

    Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

    P K E L Richard Andrew x64R 7 Replies Last reply
    0
    • H honey the codewitch

      I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

      Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

      P Offline
      P Offline
      PIEBALDconsult
      wrote on last edited by
      #2

      Does it work when there are multiple Explorer windows?

      H 1 Reply Last reply
      0
      • P PIEBALDconsult

        Does it work when there are multiple Explorer windows?

        H Offline
        H Offline
        honey the codewitch
        wrote on last edited by
        #3

        It deals with whichever windows thinks is the most current. I can grab all of them but the thing is that I can't really display much info in the case of multiple files on one of these little screens.

        Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

        1 Reply Last reply
        0
        • H honey the codewitch

          I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

          Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

          K Offline
          K Offline
          Kenneth Haugland
          wrote on last edited by
          #4

          honey the codewitch wrote:

          shoots it to a little IoT widget

          Sounds like the making of an aimbot :laugh:

          1 Reply Last reply
          0
          • H honey the codewitch

            I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

            Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

            E Offline
            E Offline
            englebart
            wrote on last edited by
            #5

            Add a mapping layer in the C# code so that certain file extensions/matches deposit to different locations in the IoT file system. Generic regex rules. Add a debug option that displays the transfers that would occur. Demo app for the device could be a rotating photo display.

            H 1 Reply Last reply
            0
            • E englebart

              Add a mapping layer in the C# code so that certain file extensions/matches deposit to different locations in the IoT file system. Generic regex rules. Add a debug option that displays the transfers that would occur. Demo app for the device could be a rotating photo display.

              H Offline
              H Offline
              honey the codewitch
              wrote on last edited by
              #6

              There is no filesystem on the widget, but there is an SD card writer. Problem is transmitting over CDC USB Serial and then over 1 wire SPI to the SD card will be dog slow, so it's not much of an option as a "fancy jump drive with a screen" rotating photo thing is what i think ships with the stock firmware for the device I'm currently using. :laugh: I think I'd like to cover new ground. I mean, i can show file content previews of the currently selected file in explorer potentially but to what end?

              Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

              E 1 Reply Last reply
              0
              • H honey the codewitch

                There is no filesystem on the widget, but there is an SD card writer. Problem is transmitting over CDC USB Serial and then over 1 wire SPI to the SD card will be dog slow, so it's not much of an option as a "fancy jump drive with a screen" rotating photo thing is what i think ships with the stock firmware for the device I'm currently using. :laugh: I think I'd like to cover new ground. I mean, i can show file content previews of the currently selected file in explorer potentially but to what end?

                Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

                E Offline
                E Offline
                englebart
                wrote on last edited by
                #7

                If the transfer is slow, then creating a batchable transfer might be useful. Setup a batch, then go eat your lunch. Without the IoT, I have utilities that convert selected items to text lists in files and the clip board via Windows SendTo folder. It is a much simpler technique. Didn’t you do some work with ZIP formats? Fonts? SVG? Combine this? Good luck figuring it out. Maybe adapt it for a different target device?

                1 Reply Last reply
                0
                • H honey the codewitch

                  I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

                  Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #8

                  If you're showing "file atributes", I'd expect to see the file size (KB) and the last modified date also. From there you go to: create date; image dimensions; size of file vs size on disk; etc. A "file attribute" popup.

                  "Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I

                  1 Reply Last reply
                  0
                  • H honey the codewitch

                    I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

                    Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

                    Richard Andrew x64R Offline
                    Richard Andrew x64R Offline
                    Richard Andrew x64
                    wrote on last edited by
                    #9

                    Hey, I think it would be very useful if it calculated the MD5 hash. And if it's an executable file, if it told whether the file is a 32-bit or a 64-bit executable, that would also be useful.

                    The difficult we do right away... ...the impossible takes slightly longer.

                    1 Reply Last reply
                    0
                    • H honey the codewitch

                      I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

                      Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

                      A Offline
                      A Offline
                      Amarnath S
                      wrote on last edited by
                      #10

                      The app should just read the filename and do it. For example: Filename: WakeUp.txt - the IoT should activate a soft velvet fan to sway on the head, with a soft music, for waking up gently from bed. Filename: Sleep.txt - the IoT should switch off all the lights in the house, and more importantly, switch off the internet router (don't want notification disturbances when I'm sleeping), for the night (and switch on at say, 6 am). Additional functionality needed for the above - is a kind of cron job. And something more than just an LCD screen. And so on for the daily chores. What others?

                      D 1 Reply Last reply
                      0
                      • A Amarnath S

                        The app should just read the filename and do it. For example: Filename: WakeUp.txt - the IoT should activate a soft velvet fan to sway on the head, with a soft music, for waking up gently from bed. Filename: Sleep.txt - the IoT should switch off all the lights in the house, and more importantly, switch off the internet router (don't want notification disturbances when I'm sleeping), for the night (and switch on at say, 6 am). Additional functionality needed for the above - is a kind of cron job. And something more than just an LCD screen. And so on for the daily chores. What others?

                        D Offline
                        D Offline
                        David ONeil
                        wrote on last edited by
                        #11

                        As a slight modification to this idea, make the IOT device configurable to look in a specific subdirectory rather than the currently selected file in Explorer, and give it the ability to recurse the files in it. Each file may be a separate XML or other data structure, that tells the IOT device to do things it is capable of. Kind of like .BAT files of the past.

                        Our Forgotten Astronomy | Object Oriented Programming with C++ | Wordle solver

                        1 Reply Last reply
                        0
                        • H honey the codewitch

                          I've made a little C# app that detects the currently selected file in Windows explorer, and shoots it to a little IoT widget with an attached LCD screen. Right now, it's just the filename and icon, but I can add whatever - a content preview or something. The trouble is, it's not very useful. It's at best, a novelty, but maybe there's an angle I hadn't considered - some tweak I could do to it to *make* it useful. Any of you have ideas?

                          Check out my IoT graphics library here: https://honeythecodewitch.com/gfx And my IoT UI/User Experience library here: https://honeythecodewitch.com/uix

                          J Offline
                          J Offline
                          jschell
                          wrote on last edited by
                          #12

                          honey the codewitch wrote:

                          Any of you have ideas?

                          lol.... Classroom. Every students computer has the tiny display facing the teacher. So the teacher can make sure they are messing with what they should be and staying away from what they shouldn't. Consider it as the teacher wanders around the room aimlessly.

                          1 Reply Last reply
                          0
                          Reply
                          • Reply as topic
                          Log in to reply
                          • Oldest to Newest
                          • Newest to Oldest
                          • Most Votes


                          • Login

                          • Don't have an account? Register

                          • Login or register to search.
                          • First post
                            Last post
                          0
                          • Categories
                          • Recent
                          • Tags
                          • Popular
                          • World
                          • Users
                          • Groups