How to debug Magento 2 code with one file?

You can debug a lot of Magento 2 functions/logic with the help of only one script!
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);

use Magento\Framework\App\Bootstrap;

require 'app/bootstrap.php';

$bootstrap = Bootstrap::create(BP, $_SERVER);
$objectManager = $bootstrap->getObjectManager();
$state = $objectManager->get(Magento\Framework\App\State::class);
$state->setAreaCode(\Magento\Framework\App\Area::AREA_FRONTEND);
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();

/** @var Magento\Store\Model\App\Emulation $emulation */
$emulation = $objectManager->create('Magento\Store\Model\App\Emulation');
$emulation->startEnvironmentEmulation(1, \Magento\Framework\App\Area::AREA_FRONTEND, true);

foreach (range(1, 1) as $shipId) {

    /** @var Magento\Sales\Model\ResourceModel\Order\Shipment\Collection $shipmentCollection */
    $shipmentCollection = $objectManager->get(\Magento\Sales\Model\ResourceModel\Order\Shipment\Collection::class);
    /** @var Magento\Sales\Model\Order\Shipment $shipment */
    $shipment = $shipmentCollection->getItemById($shipId);

//$shipment->setSendEmail(1);

    /** @var Magento\Sales\Model\Order\Email\Sender\ShipmentSender $sender */
    $sender = $objectManager->get(Magento\Sales\Model\Order\Email\Sender\ShipmentSender::class);
    $sender->send($shipment);

    /** @var \Magento\Sales\Model\ResourceModel\Order\Collection $orderCollection */
    $orderCollection = $objectManager->get(\Magento\Sales\Model\ResourceModel\Order\Collection::class);
    /** @var Magento\Sales\Model\Order\Email\Sender\OrderSender $sender */
    $sender = $objectManager->get(Magento\Sales\Model\Order\Email\Sender\OrderSender::class);
//$order=$orderCollection->getItemById(26);
//$sender->send($shipment->getOrder());
//print_r($order->debug());
//echo "\n".$order->getCustomerEmail();

}

$emulation->stopEnvironmentEmulation();
echo "Done";

Controlling Vivitek projector via Arduino Part 1 (decoding)

I has situation when 3 Vivitek’s RC remote controls doesn’t work. So I decided to make my own IR remote control.

Remote uses NEC protocol. Arduino uses IRremote library. I have wired TSOP receiver to the Arduino and dumped some codes.

Here are the commands:

Power on/off

Protocol=NEC Address=0x31 Command=0x81 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x81 Repeat gap=94500us

Menu

Protocol=NEC Address=0x31 Command=0x87 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x87 Repeat gap=94500us

Up

Protocol=NEC Address=0x31 Command=0xC1 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0xC1 Repeat gap=94400us

Down

Protocol=NEC Address=0x31 Command=0xC2 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0xC2 Repeat gap=94450us

Left

Protocol=NEC Address=0x31 Command=0xC3 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0xC3 Repeat gap=94450us

Right

Protocol=NEC Address=0x31 Command=0xC4 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0xC4 Repeat gap=94450us

Enter (Ok)

Protocol=NEC Address=0x31 Command=0xC5 Repeat gap=94500us

Protocol=NEC Address=0x31 Command=0xC5 Repeat gap=94500us

Keystone 1

Protocol=NEC Address=0x31 Command=0x85 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x85 Repeat gap=94500us

Keystone 2

Protocol=NEC Address=0x31 Command=0x84 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x84 Repeat gap=94400us

Source

Protocol=NEC Address=0x31 Command=0x83 Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x83 Repeat gap=94450us

Auto

Protocol=NEC Address=0x31 Command=0x86 Repeat gap=94500us

Protocol=NEC Address=0x31 Command=0x86 Repeat gap=94500us

Mute

Protocol=NEC Address=0x31 Command=0x89 Repeat gap=94500us

Protocol=NEC Address=0x31 Command=0x89 Repeat gap=94450us

Freeze

Protocol=NEC Address=0x31 Command=0x8E Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x8E Repeat gap=94500us

Plus

Protocol=NEC Address=0x31 Command=0x8C Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x8C Repeat gap=94450us

Minus

Protocol=NEC Address=0x31 Command=0x8F Repeat gap=94450us

Protocol=NEC Address=0x31 Command=0x8F Repeat gap=94450us

Watch for other parts…to be continued