Skip to content
View mikaelleven's full-sized avatar

Organizations

@Perpello

Block or report mikaelleven

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
mikaelleven/README.md
  • 👋 Hi, I’m @mikaelleven
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

Pinned Loading

  1. Apple-Keyboard-for-Windows Apple-Keyboard-for-Windows Public

    AKfoW is a AutoHotKey script that makes a Apple keyboard optimized on your Windows computer

    AutoHotkey 2

  2. Get-Me-Ready Get-Me-Ready Public

    Automate the process of setting up your computer

    HTML

  3. NodeJS loopback example for troubles... NodeJS loopback example for troubleshooting SPI communication on Raspberry Pi GPIO
    1
    var rpio = require('rpio');
    2
    
                  
    3
    var rxBuffer = rpio.spiTransfer(new Buffer('HELLOSPI'), 8);
    4
    
                  
    5
    for (var i = 0; i <= 7; i++) {    
  4. NodeJS example using SPI communicati... NodeJS example using SPI communication to retrieve analog data through MCP3008 and Raspberry Pi
    1
    var rpio = require('rpio');
    2
    
                  
    3
    rpio.spiBegin();
    4
    //rpio.spiChipSelect(0);				/* Chip select: use CE0 (default) */
    5
    //rpio.spiSetCSPolarity(0, rpio.LOW)	/* Commonly chip enable (CE) pins are active low, and this is the default. */
  5. Script to automagically enable SSH l... Script to automagically enable SSH login through RSA key for the current user on a remote machine
    1
    #!/bin/bash
    2
    
                  
    3
    ###############################################################################
    4
    # ALLOW-SSH SCRIPT                                                            #
    5
    # Author: Mikael Levén                                                        #