24 февраля 2022 года в 5 утра, без объявления войны, россия напала на Украину.

Они пришли "освобождать народ от нацистов и националистов".
С этого момента наша жизнь изменилась на "до" и "после".
Нас освобождают от наших домов, от наших любимых, от наших родителей и от наших детей....
Тут я не буду никого агитировать или переубеждать, разумный человек найдёт всю информацию
в интернете, а для зомби никакие доводы и факты не послужат аргументом.

Я не умею много писать, да и без мата тут сложно что-то написать.
Поэтому выражу все мои чувства одним фото.

«Спасибо дедушка путин за счастливое детство и мое освобождение». ©

Дополню словами уважаемого человека, широко известного в узких кругах:
тут путин не виноват, не он нажал на кнопку сброса,
- виноват пилот, который нажал на кнопку сброса, мог промахнуться. виноваты жена/мать/брат/друг пилота, которые не позвонили ему, и не сказали "нет войне",
- виноват тот, кто отдал приказ, и виноваты его жена/мать/брат/друг,
- виноват тот, кто цеплял бомбу, потому что он мог её обезвредить, "ну бывает, не сработала",
- виноват кладовщик, виноват водитель, который перевозил эту бомбу. виноваты жена...и т.д., потому что не позвонили и не сказали "нет войне, не вези бомбы",
- виноваты все журналисты оркостана, потому что они врут,
- виноваты недограждане, потому что не сказали журналистам "не врите",
- виноваты все... все 160 миллионов,
- а те 2, 3, 5 тысяч, которые вышли, и которых запаковали, это даже не десятая процента, это погрешность... случайно оказавшиеся в мордоре люди. ©

PS: За несколько часов до вторжения был атакован и взломан крупный интернет хостинг в Киеве, где и размещался мой сайт. Только 16 марта отважным админам удалось частично восстановить работу хостинга. Далеко не все сайты выжили, т.к. были повреждены даже бэкапы.
Нет, нет, я не жалуюсь, нет. В цифровом мире нет ничего ценного, материального...


Due to periodic DDoS attacks, the forum may not be available.

MKS TFT35 V1.0 на RaspberryPi

Раздел посвящённый 3D печати и всему связанному с ней.
Matic_LMS
Пробегал мимо
Posts: 6
Joined: 04 Jan 2023 04:04

MKS TFT35 V1.0 на RaspberryPi

Post by Matic_LMS »

Hi there! Great project, the concept is great and very useful. But I have an issue. I can get Klipperscreen to show up on the screen but as soon as I do that I lose the connection between Moonraker and Klipper. Now did anybody else experience this issue? I have attached then code that I executed last before experiencing the issue. Basically after the reboot, the boot code of the PI can be seen on the MKS screen and then the Klipper screen shows but it keeps saying it connects to the printer and the web interface shows it can't connect to Klipper. It's not MCU problems or anything else. Can someone with a bit more Linux knowledge explain to me what I am doing wrong or how to fix this? Thank you a lot.

This is the last code I execute....copying the output of the primary framebuffer to the secondary one...

Code: Select all

sudo apt-get install cmake
cd ~
sudo git clone https://github.com/tasanakorn/rpi-fbcp
cd rpi-fbcp/
sudo mkdir build
cd build
sudo cmake ..
sudo make
sudo install fbcp /usr/local/bin/fbcp

Code: Select all

sudo nano /etc/systemd/system/fbcp.service

Code: Select all

[Unit]
Description=fbcp
After=KlipperScreen.service
StartLimitIntervalSec=0
[Service]
Type=simple
Restart=always
RestartSec=1
User=root
ExecStart=/usr/local/bin/fbcp

[Install]
WantedBy=multi-user.target
User avatar
hardlock
Администратор
Posts: 4015
Joined: 21 Jan 2009 14:48
Location: Minsk - zp.ua
Contact:

MKS TFT35 V1.0 на RaspberryPi

Post by hardlock »

Matic_LMS wrote: 23 Oct 2023 01:51 This is the last code I execute....copying the output of the primary framebuffer to the secondary one...
I looked, this code has nothing to do with the operation of the klipper or moonraker. If I have time, I'll try to do a clean install with updated packages soon. Maybe something will become clearer.
Matic_LMS
Пробегал мимо
Posts: 6
Joined: 04 Jan 2023 04:04

MKS TFT35 V1.0 на RaspberryPi

Post by Matic_LMS »

hardlock wrote: 23 Oct 2023 10:16
Matic_LMS wrote: 23 Oct 2023 01:51 This is the last code I execute....copying the output of the primary framebuffer to the secondary one...
I looked, this code has nothing to do with the operation of the klipper or moonraker. If I have time, I'll try to do a clean install with updated packages soon. Maybe something will become clearer.
Thanks so much! I have been scratching my head with this problem for months now...I just bought a new screen from BTT the TFT35 SPI but as it turns out it does not work with RPI... So I want to return it. I really have no idea why this is happening. I realize that the code by itself has nothing to do with Moonraker but every time I have clean-installed Raspbian and tried to install Klipperscreen this happens...moonraker loses connection with Klipper. There is also this starting job in the code when the PI boots or i shut it down with a CLI command, that takes forever...and it counts like 10min and the job is still being executed. I really want to use the OG MKS screen...
User avatar
hardlock
Администратор
Posts: 4015
Joined: 21 Jan 2009 14:48
Location: Minsk - zp.ua
Contact:

MKS TFT35 V1.0 на RaspberryPi

Post by hardlock »

Today I tried to install everything from scratch on a new flash drive.
I followed the instructions exactly from the first page.
- Raspberry Pi imager v1.8.3
- Raspberri Pi OS (Legacy) Lite (2023-05-03)
- Linux raspberry3b 6.1.21-v7+ #1642 SMP Mon Apr 3 17:20:52 BST 2023 armv7l
as result - everything works without problems.:
klipperscreen_tft35.jpg
Matic_LMS
Пробегал мимо
Posts: 6
Joined: 04 Jan 2023 04:04

MKS TFT35 V1.0 на RaspberryPi

Post by Matic_LMS »

hardlock wrote: 30 Oct 2023 15:09 Today I tried to install everything from scratch on a new flash drive.
I followed the instructions exactly from the first page.
- Raspberry Pi imager v1.8.3
- Raspberri Pi OS (Legacy) Lite (2023-05-03)
- Linux raspberry3b 6.1.21-v7+ #1642 SMP Mon Apr 3 17:20:52 BST 2023 armv7l
as result - everything works without problems.:
klipperscreen_tft35.jpg
Is there a posibility that you create an image of that SD card and uploade it to MEGA or something? I realy have no idea where the problem is...
Attachments
IMG_20231102_133215 (1).jpg
Post Reply