readme_EN.txt 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*****************************************************************************
  2. * | File : Readme_EN.txt
  3. * | Author : Waveshare team
  4. * | Function : Help with use
  5. * | Info :
  6. *----------------
  7. * | This version: V1.0
  8. * | Date : 2020-08-28
  9. * | Info : Here is an English version of the documentation for your quick use.
  10. ******************************************************************************/
  11. This file is to help you use this routine.
  12. Since our OLED screens are getting more and more, it is not convenient for our maintenance, so all the OLED screen programs are made into one project.
  13. A brief description of the use of this project is here:
  14. 1. Basic information:
  15. This routine is based on the Jetson Nano development
  16. You can view the corresponding test routines in the examples\ of the project;
  17. 2. Pin connection:
  18. Pin connections can be viewed in \lib\waveshare_OLED\config.py and will be repeated here:
  19. SPI:
  20. OLED => Jetson Nano
  21. VCC -> 3.3
  22. GND -> GND
  23. DIN -> 10(MOSI)
  24. CLK -> 11(SCLK)
  25. CS -> 8
  26. DC -> 25
  27. RST -> 27
  28. IIC:
  29. OLED => Jetson Nano
  30. VCC -> 3.3
  31. GND -> GND
  32. DIN -> 2(SDA)
  33. CLK -> 3(SCL)
  34. CS -> 8
  35. DC -> 25
  36. RST -> 27
  37. 3. Basic use:
  38. Since this project is a comprehensive project, you may need to read the following for use:
  39. You can view the test program in the examples\ directory.
  40. Please note which OLED you purchased.
  41. eg 1:
  42. if you bought 1.3inch OLED Module (C),you should type:
  43. sudo python OLED_1in3_c_test.py
  44. or
  45. sudo python3 OLED_1in3_c_test.py
  46. eg 2:
  47. if you bought 1.5inch RGB OLED Module,you should type:
  48. sudo python OLED_1in5_rgb_test.py
  49. or
  50. sudo python3 OLED_1in5_rgb_test.py
  51.