Goodbye


Closed Thread
Results 1 to 40 of 80

Thread: Goodbye

Hybrid View

  1. #1
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,821


    Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Long time Robert! Everything OK?

    Ioannis
    Last edited by Ioannis; - 29th March 2023 at 14:06.

  2. #2
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    2,623


    1 out of 1 members found this post helpful. Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Just getting old. Getting my neurons back in action. Can't find my U2 USB programmer, so had to get a PICkit4. I'm also getting back into flight simming, so my first PBP project is an instrument panel for all the buttons, switches and dials, starting with the Cessna 152. I hate using a keyboard, especially in flight sim. this is a layout of what I'm planning. Nothing fancy, no LCDs or lights, just using joystick button USB feature.



    I finally got a really nice graphics card, I'm running MSFS 2020 maxxed out on 6 screens (3x22" and 3x19", will have to lower res a bit online). Now I just have to make a decent workspace beside my PC. Sitting at 24R in Montreal in the Cessna 152.


  3. #3
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    2,623


    1 out of 1 members found this post helpful. Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Now this is the really cool part. That previous pic is taken from the "workstation" side of my desk. All 6 monitors rotate 180deg on a swivel towards the "gaming" side. Was lucky to get a set of like-new Acura RSX seats for cheap. My longterm plan is a 2-seat flight-sim arrangement.



    That elongated black box on the swivel arm is a UPS. All components run through it, trying to save them from power surges (just got a few while I was typing my prev post). The UPS also serves as a counterweight, the monitors are several inches in from of center of rotation (those two triple supports are not lightweight either).

    Robert
    Last edited by Demon; - 1st April 2023 at 01:19.

  4. #4
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,821


    Did you find this post helpful? Yes | No

    Default Re: Goodbye

    I can only say... WOW!

    Very nice. Wish you happy flights!

    Ioannis

  5. #5
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    2,623


    Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Right now I'd be happy getting a clean compile in MPLAB-X for a 16F877 on a LAB X-1 board. I pulled this code from one of my old folders, I assume something is no longer supported, or I forgot to include some library or some such (I added the blockchain using that youtube video).

    Code:
    ADCON1 = 7              ' A/D off, all digital
    ASM
    @ DEVICE PIC16F877, HS_OSC, WDT_OFF, PWRT_ON, BOD_ON, LVP_OFF, CPD_OFF, WRT_OFF, DEBUG_OFF, PROTECT_OFF
    ENDASM
    
    DEFINE  OSC     20
    
    
    LED7    VAR     PortD.7
    LED6    VAR     PortD.6
    LED5    VAR     PortD.5
    LED4    VAR     PortD.4
    LED3    VAR     PortD.3
    LED2    VAR     PortD.2
    LED1    VAR     PortD.1
    LED0    VAR     PortD.0
    
            TRISD.7 = 0
            TRISD.6 = 0
            TRISD.5 = 0
            TRISD.4 = 0
            TRISD.3 = 0
            TRISD.2 = 0
            TRISD.1 = 0
            TRISD.0 = 0
    
            LOW LED7
            LOW LED6
            LOW LED5
            LOW LED4
            LOW LED3
            LOW LED2
            LOW LED1
            LOW LED0
    
    START:  HIGH    LED7
            PAUSE   500
            LOW     LED7
            HIGH    LED6
            PAUSE   500
            LOW     LED6
            HIGH    LED5
            PAUSE   500
            LOW     LED5
            HIGH    LED4
            PAUSE   500
            LOW     LED4
            HIGH    LED3
            PAUSE   500
            LOW     LED3
            HIGH    LED2
            PAUSE   500
            LOW     LED2
            HIGH    LED1
            PAUSE   500
            LOW     LED1
            HIGH    LED0
            PAUSE   500
            LOW     LED0
            GOTO    START
    Finish: end
    I'm guessing that ASM statement is probably no longer good; got some reading to do. MPLAB-X error messages remind me of IBM manuals.
    My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.

    Not as dumb as yesterday, but stupider than tomorrow!

  6. #6
    Join Date
    Nov 2003
    Location
    Greece
    Posts
    3,821


    Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Is this correct? I do not use the MLABX IDE so maybe I am wrong.

    Code:
    ASM
    @ DEVICE PIC16F877, HS_OSC, WDT_OFF, PWRT_ON, BOD_ON, LVP_OFF, CPD_OFF, WRT_OFF, DEBUG_OFF, PROTECT_OFF
    ENDASM
    Ioannis

  7. #7
    Join Date
    Jan 2005
    Location
    Montreal, Quebec, Canada
    Posts
    2,623


    Did you find this post helpful? Yes | No

    Default Re: Goodbye

    Quote Originally Posted by Ioannis View Post
    Is this correct? I do not use the MLABX IDE so maybe I am wrong.
    Ioannis
    Yeah, that's wrong. MPASM is no longer supported by MPLAB X.
    Last edited by Demon; - 4th April 2023 at 15:56.
    My Creality Ender 3 S1 Plus is a giant paperweight that can't even be used as a boat anchor, cause I'd be fined for polluting our waterways with electronic devices.

    Not as dumb as yesterday, but stupider than tomorrow!

Members who have read this thread : 2

You do not have permission to view the list of names.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts