Wednesday, March 26, 2025

ขายชอฟแวร์ระบบปฎิบัติการรุ่นใหม่ ที่สามารถใช้กับเครื่องรุ่นเก่า ปี 2012

 ราคาขายระบบปฎิบัติการ อยู่ที่ 5,000 บาท (Sell 5,000 BTH)

Lexne OS 10 Xfce4 (วันที่พัฒนาฯ 25/03/2025)

ดูวีดีโอระบบการทำงานระบบปฏิบัติการ

specs

Linux Mint 22.1 xia (noble)

Kernel 6.13.5 ,6.1.1

Xfce4.20.1


requirement

Intel pentium 4 (4Core)

Ram 4Gb

Grphices 16Mb (Intel)

Harddisk 160Gb free space


Server nosplash on tty0 console




Accessories

Development

Education

Games

Graphics

Internet

Multimedia

Office

Science

wine

System

Setting



แผนหลังการขาย พัฒนาฯและแก้ปัญหาฯ ชัพพอร์ตเรื่อยๆ ของระบบปฎิบัติการ

จนกว่าจะมีการวางขายผลิตภัณฑ์ใหม่ ที่ไม่ซัพพอร์ตแล้ว


สามารถติดต่อทางไลน์ไอดี lexne ไม่มี (@)

โทรศัพย์ 099-769-5862 (เมธาวรินทร์)

E-mail: matrawarin@gmail.com

E-mail: songkeart@gmail.com


ที่อยู่ สาวะถี อำเภอเมือง จังหวัดขอนแก่น 40000 (ประเทศไทย)


บัญชีการโอนเงิน

นาย เมธาวรินทร์ กองเมิ้ง

กสิกรไทย

200-1-19693-9


ติดตั้งนอกสถานที่ คิดราคาเพิ่ม 10,000 บาท ไม่รวม ค่าเดินทาง และค่าที่พัก


การพัฒนาฯ kernel ใช้เวลา compiler 4-8 ช.ม.

การพัฒนา xfce4 กับชอฟแวร์อื่นๆ ใช้เวลา 2-3 อาทิตย์

การพัฒนาฯ โดยการทำ filesystem และ iso ใช้เวลา 4-6 ช.ม. โดยประมาณ 

ค่าไฟฟ้าในการพัฒนาฯตกอยู่ที่ 1,056 บาท ไม่รวมค่าเน็ต ค่าแรงงานพัฒนาฯระบบ


Tuesday, November 26, 2024

NodeMCU ESP8266 CH340 CH34G CH341 CH34x CP210x

Arduino 

NodeMCU ESP8266 driver Linux

 CH340 CH34G CH341 CH34x CP210x







Examples Code:

---------------------------------------------------------------------------------------------------------------------------

/*

    This sketch demonstrates how to set up a simple HTTP-like server.

    The server will set a GPIO pin depending on the request

      http://server_ip/gpio/0 will set the GPIO2 low,

      http://server_ip/gpio/1 will set the GPIO2 high

    server_ip is the IP address of the ESP8266 module, will be

    printed to Serial when the module is connected.

*/


#include <ESP8266WiFi.h>


#ifndef STASSID

#define STASSID "ais home 2.4Gz"

#define STAPSK "11111111"

#endif


const char* ssid = STASSID;

const char* password = STAPSK;


// Create an instance of the server

// specify the port to listen on as an argument

WiFiServer server(80);


void setup() {

  Serial.begin(115200);


  // prepare LED

  pinMode(LED_BUILTIN, OUTPUT);

  digitalWrite(LED_BUILTIN, 0);


  // Connect to WiFi network

  Serial.println();

  Serial.println();

  Serial.print(F("Connecting to "));

  Serial.println(ssid);


  WiFi.mode(WIFI_STA);

  WiFi.begin(ssid, password);


  while (WiFi.status() != WL_CONNECTED) {

    delay(500);

    Serial.print(F("."));

  }

  Serial.println();

  Serial.println(F("WiFi (1) connected"));


  // Start the server

  server.begin();

  Serial.println(F("Server started"));


  // Print the IP address

  Serial.println(WiFi.localIP());

}


void loop() {

  // Check if a client has connected

  WiFiClient client = server.accept();

  if (!client) { return; }

  Serial.println(F("new client"));


  client.setTimeout(5000);  // default is 1000


  // Read the first line of the request

  String req = client.readStringUntil('\r');

  Serial.println(F("request: "));

  Serial.println(req);


  // Match the request

  int val;

  if (req.indexOf(F("/gpio/0")) != -1) {

    val = 0;

  } else if (req.indexOf(F("/gpio/1")) != -1) {

    val = 1;

  } else {

    Serial.println(F("invalid request"));

    val = digitalRead(LED_BUILTIN);

  }


  // Set LED according to the request

  digitalWrite(LED_BUILTIN, val);


  // read/ignore the rest of the request

  // do not client.flush(): it is for output only, see below

  while (client.available()) {

    // byte by byte is not very efficient

    client.read();

  }


  // Send the response to the client

  // it is OK for multiple small client.print/write,

  // because nagle algorithm will group them into one single packet

  client.print(F("HTTP/1.1 200 OK\r\nContent-Type: text/html\r\n\r\n<!DOCTYPE HTML>\r\n<html>\r\nGPIO is now "));

  client.print((val) ? F("high") : F("low"));

  client.print(F("<br><br>Click <a href='http://"));

  client.print(WiFi.localIP());

  client.print(F("/gpio/1'>here</a> to switch LED GPIO on, or <a href='http://"));

  client.print(WiFi.localIP());

  client.print(F("/gpio/0'>here</a> to switch LED GPIO off.</html>"));


  // The client will actually be *flushed* then disconnected

  // when the function returns and 'client' object is destroyed (out-of-scope)

  // flush = ensure written data are received by the other side

  Serial.println(F("Disconnecting from client"));

}


---------------------------------------------------------------------------------------------------------------------------

[Download]

Sunday, April 30, 2023

Detecting Microphone v1.3 Linux

  Microphone+ 

  • MGC Algorithm
  • ระบบ callback thread stream ระหว่างการทำงานลดสภาวะการทำงานของ processer
  • ระบบตรวจจับเสียง
  • รองรับระบบการทำงานแบบเปอร์เช็น
Minimum spec 
  • CPU intel i3-i5
  • Ram 4 GB
  • Linux Kernel Version 6.1.1  ,Linux Mint 19.2 ,Casenium 1.0

Utility 
  • ระบบแก้ไข้ของตัวทำงานโครงสร้าง
  • ตัวสร้าง services บนระบบปฎิบัติการ Linux
  • ระบบแก้ไข้การทำงานเชิงโครงสร้าง Runtime Library




Compiler
  • gcc 7-10

Friday, February 17, 2023

IServer (HTTP, HTTPS) v25 Patch 4/11/2021 Beta Open Source Code

 

IServer (HTTP, HTTPS)  All v25 Patch 4/11/2021 Beta Open Source Code Release Debug (BUGS PHP5)

  • รองรับระบบปฎิบัติการ NT4.0 (ReactOS)
  • CPU 2.6 GHz *(I386, x86_64)
  • Ram 512 Mb

    
  • Webserver default port (80,443) 
  • supports webbrowser (firefox ie opera safari chrome)
  • Digital signature (localsign) 
  • compiler (mingw32) 
  • openssl ssl v3.0

เพิ่มการพัฒนาฯ ใช้ algorithm MGC 1.5 Kraw 1.3
  
  • แก้ระบบ module request (#1054)
  • แก้ระบบ เพิ่ม PHP5 Module (HTTP) $_SERVER 
  • แก้ระบบ เพิ่ม MD5 libc0 
  • แก้ระบบ configures ระบบใหม่ (#6487)
  • แก้ระบบ buffer allocate memory (#1147) 
  • แก้ระบบ path server    (#2011)   
  • แก้ระบบ interface module (#5142)
  • แก้ระบบ externsions  (#2297)
  • แก้ระบบ โครงสร้าง algorithm MGC upgrade (#6875)
  • แก้ระบบ Directory Server (#4875)
  • แก้ระบบ Research file ,index, lastname
  • แก้ระบบ bugs memory ระหว่างการ Run
  • แก้ระบบ macro เวลาค้นหา 
  • แก้ระบบ ให้สามารถทำงานได้นานขึ้น
  • แก้ระบบ stack memory 
  • แก้ระบบ ทำงานแบบ multiple core
  • แก้ระบบ struct memory ของ List Directory
  • แก้ระบบ bugs segment pointers
  • แก้ระบบ การทำงาน packet ascii 
  • แก้ระบบ header reports
  • แก้ระบบ client request to header server
  • แก้ระบบ method server
  • แก้ระบบ kraw algorithm
  • แก้ระบบ library 
  • แก้ระบบ ส่งค่าไปยัง client
  • แก้ระบบ server status  
                                                                               Win32 [Downloads

Wednesday, January 18, 2023

lsb1400 Module Device Project Linux

ตัวทดลองทำระบบควบคุม device ในระบบปฎิบัติการ Linux Version 1.5

function module device

 - open ตัวทำการควบคุมการเปิดไฟร์ device 

- close ตัวทำการควบคุมการปิดไฟร์ device

- read ตัวทำการควบคุมการอ่านไฟร์ device

-write ตัวทำการควบคุมการเขียนไฟร์ device

- ioctl ตัวทำการควบคุมการทำงานไฟร์ device

- lseek ตัวทำการควบคุมการจัดตัวแหน่งไฟร์ device

execute program control device

- test ตัวทำสอบการทำงานของ device

service run startup

- service ตัวโปรแกรมทำงานเพื่อเปิดระบบการทำงานของ module ขณะเปิดเครื่อง

ระบบรองรับการทำงานใน kernel 5.12 ขึ้นมา พัฒนาฯในระบบปฎิบัติการ linux kernel 6.1.1

คำสั่งในการแสดงผลการทำงานของ kernel module : dmesg -l alert



[Download]

Tuesday, June 14, 2022

Detecting Microphone v1.2

 Microphone+ 

  • MGC Algorithm
  • ระบบ callback thread stream ระหว่างการทำงานลดสภาวะการทำงานของ processer
  • ระบบตรวจจับเสียง
  • รองรับระบบการทำงานแบบเปอร์เช็น
Minimum spec 
  • CPU intel i3-i5
  • Ram 4 GB
  • Windows 10 Pro

Utility 
  • ระบบแก้ไข้ของตัวทำงานโครงสร้าง
  • ตัวสร้าง services บนระบบปฎิบัติการ NT
  • ระบบแก้ไข้การทำงานเชิงโครงสร้าง Runtime Library

Compiler



Contact Form

Name

Email *

Message *