Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions 3d.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ M302 P1|Allow cold extrusion|
M302 P0|Disable cold extrusion|
M92|return steps per mm|
M92 E100|To change Extrusion steps per mm|
M500|Save chanages to EEPROM|
M500|Save changes to EEPROM|
M501| Read parameters from EEPROM|
M503| Report Current Settings|
M302 P1|Allow cold extrusion|
Expand All @@ -102,7 +102,7 @@ M119|get end stop trigger status|
M428|reset home|
G0 X0 Y0 Z0|go to position 0,0,0|
M114|get current position|
G28|Auto Homing moves untill triggered|
G28|Auto Homing moves until triggered|
M211|Print and enable disable software endstop S0 disable / S1 enable|
M211 S0|Disable software endstop|
M211 S1|Enable software endstop|
Expand All @@ -123,10 +123,10 @@ G91|Set all axis to relative positioning|
### Return Steps per mm

### Printrun
Printrun is an applicaiton to send gcode to the marlin firmware. The Printrun applicaiton can be used from windows/windows environment.
Printrun is an application to send gcode to the marlin firmware. The Printrun application can be used from windows/windows environment.

```bash
# use the below commands to setup the working Printrun appicaiton in ubuntu PC.
# use the below commands to setup the working Printrun application in ubuntu PC.
sudo apt-get install python3-venv
python3 -m venv venv
. venv/bin/activate
Expand Down Expand Up @@ -216,7 +216,7 @@ sudo adduser $USER dialout
sudo chmod a+rw /dev/ttyACM0
```
- - -
### Marlin Auduino compile issue
### Marlin Arduino compile issue
* https://github.com/MarlinFirmware/Marlin/issues/20547
### config
Reset home
Expand Down Expand Up @@ -314,7 +314,7 @@ Sets the current position (wherever it is) to (50,50).
```
---
### Gcode generator
Gcode can be generated for both 3d and 2d desings.
Gcode can be generated for both 3d and 2d designs.
#### Tools - 3d to gcode
1. Slicer
2. https://text2stl.mestres.fr/en-us/generator
Expand Down Expand Up @@ -374,7 +374,7 @@ M106 S0 Off

```
### Slic3r Slicer
Slicer has 3 config files for stoing hte setting
Slicer has 3 config files for storing the setting

### Automatic FAN control
```
Expand Down
6 changes: 3 additions & 3 deletions arduino.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ A passive circuit:
### Ref
1. https://www.youtube.com/watch?v=FhmLb2DhNYM&t=579s

## Documentation for Arduino hardwae and software components.
## Documentation for Arduino hardware and software components.
## Insert Date time during startup
```c
const char compile_date[] = __DATE__ " " __TIME__;
Expand All @@ -26,13 +26,13 @@ const char compile_date[] = "Sep 22 2013 01:19:49";

---
## Tonuino
> This section has the documentaiton for tonuino development kit.
> This section has the documentation for tonuino development kit.
> It is important to add the 1k ohm resistor to the Rx line to remove the noise in the speaker

* https://github.com/xfjx/TonUINO

### DF Player
use the below name to search for DFMiniMp3 in arduion library search
use the below name to search for DFMiniMp3 in arduino library search
```
DFPlayer Mini Mp3 by Makuna
```
Expand Down
2 changes: 1 addition & 1 deletion javaFramework.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Singleton Jersey
Problem : Keep the state of the object between multiple requests
Solution : Simpy adding singletone annotation solved the problem
Solution : Simply adding singleton annotation solved the problem
```java
@Path("/hello")
@Singleton
Expand Down
2 changes: 1 addition & 1 deletion linuxBasics.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

* `journald` has replaced syslog.
* `dmesg` to read kernel ring buffer
* `syslog` mechanism for general system logs used by applicaitons
* `syslog` mechanism for general system logs used by applications

### Redirecting Startup Script Logs to Syslog

Expand Down