This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <SoftwareSerial.h> | |
| #include <ArduinoJson.h> | |
| #include <DHT.h> | |
| SoftwareSerial BTserial(10, 11); // RX | TX | |
| StaticJsonBuffer<200> jsonBuffer; | |
| int sensorPin = A0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " YADR for NEOVIM | |
| " please keep it separate if you want cleaner code | |
| " ========= PLUGINS ======== | |
| call plug#begin('~/.config/nvim/plugged') | |
| Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' } | |
| Plug 'junegunn/fzf.vim' | |
| Plug 'rking/ag.vim' | |
| Plug 'scrooloose/nerdtree', { 'on': 'NERDTreeToggle' } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using HSUProj.Helpers; | |
| using HSUProj.Models; | |
| using HSUProj.ViewModels; | |
| using Microsoft.AspNetCore.Http; | |
| using Microsoft.AspNetCore.Mvc; | |
| using Microsoft.EntityFrameworkCore; |