Skip to content

pines-and-electronics/pines_project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Pines and Electronics

Components

1) Blockchain smart contract (the DAO)

Running in Rinkeby Ethereum testnet

Is a very simple event echo:

contract CarController {
    event CarCommandSent(
        string _command
    );

    function sendCommand (string memory _command)
        public
        returns (bool commandSent)
    {

        emit CarCommandSent(
            _command
        );

        return true;
    }

}

2) DAPP frontent

Running in a laptop

Has following buttons:

  • Joystick
    • sendCommand()
  • Snapshot
    • sendCommand()

3) Command listener

Running in laptop

Command listener listens to the following strings:

  • 'status'
  • 'snap'
  • 'register'
  • 'snapshot'
  • 'linear'
  • 'steer'

Proof of concept

1) DAPP

  1. User will click on the joystick, and send a string to the

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published