Adish
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    # Fill The Board Game using Arduino ## Materials Required * 8x8 Neopixel LED boards * 1602A LCD Display 16x2 * Arduino uno board * Ten Pin Momentary Push Button (12x12x7.3mm) * Jumper wires * Breadboard * PCB * Multimeter * Resistors and Potentiometer * Switches * Bluetooth chips (optional) * Analog joystick (optional) ## Tools Required * Soldering Iron * Glue gun * Paper cutters and Scissors * Plier ## Software Required * Arduino IDE (linux or windows) ## Arduino + Neopixel ### Circuit Diagram ![](https://i.imgur.com/xfqdrcm.png) ## Getting started with adafruit neopixel https://www.instructables.com/Getting-Started-With-NeoPixle-WS2812-RGB-LED/ ### Adafruit Library installation: https://learn.adafruit.com/adafruit-neopixel-uberguide/arduino-library-installation * via the Library Manager interface. From the Sketch menu, > Include Library > Manage Libraries... In the text input box type in "NeoPixel". * Look for "Adafruit NeoPixel by Adafruit" and select the latest version by clicking on the popup menu next to the Install button. Then click on the Install button. * After it's installed, you can click the "close" button. ## Understanding the Code Libraries required: * Adafruit_Neopixel * LedControl.h * avr/pgmspace.h Global variables: You'll first set up some global variables for the pins your LED will connect to. This will make it easier to differentiate which one is red, green, and blue in the main part of your program Setup: The setup() function is called when a sketch starts. Use it to initialize variables, pin modes, start using libraries, etc. The setup() function will only run once, after each powerup or reset of the Arduino board. Functions: * Serial Used for communication between the Arduino board and a computer or other devices. * PinMode configure the pins as outputs in setup() eg: pinMode(redPin, OUTPUT); pinMode(greenPin, OUTPUT); pinMode(bluePin, OUTPUT); #### Progmem Store data in flash (program) memory instead of SRAM. ### Serial Communication: Serial communication is the process of sending one bit of data at a time sequentially from one place to another. The serial library has functions like serial begin, read, available, parseInt, parseString, parseFloat, print, etc. The serial receive buffer can hold 64 bytes. The data you send from your computer to your Arduino will end up in the serial receive buffer. **Serial.read** is a function of the Arduino Serial Library and what it does is read out the first available byte from the serial receive buffer. We can use the available function to check how many bytes are available to be read in the serial receive buffer. **Serial.available** will return the number of bytes currently stored in the serial receive buffer. Using Serial.parseInt() to separate the data by commas, read the information into your variables eg: int red = Serial.parseInt(); int green = Serial.parseInt(); int blue = Serial.parseInt(); Loop: The loop() function does precisely what its name suggests, and loops consecutively, allowing your program to change and respond. Use it to actively control the Arduino board. Arduino pull-up function: pull-up means the pushbutton's logic is inverted. It goes HIGH when it's open, and LOW when it's pressed. ### References: https://www.arduino.cc/reference/en/ https://www.arduino.cc/reference/en/language/variables/utilities/progmem/ https://docs.arduino.cc/built-in-examples/communication/ReadASCIIString https://docs.arduino.cc/built-in-examples/digital/InputPullupSerial ## Toy models In order to understand working of neopixel board and address position $(i,j)$ of each LED, we initially work with few toy models. ### Moving coloured dot on display using switch We will use letters (a,d,w,s) as keyboard inputsto move left, right, up, and down. This way we are able to control position of a dot(object). Plan: We can then extend this to longer objects (size=2,3, or 4 ships). We will also use an additional keyboard input to lock the object. We will add a constaint to avoid overlap of objects. ![](https://i.imgur.com/qHtxmhR.jpg =400x) ### Code: ```clike= #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif int pin = 2; int numPixels = 64; int pixelFormat = NEO_GRB + NEO_KHZ800; int x; Adafruit_NeoPixel *pixels; void setup() { #if defined(__AVR_ATtiny85__) && (F_CPU == 16000000) clock_prescale_set(clock_div_1); #endif pixels = new Adafruit_NeoPixel(numPixels, pin, pixelFormat); pixels->begin(); pixels->clear(); pixels->setBrightness(10); Serial.begin(9600); x = 0; } void loop() { char y; y = Serial.read(); //pixels->clear(); pixels->setPixelColor(x, pixels->Color(0, 0, 255)); if(y == 'd'){ if((x+1)%8 == 0){ x = x-7; } else{ x =x+1 ; } } if(y == 'a'){ if((x)%8 == 0){ x = x +7; } else{ x = x-1; }} if(y == 's'){ x = (x+8)%64; } if(y == 'w'){ if ((x%64)>7){ x = (x-8)%64;} else{ x = (56+x)%64; } } pixels->show(); } ``` ## Console Day 2: A console consists of five switches (up, down, left, right, enter). We will use a breadboard to implant the switches. ![](https://i.imgur.com/b21aDKs.jpg =300x) ![](https://i.imgur.com/stHZXH6.jpg =300x) ### Precautions: * Place switches such that they do not short. You may use a multimeter for this. * Provide necessary grounding. ### Code: ```clike= const int UP_PIN = 10; const int DOWN_PIN = 8; const int LEFT_PIN = 9; const int RIGHT_PIN = 11; // const int ENTER_PIN = 3; // const int LED_PIN = 2; void setup(){ pinMode( UP_PIN, INPUT ); pinMode( DOWN_PIN, INPUT ); pinMode( LEFT_PIN, INPUT ); pinMode( RIGHT_PIN, INPUT ); Serial.begin( 9600 ); } void loop(){ int value_u,value_d,value_l,value_r; value_u = digitalRead( UP_PIN ); value_d = digitalRead( DOWN_PIN ); value_l = digitalRead( LEFT_PIN ); value_r = digitalRead( RIGHT_PIN ); // To see if switches are actually working Serial.println( value_u + value_d + value_l + value_r ); delay(10); } ``` Day 3: Trying to simulate console using Tinkercad. ![](https://i.imgur.com/Rj8Wkeu.png =600x) #### Code: ``` clike= #include <LiquidCrystal.h> const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); int enter = 6, right = 7, left = 10, up = 8, down=9; int enterstate = 1, rightstate = 0, leftstate = 0, upstate = 0, downstate=0; void setup() { lcd.begin(16, 2); Serial.begin(9600); lcd.setCursor(0,0); lcd.print("Press Enter"); lcd.setCursor(0,1); lcd.print("to Start"); delay(1000); pinMode(enter, INPUT); pinMode(right, INPUT); pinMode(left, INPUT); pinMode(up, INPUT); pinMode(down , INPUT); digitalWrite(enter,HIGH); digitalWrite(right,HIGH); digitalWrite(left,HIGH); digitalWrite(up,HIGH); digitalWrite(down,HIGH); } void loop() { rightstate=digitalRead(right); leftstate=digitalRead(left); upstate=digitalRead(up); downstate=digitalRead(down); enterstate=digitalRead(enter); if (enterstate == LOW) { lcd.clear(); lcd.setCursor(0, 0); lcd.print("Hello, "); // to test enter button lcd.setCursor(0,1); lcd.print("pls wait"); delay(2000); lcd.clear(); lcd.setCursor(0, 0); } if (rightstate == LOW) { lcd.print("right "); // replace this with variable of LED screen delay(100); lcd.clear(); lcd.setCursor(0, 0); } if (leftstate == LOW) { lcd.print("left "); // replace this with variable of LED screen delay(100); lcd.clear(); lcd.setCursor(0, 0); } if (upstate == LOW) { lcd.print("up "); // replace this with variable of LED screen delay(100); lcd.clear(); lcd.setCursor(0, 0); } if (downstate == LOW) { lcd.print("down "); // replace this with variable of LED screen delay(100); lcd.clear(); lcd.setCursor(0, 0); } Serial.println(enterstate); } ``` Serial plotter on topright corner of IDE can be used to visualise output series ![](https://i.imgur.com/4ozM2je.png) **References:** https://www.deviceplus.com/arduino/the-basics-of-arduino-reading-switch-states/ https://create.arduino.cc/projecthub/Alojz/arduino-pocket-game-console-a-maze-maze-game-63c225 ## LCD Interface 16x2 LCD 1602A module can be used as the interface to display messages regarding game to the user. ### Libraries used: * LiquidCrystal Library - Will available in Arduino IDE by default - For the first method. ### Pin description: ![](https://i.imgur.com/6qJjJnq.png) ### Circuit: ![](https://i.imgur.com/dfWxfxt.png) ### Code (Example): ``` clike= #include <LiquidCrystal.h> const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); void setup() { lcd.begin(16, 2); lcd.print("First line"); lcd.setCursor(0,1); lcd.print("Second line"); } void loop() { } ``` ## FILL THE BOARD GAME WITH CONSOLE ### Game: ![game|512x397, 20%](https://i.imgur.com/b4ZNP01.png =400x) Here green colour represent the point which can be moved using controls. Red and majenta colours represent player 1 and 2. White colour represent occupied/locked space. ![](https://i.imgur.com/v2iNHVr.png) ### Code (with keyboad): ```clike = #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif int pin = 2; int numPixels = 64; int pixelFormat = NEO_GRB + NEO_KHZ800; int x; int x2; int g[64] = {}; int b[64] = {}; int y[250] = {}; int k = 0; int j = 0 ; int l = 0; int i; int m = 0; int n =0; int h; int o =0; Adafruit_NeoPixel *pixels; void setup() { #if defined(__AVR_ATtiny85__) && (F_CPU == 16000000) clock_prescale_set(clock_div_1); #endif pixels = new Adafruit_NeoPixel(numPixels, pin, pixelFormat); pixels->begin(); pixels->clear(); pixels->setBrightness(2); Serial.begin(9600); x = 0; x2 = -1; int green = pixels->Color(0,255,0); int red = pixels->Color(255,0,0); int blue = pixels->Color(0,0,255); int no = pixels->Color(0,0,0); } void loop() { char s; s = Serial.read(); pixels->setPixelColor(x, pixels->Color(0,255,0)); for(n=0;n<250;n++) { pixels->setPixelColor(y[n], pixels->Color(198,198,198)); } for(k=0;k<64;k++) { pixels->setPixelColor(b[k], pixels->Color(102,0,102)); } for(i=0;i<64;i++) { pixels->setPixelColor(g[i], pixels->Color(255,0,0)); } pixels->setPixelColor(0,pixels->Color(198,198,198)); if(s == 'd'){ pixels->setPixelColor(x,(0,0,0)); if((x+1)%8 == 0){ x = x-7; } else{ x =x+1 ; } } if(s == 'a'){ pixels->setPixelColor(x,(0,0,0)); if((x)%8 == 0){ x = x +7; } else{ x = x-1; }} if(s == 's'){ pixels->setPixelColor(x,(0,0,0)); x = (x+8)%64; } if(s == 'w'){pixels->setPixelColor(x,(0,0,0)); if ((x%64)>7){ x = (x-8)%64;} else{ x = (56+x)%64; } } if(s == 'g'){ if (o%2 == 0){ g[j] = x; j = j+1; o = o+1; } else if(o%2 == 1){ b[l] = x; l = l+1; o = o+1; } if((x+1) % 8 == 0){ y[m]=x-1; y[m+1] = x+7; y[m+2] = x+8; y[m+4] = x-9; y[m+3] = x-8; m = m+5; } else if ((x)%8 == 0){ y[m+1] = x+1; y[m+2] = x+8; y[m] = x+9; y[m+4] = x-7; y[m+3] = x-8; m = m+5; } else{ y[m]=x-1; y[m+1] = x+1; y[m+2] = x+8; y[m+3] = x-8; y[m+4] = x+7; y[m+5] = x+9; y[m+6] = x-7; y[m+7] = x-9; m = m+8; } } pixels->show(); } ``` ### Code (with console): ```clike= #include <Adafruit_NeoPixel.h> #ifdef __AVR__ #include <avr/power.h> #endif #include <LiquidCrystal.h> const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2; LiquidCrystal lcd(rs, en, d4, d5, d6, d7); int enter = 6, right = 7, left = 10, up = 8, down=9; int enterstate = 1, rightstate = 0, leftstate = 0, upstate = 0, downstate=0; int pin = 13; int numPixels = 64; int pixelFormat = NEO_GRB + NEO_KHZ800; int x; int g[64] = {}; int b[64] = {}; int y[250] = {}; int k = 0, j = 0, l = 0, i = 0, m = 0, n =0, o = 0, h = 0; Adafruit_NeoPixel *pixels; void setup() { #if defined(__AVR_ATtiny85__) && (F_CPU == 16000000) clock_prescale_set(clock_div_1); #endif pixels = new Adafruit_NeoPixel(numPixels, pin, pixelFormat); pixels->begin(); pixels->clear(); pixels->setBrightness(2); Serial.begin(9600); x = 0; lcd.begin(16, 2); lcd.setCursor(0,0); lcd.print("Press Enter"); lcd.setCursor(0,1); lcd.print("to Start"); delay(1000); pinMode(enter, INPUT); pinMode(right, INPUT); pinMode(left, INPUT); pinMode(up, INPUT); pinMode(down , INPUT); digitalWrite(enter,HIGH); digitalWrite(right,HIGH); digitalWrite(left,HIGH); digitalWrite(up,HIGH); digitalWrite(down,HIGH); } void loop() { rightstate = digitalRead(right); leftstate = digitalRead(left); upstate = digitalRead(up); downstate = digitalRead(down); enterstate = digitalRead(enter); char s; s = Serial.read(); for(n=0;n<250;n++) { pixels->setPixelColor(y[n], pixels->Color(198,198,198));} for(k=0;k<64;k++) { pixels->setPixelColor(b[k], pixels->Color(102,0,102));} for(i=0;i<64;i++) { pixels->setPixelColor(g[i], pixels->Color(255,0,0));} pixels->setPixelColor(x, pixels->Color(0,255,0)); delay(100); pixels->setPixelColor(0,pixels->Color(198,198,198)); if(rightstate == LOW){ pixels->setPixelColor(x,(0,0,0)); if((x+1)%8 == 0){ x = x-7;} else{ x =x+1 ;} lcd.clear(); lcd.print("right "); lcd.setCursor(0, 0); } if(leftstate == LOW){ lcd.clear(); lcd.setCursor(0, 0); lcd.print("left "); pixels->setPixelColor(x,(0,0,0)); if((x)%8 == 0){ x = x +7;} else{ x = x-1; }} if(downstate == LOW){ lcd.clear(); lcd.setCursor(0, 0); lcd.print("down "); pixels->setPixelColor(x,(0,0,0)); x = (x+8)%64; } if(upstate == LOW){ lcd.clear(); lcd.setCursor(0, 0); lcd.print("up "); pixels->setPixelColor(x,(0,0,0)); if ((x%64)>7){ x = (x-8)%64;} else{ x = (56+x)%64; }} if(enterstate == LOW){ lcd.clear(); lcd.setCursor(0, 0); lcd.print("Hello, "); // to test enter button lcd.setCursor(0,1); lcd.print("pls wait"); if (o%2 == 0){ g[j] = x; j = j+1; o = o+1;} else if(o%2 == 1){ b[l] = x; l = l+1; o = o+1;} if((x+1) % 8 == 0){ y[m]=x-1; y[m+1] = x+7; y[m+2] = x+8; y[m+4] = x-9; y[m+3] = x-8; m = m+5;} else if ((x)%8 == 0){ y[m+1] = x+1; y[m+2] = x+8; y[m] = x+9; y[m+4] = x-7; y[m+3] = x-8; m = m+5;} else{ y[m]=x-1; y[m+1] = x+1; y[m+2] = x+8; y[m+3] = x-8; y[m+4] = x+7; y[m+5] = x+9; y[m+6] = x-7; y[m+7] = x-9; m = m+8;}} pixels->show();} ``` ## Miscellaneous Day 3: ![](https://i.imgur.com/21TXPRa.png =220x) ![](https://i.imgur.com/KIIaUG3.jpg =220x) ![](https://i.imgur.com/m5JymXi.jpg =220x) <b>Soldering pins onto (i) neopixel board (ii) arduino mini board (iii) blank PCB </b> Day 4: ![](https://i.imgur.com/7hbl5Qc.jpg =220x) ![](https://i.imgur.com/2pYnZuZ.jpg =220x) ![](https://i.imgur.com/tyipoEk.jpg =220x) <b>Connected console and LCD screen with LED neopixel game screen powered by 3.7 V battery </b> ![](https://i.imgur.com/54Xu4wC.jpg =220x) ![](https://i.imgur.com/PwbOWkc.jpg =220x) ![](https://i.imgur.com/0rSF2yy.jpg =220x) <b>Finished product </b> ## Tinkercad simulations https://www.tinkercad.com/things/eZSJMhNGmBO-glorious-fyyran/editel?sharecode=HZk7kbc2HIlq3DclFjFyLp7BOrr01vIiQBhLVCmt97A ## Challenges * Hardware - We soldered many wires onto boards but nonetheless the possibility of weak connections could not be avoided. We had to add potentiometer to make sure there was no voltage issue. * Software - Debugging an algorithm takes time! * Design - All the boards, wires and screens made it very bulky and it ws difficult to fit it into one compact box. We later decided to just fit LCD, LED screens and switch board onto a facade leaving wires, battery, etc externally kept in a rectangular box. This will allow people to see the connections. ## Warning: * Codes may contain bugs, please make sure you understand the logic. We will be looking into it and updating the code in future. * The product might face hardware issue. Please make sure voltage potential and current through the circuit is maintained. ## Future Add-ons * Snake Game https://create.arduino.cc/projecthub/vasiljevalentin/snake-led-16x16-matrix-game-27ba6d * Othello game https://create.arduino.cc/projecthub/krishnalalith/othello-7301fb * Battleship game * Analog joystick + bluetooth console * Voice-assisted bluetooth console ## Team * Robin KP * Darsan TI * Nishanga P * Adish Illikkal ![](https://i.imgur.com/2jMFVwE.jpg =500x)

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully